Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ADT/
DDenseMap.h122 const BucketT *TheBucket; in count() local
123 return LookupBucketFor(Val, TheBucket) ? 1 : 0; in count()
127 BucketT *TheBucket; in find() local
128 if (LookupBucketFor(Val, TheBucket)) in find()
129 return iterator(TheBucket, getBucketsEnd(), *this, true); in find()
133 const BucketT *TheBucket; in find() local
134 if (LookupBucketFor(Val, TheBucket)) in find()
135 return const_iterator(TheBucket, getBucketsEnd(), *this, true); in find()
146 BucketT *TheBucket; in find_as() local
147 if (LookupBucketFor(Val, TheBucket)) in find_as()
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DDenseMap.h123 const BucketT *TheBucket; in count() local
124 return LookupBucketFor(Val, TheBucket) ? 1 : 0; in count()
128 BucketT *TheBucket; in find() local
129 if (LookupBucketFor(Val, TheBucket)) in find()
130 return iterator(TheBucket, getBucketsEnd(), *this, true); in find()
134 const BucketT *TheBucket; in find() local
135 if (LookupBucketFor(Val, TheBucket)) in find()
136 return const_iterator(TheBucket, getBucketsEnd(), *this, true); in find()
147 BucketT *TheBucket; in find_as() local
148 if (LookupBucketFor(Val, TheBucket)) in find_as()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DDenseMap.h133 BucketT *TheBucket; in count() local
134 return LookupBucketFor(Val, TheBucket); in count()
138 BucketT *TheBucket; in find() local
139 if (LookupBucketFor(Val, TheBucket)) in find()
140 return iterator(TheBucket, Buckets+NumBuckets); in find()
144 BucketT *TheBucket; in find() local
145 if (LookupBucketFor(Val, TheBucket)) in find()
146 return const_iterator(TheBucket, Buckets+NumBuckets); in find()
153 BucketT *TheBucket; in lookup() local
154 if (LookupBucketFor(Val, TheBucket)) in lookup()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DDenseMap.h142 const BucketT *TheBucket; in count() local
143 return LookupBucketFor(Val, TheBucket) ? 1 : 0; in count()
147 BucketT *TheBucket; in find() local
148 if (LookupBucketFor(Val, TheBucket)) in find()
149 return makeIterator(TheBucket, getBucketsEnd(), *this, true); in find()
153 const BucketT *TheBucket; in find() local
154 if (LookupBucketFor(Val, TheBucket)) in find()
155 return makeConstIterator(TheBucket, getBucketsEnd(), *this, true); in find()
166 BucketT *TheBucket; in find_as() local
167 if (LookupBucketFor(Val, TheBucket)) in find_as()
[all …]