Searched refs:FullHashValue (Results 1 – 5 of 5) sorted by relevance
61 unsigned FullHashValue = HashString(Name); in LookupBucketFor() local62 unsigned BucketNo = FullHashValue & (HTSize-1); in LookupBucketFor()74 TheTable[FirstTombstone].FullHashValue = FullHashValue; in LookupBucketFor()78 Bucket.FullHashValue = FullHashValue; in LookupBucketFor()85 } else if (Bucket.FullHashValue == FullHashValue) { in LookupBucketFor()116 unsigned FullHashValue = HashString(Key); in FindKey() local117 unsigned BucketNo = FullHashValue & (HTSize-1); in FindKey()129 } else if (Bucket.FullHashValue == FullHashValue) { in FindKey()205 unsigned FullHash = IB->FullHashValue; in RehashTable()209 NewTableArray[FullHash & (NewSize-1)].FullHashValue = FullHash; in RehashTable()[all …]
78 unsigned FullHashValue = HashString(Name); in LookupBucketFor() local79 unsigned BucketNo = FullHashValue & (HTSize-1); in LookupBucketFor()91 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()95 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()102 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()133 unsigned FullHashValue = HashString(Key); in FindKey() local134 unsigned BucketNo = FullHashValue & (HTSize-1); in FindKey()146 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()
84 unsigned FullHashValue = djbHash(Name, 0); in LookupBucketFor() local85 unsigned BucketNo = FullHashValue & (HTSize-1); in LookupBucketFor()97 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()101 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()108 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()138 unsigned FullHashValue = djbHash(Key, 0); in FindKey() local139 unsigned BucketNo = FullHashValue & (HTSize-1); in FindKey()151 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()
79 unsigned FullHashValue = HashString(Name); in LookupBucketFor() local80 unsigned BucketNo = FullHashValue & (HTSize-1); in LookupBucketFor()92 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()96 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()103 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()133 unsigned FullHashValue = HashString(Key); in FindKey() local134 unsigned BucketNo = FullHashValue & (HTSize-1); in FindKey()146 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()
60 unsigned FullHashValue; member