nfs-ganesha 1.4
|
00001 //----------------------------------------------------------------------------- 00002 // MurmurHash3 was written by Austin Appleby, and is placed in the 00003 // public domain. The author hereby disclaims copyright to this source 00004 // code. 00005 00006 #ifndef _MURMURHASH3_H_ 00007 #define _MURMURHASH3_H_ 00008 00009 #include <stdint.h> 00010 00011 //----------------------------------------------------------------------------- 00012 00013 void MurmurHash3_x86_32 (const void *key, int len, uint32_t seed, void *out); 00014 00015 void MurmurHash3_x86_128(const void *key, int len, uint32_t seed, void *out); 00016 00017 void MurmurHash3_x64_128(const void *key, int len, uint32_t seed, void *out); 00018 00019 //----------------------------------------------------------------------------- 00020 00021 #endif // _MURMURHASH3_H_