Lines Matching full:hash
68 size_t index = Hash(native_pc_offset) % num_entries;78 static uint32_t Hash(uint32_t native_offset) {79 uint32_t hash = native_offset;80 hash ^= (hash >> 20) ^ (hash >> 12);81 hash ^= (hash >> 7) ^ (hash >> 4);82 return hash;