5 #ifndef _MURMURHASH3_H_ 6 #define _MURMURHASH3_H_ 13 #if defined(_MSC_VER) && (_MSC_VER < 1600) 15 typedef unsigned char uint8_t;
16 typedef unsigned int uint32_t;
17 typedef unsigned __int64 uint64_t;
21 #else // defined(_MSC_VER) 25 #endif // !defined(_MSC_VER) 34 void MurmurHash3_x86_32 (
const void * key,
int len, uint32_t seed,
void * out );
36 void MurmurHash3_x86_128 (
const void * key,
int len, uint32_t seed,
void * out );
38 void MurmurHash3_x64_128 (
const void * key,
int len, uint32_t seed,
void * out );
47 #endif // _MURMURHASH3_H_ Namespace Tpetra contains the class and methods constituting the Tpetra library.
Implementation details of Tpetra.