Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_dense_map.h489 const BucketT *ThisBucket = BucketsPtr + BucketNo; in LookupBucketFor() local
491 if (LIKELY(KeyInfoT::isEqual(Val, ThisBucket->getFirst()))) { in LookupBucketFor()
492 FoundBucket = ThisBucket; in LookupBucketFor()
498 if (LIKELY(KeyInfoT::isEqual(ThisBucket->getFirst(), EmptyKey))) { in LookupBucketFor()
501 FoundBucket = FoundTombstone ? FoundTombstone : ThisBucket; in LookupBucketFor()
507 if (KeyInfoT::isEqual(ThisBucket->getFirst(), TombstoneKey) && in LookupBucketFor()
509 FoundTombstone = ThisBucket; // Remember the first tombstone found. in LookupBucketFor()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h703 BucketT *ThisBucket = BucketsPtr + BucketNo; in LookupBucketFor() local
705 if (LLVM_LIKELY(KeyInfoT::isEqual(Val, ThisBucket->getFirst()))) { in LookupBucketFor()
706 FoundBucket = ThisBucket; in LookupBucketFor()
712 if (LLVM_LIKELY(KeyInfoT::isEqual(ThisBucket->getFirst(), EmptyKey))) { in LookupBucketFor()
715 FoundBucket = FoundTombstone ? FoundTombstone : ThisBucket; in LookupBucketFor()
721 if (KeyInfoT::isEqual(ThisBucket->getFirst(), TombstoneKey) && in LookupBucketFor()
723 FoundTombstone = ThisBucket; // Remember the first tombstone found. in LookupBucketFor()