Lines Matching defs:hash
20 * uint32_t -> uint32_t hash, useful for when you're about to trucate this hash but you
25 static uint32_t Mix(uint32_t hash) {
26 hash ^= hash >> 16;
27 hash *= 0x85ebca6b;
28 hash ^= hash >> 13;
29 hash *= 0xc2b2ae35;
30 hash ^= hash >> 16;
31 return hash;
35 * uint32_t -> uint32_t hash, useful for when you're about to trucate this hash but you
40 static uint32_t CheapMix(uint32_t hash) {
41 hash ^= hash >> 16;
42 hash *= 0x85ebca6b;
43 hash ^= hash >> 16;
44 return hash;