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

/external/swiftshader/third_party/LLVM/lib/Support/
H A DStringMap.cpp53 /// case, the FullHashValue field of the bucket will be set to the hash value
61 unsigned FullHashValue = HashString(Name); local
62 unsigned BucketNo = FullHashValue & (HTSize-1);
74 TheTable[FirstTombstone].FullHashValue = FullHashValue;
78 Bucket.FullHashValue = FullHashValue;
85 } else if (Bucket.FullHashValue == FullHashValue) {
116 unsigned FullHashValue local
[all...]
/external/llvm/lib/Support/
H A DStringMap.cpp70 /// case, the FullHashValue field of the bucket will be set to the hash value
78 unsigned FullHashValue = HashString(Name); local
79 unsigned BucketNo = FullHashValue & (HTSize-1);
91 HashTable[FirstTombstone] = FullHashValue;
95 HashTable[BucketNo] = FullHashValue;
102 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
133 unsigned FullHashValue = HashString(Key); local
134 unsigned BucketNo = FullHashValue & (HTSize-1);
146 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DStringMap.cpp71 /// case, the FullHashValue field of the bucket will be set to the hash value
79 unsigned FullHashValue = HashString(Name); local
80 unsigned BucketNo = FullHashValue & (HTSize-1);
92 HashTable[FirstTombstone] = FullHashValue;
96 HashTable[BucketNo] = FullHashValue;
103 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
133 unsigned FullHashValue = HashString(Key); local
134 unsigned BucketNo = FullHashValue & (HTSize-1);
146 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DStringMap.h58 /// FullHashValue - This remembers the full hash value of the key for
60 unsigned FullHashValue; member in struct:llvm::StringMapImpl::ItemBucket
86 /// case, the FullHashValue field of the bucket will be set to the hash value
372 // Fill in the bucket for the hash table. The FullHashValue was already

Completed in 243 milliseconds