Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/
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 …]
/openbsd/src/gnu/llvm/llvm/include/llvm/ADT/
DDenseMap.h146 const BucketT *TheBucket; in count() local
147 return LookupBucketFor(Val, TheBucket) ? 1 : 0; in count()
151 BucketT *TheBucket; in find() local
152 if (LookupBucketFor(Val, TheBucket)) in find()
153 return makeIterator(TheBucket, in find()
160 const BucketT *TheBucket; in find() local
161 if (LookupBucketFor(Val, TheBucket)) in find()
162 return makeConstIterator(TheBucket, in find()
176 BucketT *TheBucket; in find_as() local
177 if (LookupBucketFor(Val, TheBucket)) in find_as()
[all …]