Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DDenseMap.h343 BucketT *ThisBucket = BucketsPtr + (BucketNo & (NumBuckets-1)); in LookupBucketFor() local
345 if (KeyInfoT::isEqual(ThisBucket->first, Val)) { in LookupBucketFor()
346 FoundBucket = ThisBucket; in LookupBucketFor()
352 if (KeyInfoT::isEqual(ThisBucket->first, EmptyKey)) { in LookupBucketFor()
355 if (FoundTombstone) ThisBucket = FoundTombstone; in LookupBucketFor()
356 FoundBucket = FoundTombstone ? FoundTombstone : ThisBucket; in LookupBucketFor()
362 if (KeyInfoT::isEqual(ThisBucket->first, TombstoneKey) && !FoundTombstone) in LookupBucketFor()
363 FoundTombstone = ThisBucket; // Remember the first tombstone found. in LookupBucketFor()
/external/llvm/include/llvm/ADT/
DDenseMap.h534 const BucketT *ThisBucket = BucketsPtr + BucketNo; in LookupBucketFor() local
536 if (LLVM_LIKELY(KeyInfoT::isEqual(Val, ThisBucket->getFirst()))) { in LookupBucketFor()
537 FoundBucket = ThisBucket; in LookupBucketFor()
543 if (LLVM_LIKELY(KeyInfoT::isEqual(ThisBucket->getFirst(), EmptyKey))) { in LookupBucketFor()
546 FoundBucket = FoundTombstone ? FoundTombstone : ThisBucket; in LookupBucketFor()
552 if (KeyInfoT::isEqual(ThisBucket->getFirst(), TombstoneKey) && in LookupBucketFor()
554 FoundTombstone = ThisBucket; // Remember the first tombstone found. in LookupBucketFor()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DDenseMap.h532 const BucketT *ThisBucket = BucketsPtr + BucketNo; in LookupBucketFor() local
534 if (LLVM_LIKELY(KeyInfoT::isEqual(Val, ThisBucket->getFirst()))) { in LookupBucketFor()
535 FoundBucket = ThisBucket; in LookupBucketFor()
541 if (LLVM_LIKELY(KeyInfoT::isEqual(ThisBucket->getFirst(), EmptyKey))) { in LookupBucketFor()
544 FoundBucket = FoundTombstone ? FoundTombstone : ThisBucket; in LookupBucketFor()
550 if (KeyInfoT::isEqual(ThisBucket->getFirst(), TombstoneKey) && in LookupBucketFor()
552 FoundTombstone = ThisBucket; // Remember the first tombstone found. in LookupBucketFor()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DDenseMap.h594 const BucketT *ThisBucket = BucketsPtr + BucketNo; in LookupBucketFor() local
596 if (LLVM_LIKELY(KeyInfoT::isEqual(Val, ThisBucket->getFirst()))) { in LookupBucketFor()
597 FoundBucket = ThisBucket; in LookupBucketFor()
603 if (LLVM_LIKELY(KeyInfoT::isEqual(ThisBucket->getFirst(), EmptyKey))) { in LookupBucketFor()
606 FoundBucket = FoundTombstone ? FoundTombstone : ThisBucket; in LookupBucketFor()
612 if (KeyInfoT::isEqual(ThisBucket->getFirst(), TombstoneKey) && in LookupBucketFor()
614 FoundTombstone = ThisBucket; // Remember the first tombstone found. in LookupBucketFor()