Derive-C
|
Go to the source code of this file.
Functions | |
FORCE_INLINE uint32_t | derive_c_rotl32 (uint32_t x, int8_t r) |
MurmurHash3 implementation, copied (with love) from Austin Appleby's implementation | |
FORCE_INLINE uint64_t | derive_c_rotl64 (uint64_t x, int8_t r) |
FORCE_INLINE uint32_t | derive_c_getblock32 (const uint32_t *p, int i) |
FORCE_INLINE uint64_t | derive_c_getblock64 (const uint64_t *p, int i) |
FORCE_INLINE uint32_t | derive_c_fmix32 (uint32_t h) |
FORCE_INLINE uint64_t | derive_c_fmix64 (uint64_t k) |
void | derive_c_MurmurHash3_x86_32 (const void *key, int len, uint32_t seed, void *out) |
void | derive_c_MurmurHash3_x86_128 (const void *key, const int len, uint32_t seed, void *out) |
void | derive_c_MurmurHash3_x64_128 (const void *key, const int len, const uint32_t seed, void *out) |
size_t | derive_c_murmurhash (const void *key, int len, uint32_t seed) |
FORCE_INLINE uint32_t derive_c_fmix32 | ( | uint32_t | h | ) |
Definition at line 15 of file murmurhash.h.
FORCE_INLINE uint64_t derive_c_fmix64 | ( | uint64_t | k | ) |
Definition at line 25 of file murmurhash.h.
FORCE_INLINE uint32_t derive_c_getblock32 | ( | const uint32_t * | p, |
int | i ) |
Definition at line 11 of file murmurhash.h.
FORCE_INLINE uint64_t derive_c_getblock64 | ( | const uint64_t * | p, |
int | i ) |
Definition at line 13 of file murmurhash.h.
size_t derive_c_murmurhash | ( | const void * | key, |
int | len, | ||
uint32_t | seed ) |
Definition at line 346 of file murmurhash.h.
void derive_c_MurmurHash3_x64_128 | ( | const void * | key, |
const int | len, | ||
const uint32_t | seed, | ||
void * | out ) |
Definition at line 242 of file murmurhash.h.
void derive_c_MurmurHash3_x86_128 | ( | const void * | key, |
const int | len, | ||
uint32_t | seed, | ||
void * | out ) |
Definition at line 88 of file murmurhash.h.
void derive_c_MurmurHash3_x86_32 | ( | const void * | key, |
int | len, | ||
uint32_t | seed, | ||
void * | out ) |
Definition at line 35 of file murmurhash.h.
FORCE_INLINE uint32_t derive_c_rotl32 | ( | uint32_t | x, |
int8_t | r ) |
MurmurHash3 implementation, copied (with love) from Austin Appleby's implementation
Definition at line 7 of file murmurhash.h.
FORCE_INLINE uint64_t derive_c_rotl64 | ( | uint64_t | x, |
int8_t | r ) |
Definition at line 9 of file murmurhash.h.