Home
last modified time | relevance | path

Searched refs:FullHashValue (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DStringMap.cpp87 unsigned FullHashValue = djbHash(Name, 0); in LookupBucketFor() local
88 unsigned BucketNo = FullHashValue & (NumBuckets - 1); in LookupBucketFor()
100 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()
104 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()
112 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()
142 unsigned FullHashValue = djbHash(Key, 0); in FindKey() local
143 unsigned BucketNo = FullHashValue & (NumBuckets - 1); in FindKey()
155 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()