Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DStringMap.cpp80 unsigned FullHashValue = djbHash(Name, 0); in LookupBucketFor() local
81 unsigned BucketNo = FullHashValue & (HTSize - 1); in LookupBucketFor()
93 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()
97 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()
105 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()
136 unsigned FullHashValue = djbHash(Key, 0); in FindKey() local
137 unsigned BucketNo = FullHashValue & (HTSize - 1); in FindKey()
149 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()