2008-06-30 21:53:51 -04:00
|
|
|
#ifndef __HASHING_H_
|
|
|
|
#define __HASHING_H_
|
|
|
|
|
|
|
|
uint_t nextipow2(uint_t i);
|
|
|
|
u_int32_t int32hash(u_int32_t a);
|
|
|
|
u_int64_t int64hash(u_int64_t key);
|
|
|
|
u_int32_t int64to32hash(u_int64_t key);
|
|
|
|
#ifdef BITS64
|
|
|
|
#define inthash int64hash
|
|
|
|
#else
|
|
|
|
#define inthash int32hash
|
|
|
|
#endif
|
|
|
|
u_int64_t memhash(char* buf, size_t n);
|
2008-11-23 02:12:37 -05:00
|
|
|
u_int32_t memhash32(char* buf, size_t n);
|
2008-06-30 21:53:51 -04:00
|
|
|
|
|
|
|
#endif
|