Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DStringMap.cpp88 unsigned FullHashValue = xxh3_64bits(Name); in LookupBucketFor() local
90 FullHashValue = ~FullHashValue; in LookupBucketFor()
91 unsigned BucketNo = FullHashValue & (NumBuckets - 1); in LookupBucketFor()
103 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()
107 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()
115 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()
145 unsigned FullHashValue = xxh3_64bits(Key); in FindKey() local
147 FullHashValue = ~FullHashValue; in FindKey()
148 unsigned BucketNo = FullHashValue & (NumBuckets - 1); in FindKey()
160 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()