HomeSort by: relevance | last modified time | path
    Searched refs:ThisBucket (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_dense_map.h 477 const BucketT *ThisBucket = BucketsPtr + BucketNo;
479 if (LIKELY(KeyInfoT::isEqual(Val, ThisBucket->getFirst()))) {
480 FoundBucket = ThisBucket;
486 if (LIKELY(KeyInfoT::isEqual(ThisBucket->getFirst(), EmptyKey))) {
489 FoundBucket = FoundTombstone ? FoundTombstone : ThisBucket;
495 if (KeyInfoT::isEqual(ThisBucket->getFirst(), TombstoneKey) &&
497 FoundTombstone = ThisBucket; // Remember the first tombstone found.
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
DenseMap.h 629 const BucketT *ThisBucket = BucketsPtr + BucketNo;
631 if (LLVM_LIKELY(KeyInfoT::isEqual(Val, ThisBucket->getFirst()))) {
632 FoundBucket = ThisBucket;
638 if (LLVM_LIKELY(KeyInfoT::isEqual(ThisBucket->getFirst(), EmptyKey))) {
641 FoundBucket = FoundTombstone ? FoundTombstone : ThisBucket;
647 if (KeyInfoT::isEqual(ThisBucket->getFirst(), TombstoneKey) &&
649 FoundTombstone = ThisBucket; // Remember the first tombstone found.

Completed in 23 milliseconds