Lines Matching full:hash
46 T* removeAt(int index, uint32_t hash);
69 static unsigned hash2Index(uint32_t hash) {
70 hash ^= hash >> 16;
72 hash ^= hash >> 8;
74 return hash & kHashMask;
154 // update the hash
173 // update our hash table (overwrites any dupe's position in the hash)
199 T* GrTHashTable<T, Key, kHashBits>::removeAt(int elemIndex, uint32_t hash) {
200 int hashIndex = hash2Index(hash);