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

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DStringMap.cpp72 /// case, the FullHashValue field of the bucket will be set to the hash value
80 unsigned FullHashValue = djbHash(Name, 0); local
81 unsigned BucketNo = FullHashValue & (HTSize - 1);
93 HashTable[FirstTombstone] = FullHashValue;
97 HashTable[BucketNo] = FullHashValue;
105 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
136 unsigned FullHashValue = djbHash(Key, 0); local
137 unsigned BucketNo = FullHashValue & (HTSize - 1);
149 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {

Completed in 112 milliseconds