Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_dense_map.h74 const BucketT *TheBucket; in count() local
75 return LookupBucketFor(Key, TheBucket) ? 1 : 0; in count()
79 BucketT *TheBucket; in find() local
80 if (LookupBucketFor(Key, TheBucket)) in find()
81 return TheBucket; in find()
85 const BucketT *TheBucket; in find() local
86 if (LookupBucketFor(Key, TheBucket)) in find()
87 return TheBucket; in find()
98 BucketT *TheBucket; in find_as() local
99 if (LookupBucketFor(Key, TheBucket)) in find_as()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h146 const BucketT *TheBucket; in contains() local
147 return LookupBucketFor(Val, TheBucket); in contains()
156 BucketT *TheBucket; in find() local
157 if (LookupBucketFor(Val, TheBucket)) in find()
158 return makeIterator(TheBucket, in find()
165 const BucketT *TheBucket; in find() local
166 if (LookupBucketFor(Val, TheBucket)) in find()
167 return makeConstIterator(TheBucket, in find()
181 BucketT *TheBucket; in find_as() local
182 if (LookupBucketFor(Val, TheBucket)) in find_as()
[all …]