Searched refs:FullHashValue (Results 1 – 1 of 1) sorted by relevance
88 unsigned FullHashValue = xxh3_64bits(Name); in LookupBucketFor() local90 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() local147 FullHashValue = ~FullHashValue; in FindKey()148 unsigned BucketNo = FullHashValue & (NumBuckets - 1); in FindKey()160 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()