X-Git-Url: https://pd.if.org/git/?p=nbds;a=blobdiff_plain;f=include%2Fmurmur.h;h=6bc3694d7a3d31e0dab4b6c0ce56465c37d9ac63;hp=1d79652a53a4d4d3e09ce21fc877038cfb8f53c9;hb=f3eb4799a11ceaeb47ab02034595b5d641c2f1c9;hpb=329b5ab58cde015f4faec1879d3106f635294dd6 diff --git a/include/murmur.h b/include/murmur.h index 1d79652..6bc3694 100644 --- a/include/murmur.h +++ b/include/murmur.h @@ -12,16 +12,16 @@ // 2. It will not produce the same results on little-endian and big-endian // machines. -static inline unsigned int murmur32 (const char *key, int len) +static inline uint32_t murmur32 (const char *key, int len) { // 'm' and 'r' are mixing constants generated offline. // They're not really 'magic', they just happen to work well. - const unsigned int m = 0x5bd1e995; + const uint32_t m = 0x5bd1e995; const int r = 24; // Initialize the hash to a 'random' value - unsigned int h = len; + uint32_t h = len; // Mix 4 bytes at a time into the hash @@ -62,22 +62,21 @@ static inline unsigned int murmur32 (const char *key, int len) return h; } -static inline unsigned int murmur32_8b (uint64_t key) +static inline uint32_t murmur32_8b (uint64_t key) { // 'm' and 'r' are mixing constants generated offline. // They're not really 'magic', they just happen to work well. - const unsigned int m = 0x5bd1e995; + const uint32_t m = 0x5bd1e995; const int r = 24; // Initialize the hash to a 'random' value - unsigned int h = 8; + uint32_t h = 8; - const unsigned char *data = (const unsigned char *)key; + const unsigned char *data = (const unsigned char *)&key; - uint32_t k1 = *(uint32_t *)&data; - data += 4; - uint32_t k2 = *(uint32_t *)&data; + uint32_t k1 = *(uint32_t *)data; + uint32_t k2 = *(uint32_t *)(data + 4); k1 *= m; k1 ^= k1 >> r; @@ -103,3 +102,35 @@ static inline unsigned int murmur32_8b (uint64_t key) return h; } + +static inline uint32_t murmur32_4b (uint32_t key) +{ + // 'm' and 'r' are mixing constants generated offline. + // They're not really 'magic', they just happen to work well. + + const uint32_t m = 0x5bd1e995; + const int r = 24; + + // Initialize the hash to a 'random' value + uint32_t h = 4; + + uint32_t k = *(uint32_t *)&key; + + k *= m; + k ^= k >> r; + k *= m; + + // Mix 4 bytes at a time into the hash + + h *= m; + h ^= k; + + // Do a few final mixes of the hash to ensure the last few + // bytes are well-incorporated. + + h ^= h >> 13; + h *= m; + h ^= h >> 15; + + return h; +}