-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhash_func_int.h
57 lines (39 loc) · 1.26 KB
/
hash_func_int.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef __hash_func_int_H_
#define __hash_func_int_H_
#include "upc_types.h"
#include "upc_static_assert.h"
/* 2^31 + 2^29 - 2^25 + 2^22 - 2^19 - 2^16 + 1 */
#define GOLDEN_RATIO_PRIME_32 0x9e370001UL
/* 2^63 + 2^61 - 2^57 + 2^54 - 2^51 - 2^18 + 1 */
#define GOLDEN_RATIO_PRIME_64 0x9e37fffffffc0001UL
static inline uint64 hash_64(uint64 val, unsigned int bits)
{
uint64 hash = val;
/* Sigh, gcc can't optimise this alone like it does for 32 bits. */
uint64 n = hash;
n <<= 18;
hash -= n;
n <<= 33;
hash -= n;
n <<= 3;
hash += n;
n <<= 3;
hash -= n;
n <<= 4;
hash += n;
n <<= 2;
hash += n;
/* High bits are more random, so use them. */
return hash >> (64 - bits);
}
static inline uint32 hash_32(uint32 val, unsigned int bits)
{
/* On some cpus multiply is faster, on others gcc will do shifts */
uint32 hash = val * GOLDEN_RATIO_PRIME_32;
/* High bits are more random, so use them. */
return hash >> (32 - bits);
}
#define hash_long(val, bits) ((sizeof(long) == 8)?hash_64(val, bits):hash_32(val, bits))
#define hash_ptr(ptr, bits) hash_long((unsigned long)ptr, bits)
STATIC_ASSERT((sizeof(long) == sizeof(void*)), "字符串长度必须等于 long 类型的长度");
#endif//__hash_func_int_H_