2018-08-02 09:21:26 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
2021-06-17 07:58:42 +00:00
|
|
|
// MurmurHash2 was written by Austin Appleby, and is placed in the public
|
2018-08-02 09:21:26 +00:00
|
|
|
// domain. The author hereby disclaims copyright to this source code.
|
|
|
|
|
2021-06-22 11:13:19 +00:00
|
|
|
#ifndef MURMURHASH2_H
|
|
|
|
#define MURMURHASH2_H
|
2018-08-02 09:21:26 +00:00
|
|
|
|
2021-06-22 09:59:44 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2018-08-02 09:21:26 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Platform-specific functions and macros
|
|
|
|
|
|
|
|
// Microsoft Visual Studio
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) && (_MSC_VER < 1600)
|
|
|
|
|
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
typedef unsigned int uint32_t;
|
|
|
|
typedef unsigned __int64 uint64_t;
|
|
|
|
|
|
|
|
// Other compilers
|
|
|
|
|
|
|
|
#else // defined(_MSC_VER)
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#endif // !defined(_MSC_VER)
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2021-06-22 10:00:46 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-06-22 09:59:44 +00:00
|
|
|
uint32_t MurmurHash2 ( const void * key, size_t len, uint32_t seed );
|
|
|
|
uint64_t MurmurHash64A ( const void * key, size_t len, uint64_t seed );
|
|
|
|
uint64_t MurmurHash64B ( const void * key, size_t len, uint64_t seed );
|
|
|
|
uint32_t MurmurHash2A ( const void * key, size_t len, uint32_t seed );
|
|
|
|
uint32_t MurmurHashNeutral2 ( const void * key, size_t len, uint32_t seed );
|
|
|
|
uint32_t MurmurHashAligned2 ( const void * key, size_t len, uint32_t seed );
|
2021-06-22 11:13:19 +00:00
|
|
|
|
2021-06-22 10:00:46 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2018-08-02 09:21:26 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2020-01-23 09:22:00 +00:00
|
|
|
|
2021-06-17 07:58:42 +00:00
|
|
|
#endif // _MURMURHASH2_H_
|
|
|
|
|