2019-08-09 14:04:19 -04:00
|
|
|
uintptr_t nextipow2(uintptr_t i);
|
2019-08-09 14:00:03 -04:00
|
|
|
uint32_t int32hash(uint32_t a);
|
|
|
|
uint64_t int64hash(uint64_t key);
|
|
|
|
uint32_t int64to32hash(uint64_t key);
|
2008-06-30 21:53:51 -04:00
|
|
|
#ifdef BITS64
|
|
|
|
#define inthash int64hash
|
|
|
|
#else
|
|
|
|
#define inthash int32hash
|
|
|
|
#endif
|
2019-08-09 14:00:03 -04:00
|
|
|
uint64_t memhash(const char *buf, size_t n);
|
|
|
|
uint32_t memhash32(const char *buf, size_t n);
|