Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DStringMap.cpp75 unsigned HTSize = NumBuckets; in LookupBucketFor() local
76 if (HTSize == 0) { // Hash table unallocated so far? in LookupBucketFor()
78 HTSize = NumBuckets; in LookupBucketFor()
81 unsigned BucketNo = FullHashValue & (HTSize - 1); in LookupBucketFor()
121 BucketNo = (BucketNo + ProbeAmt) & (HTSize - 1); in LookupBucketFor()
133 unsigned HTSize = NumBuckets; in FindKey() local
134 if (HTSize == 0) in FindKey()
137 unsigned BucketNo = FullHashValue & (HTSize - 1); in FindKey()
165 BucketNo = (BucketNo + ProbeAmt) & (HTSize - 1); in FindKey()