Defines | |
| #define | elfHash(data, len) |
| #define | HASHMAP_CPP |
|
|
Value: {\
unsigned int h = 0;\
unsigned int x = 0;\
for(int i = 0; i < len; i++)\
{\
h = (h << 4) + data[i];\
x = h & 0xF0000000L;\
if(x)\
{\
h ^= (x >> 24);\
h &= ~x;\
}\
}\
return (h & 0x7FFFFFFF);\
}
|
|
|
|
1.3.9.1