Searched defs:FullHashValue (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Support/
H A DStringMap.cpp56 /// case, the FullHashValue field of the bucket will be set to the hash value
64 unsigned FullHashValue = HashString(Name); local
65 unsigned BucketNo = FullHashValue & (HTSize-1);
77 HashTable[FirstTombstone] = FullHashValue;
81 HashTable[BucketNo] = FullHashValue;
88 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
119 unsigned FullHashValue = HashString(Key); local
120 unsigned BucketNo = FullHashValue & (HTSize-1);
132 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {

Completed in 395 milliseconds