Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DStringMap.cpp64 unsigned FullHashValue = HashString(Name); in LookupBucketFor() local
65 unsigned BucketNo = FullHashValue & (HTSize-1); in LookupBucketFor()
77 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()
81 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()
88 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()
119 unsigned FullHashValue = HashString(Key); in FindKey() local
120 unsigned BucketNo = FullHashValue & (HTSize-1); in FindKey()
132 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()