Lines Matching refs:FullHashValue
87 uint32_t FullHashValue) { in LookupBucketFor() argument
89 assert(FullHashValue == hash(Name)); in LookupBucketFor()
95 FullHashValue = ~FullHashValue; in LookupBucketFor()
96 unsigned BucketNo = FullHashValue & (NumBuckets - 1); in LookupBucketFor()
108 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()
112 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()
120 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()
147 int StringMapImpl::FindKey(StringRef Key, uint32_t FullHashValue) const { in FindKey()
151 assert(FullHashValue == hash(Key)); in FindKey()
154 FullHashValue = ~FullHashValue; in FindKey()
155 unsigned BucketNo = FullHashValue & (NumBuckets - 1); in FindKey()
167 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()