Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_dense_map.h477 const BucketT *ThisBucket = BucketsPtr + BucketNo; in LookupBucketFor() local
479 if (LIKELY(KeyInfoT::isEqual(Val, ThisBucket->getFirst()))) { in LookupBucketFor()
480 FoundBucket = ThisBucket; in LookupBucketFor()
486 if (LIKELY(KeyInfoT::isEqual(ThisBucket->getFirst(), EmptyKey))) { in LookupBucketFor()
489 FoundBucket = FoundTombstone ? FoundTombstone : ThisBucket; in LookupBucketFor()
495 if (KeyInfoT::isEqual(ThisBucket->getFirst(), TombstoneKey) && in LookupBucketFor()
497 FoundTombstone = ThisBucket; // Remember the first tombstone found. in LookupBucketFor()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h656 const BucketT *ThisBucket = BucketsPtr + BucketNo; in LookupBucketFor() local
658 if (LLVM_LIKELY(KeyInfoT::isEqual(Val, ThisBucket->getFirst()))) { in LookupBucketFor()
659 FoundBucket = ThisBucket; in LookupBucketFor()
665 if (LLVM_LIKELY(KeyInfoT::isEqual(ThisBucket->getFirst(), EmptyKey))) { in LookupBucketFor()
668 FoundBucket = FoundTombstone ? FoundTombstone : ThisBucket; in LookupBucketFor()
674 if (KeyInfoT::isEqual(ThisBucket->getFirst(), TombstoneKey) && in LookupBucketFor()
676 FoundTombstone = ThisBucket; // Remember the first tombstone found. in LookupBucketFor()