Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Support/
DStringMap.cpp61 unsigned FullHashValue = HashString(Name); in LookupBucketFor() local
62 unsigned BucketNo = FullHashValue & (HTSize-1); in LookupBucketFor()
74 TheTable[FirstTombstone].FullHashValue = FullHashValue; in LookupBucketFor()
78 Bucket.FullHashValue = FullHashValue; in LookupBucketFor()
85 } else if (Bucket.FullHashValue == FullHashValue) { in LookupBucketFor()
116 unsigned FullHashValue = HashString(Key); in FindKey() local
117 unsigned BucketNo = FullHashValue & (HTSize-1); in FindKey()
129 } else if (Bucket.FullHashValue == FullHashValue) { in FindKey()
205 unsigned FullHash = IB->FullHashValue; in RehashTable()
209 NewTableArray[FullHash & (NewSize-1)].FullHashValue = FullHash; in RehashTable()
[all …]
/external/llvm/lib/Support/
DStringMap.cpp78 unsigned FullHashValue = HashString(Name); in LookupBucketFor() local
79 unsigned BucketNo = FullHashValue & (HTSize-1); in LookupBucketFor()
91 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()
95 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()
102 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()
133 unsigned FullHashValue = HashString(Key); in FindKey() local
134 unsigned BucketNo = FullHashValue & (HTSize-1); in FindKey()
146 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DStringMap.cpp84 unsigned FullHashValue = djbHash(Name, 0); in LookupBucketFor() local
85 unsigned BucketNo = FullHashValue & (HTSize-1); in LookupBucketFor()
97 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()
101 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()
108 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()
138 unsigned FullHashValue = djbHash(Key, 0); in FindKey() local
139 unsigned BucketNo = FullHashValue & (HTSize-1); in FindKey()
151 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DStringMap.cpp79 unsigned FullHashValue = HashString(Name); in LookupBucketFor() local
80 unsigned BucketNo = FullHashValue & (HTSize-1); in LookupBucketFor()
92 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()
96 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()
103 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()
133 unsigned FullHashValue = HashString(Key); in FindKey() local
134 unsigned BucketNo = FullHashValue & (HTSize-1); in FindKey()
146 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DStringMap.h60 unsigned FullHashValue; member