Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_dense_map.h75 return LookupBucketFor(Key, TheBucket) ? 1 : 0; in count()
80 if (LookupBucketFor(Key, TheBucket)) in find()
86 if (LookupBucketFor(Key, TheBucket)) in find()
99 if (LookupBucketFor(Key, TheBucket)) in find_as()
106 if (LookupBucketFor(Key, TheBucket)) in find_as()
115 if (LookupBucketFor(Key, TheBucket)) in lookup()
142 if (LookupBucketFor(Key, TheBucket)) in try_emplace()
158 if (LookupBucketFor(Key, TheBucket)) in try_emplace()
176 if (LookupBucketFor(Val, TheBucket)) in insert_as()
188 if (!LookupBucketFor(Val, TheBucket)) in erase()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h147 return LookupBucketFor(Val, TheBucket); in contains()
157 if (LookupBucketFor(Val, TheBucket)) in find()
166 if (LookupBucketFor(Val, TheBucket)) in find()
182 if (LookupBucketFor(Val, TheBucket)) in find_as()
192 if (LookupBucketFor(Val, TheBucket)) in find_as()
204 if (LookupBucketFor(Val, TheBucket)) in lookup()
237 if (LookupBucketFor(Key, TheBucket)) in try_emplace()
262 if (LookupBucketFor(Key, TheBucket)) in try_emplace()
289 if (LookupBucketFor(Val, TheBucket)) in insert_as()
347 if (!LookupBucketFor(Val, TheBucket)) in erase()
[all …]
H A DStringMap.h64 unsigned LookupBucketFor(StringRef Key) { in LookupBucketFor() function
65 return LookupBucketFor(Key, hash(Key)); in LookupBucketFor()
69 unsigned LookupBucketFor(StringRef Key, uint32_t FullHashValue);
309 unsigned BucketNo = LookupBucketFor(KeyValue->getKey()); in insert()
376 unsigned BucketNo = LookupBucketFor(Key, FullHashValue); in try_emplace_with_hash()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DStringMap.cpp86 unsigned StringMapImpl::LookupBucketFor(StringRef Name, in LookupBucketFor() function in StringMapImpl