Searched refs:LHSB (Results 1 – 4 of 4) sorted by relevance
/external/llvm/include/llvm/ADT/ |
D | DenseMap.h | 801 BucketT *LHSB = &getInlineBuckets()[i], in swap() local 803 bool hasLHSValue = (!KeyInfoT::isEqual(LHSB->getFirst(), EmptyKey) && in swap() 804 !KeyInfoT::isEqual(LHSB->getFirst(), TombstoneKey)); in swap() 809 std::swap(*LHSB, *RHSB); in swap() 813 std::swap(LHSB->getFirst(), RHSB->getFirst()); in swap() 815 ::new (&RHSB->getSecond()) ValueT(std::move(LHSB->getSecond())); in swap() 816 LHSB->getSecond().~ValueT(); in swap() 818 ::new (&LHSB->getSecond()) ValueT(std::move(RHSB->getSecond())); in swap()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | DenseMap.h | 801 BucketT *LHSB = &getInlineBuckets()[i], in swap() local 803 bool hasLHSValue = (!KeyInfoT::isEqual(LHSB->getFirst(), EmptyKey) && in swap() 804 !KeyInfoT::isEqual(LHSB->getFirst(), TombstoneKey)); in swap() 809 std::swap(*LHSB, *RHSB); in swap() 813 std::swap(LHSB->getFirst(), RHSB->getFirst()); in swap() 815 ::new (&RHSB->getSecond()) ValueT(std::move(LHSB->getSecond())); in swap() 816 LHSB->getSecond().~ValueT(); in swap() 818 ::new (&LHSB->getSecond()) ValueT(std::move(RHSB->getSecond())); in swap()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | DenseMap.h | 868 BucketT *LHSB = &getInlineBuckets()[i], in swap() local 870 bool hasLHSValue = (!KeyInfoT::isEqual(LHSB->getFirst(), EmptyKey) && in swap() 871 !KeyInfoT::isEqual(LHSB->getFirst(), TombstoneKey)); in swap() 876 std::swap(*LHSB, *RHSB); in swap() 880 std::swap(LHSB->getFirst(), RHSB->getFirst()); in swap() 882 ::new (&RHSB->getSecond()) ValueT(std::move(LHSB->getSecond())); in swap() 883 LHSB->getSecond().~ValueT(); in swap() 885 ::new (&LHSB->getSecond()) ValueT(std::move(RHSB->getSecond())); in swap()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 228 Value *LHSA, *LHSB; in isEqual() local 229 SelectPatternFlavor LSPF = matchSelectPattern(LHSI, LHSA, LHSB).Flavor; in isEqual() 239 return LHSA == RHSA && LHSB == RHSB; in isEqual() 240 return ((LHSA == RHSA && LHSB == RHSB) || in isEqual() 241 (LHSA == RHSB && LHSB == RHSA)); in isEqual()
|