You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
460 B
9 lines
460 B
from libc.stdint cimport uint64_t, int64_t, uint32_t
|
|
|
|
|
|
cdef uint32_t hash32(void* key, int length, uint32_t seed) noexcept nogil
|
|
cdef uint64_t hash64(void* key, int length, uint64_t seed) noexcept nogil
|
|
cdef uint64_t real_hash64(void* key, int length, uint64_t seed) noexcept nogil
|
|
cdef void hash128_x86(const void* key, int len, uint32_t seed, void* out) noexcept nogil
|
|
cdef void hash128_x64(const void* key, int len, uint32_t seed, void* out) noexcept nogil
|