Searched refs:Range2 (Results 1 – 8 of 8) sorted by relevance
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
D | SuspiciousEnumUsageCheck.cpp | 59 ValueRange Range1(Enum1), Range2(Enum2); in hasDisjointValueRange() local 60 return llvm::APSInt::compareValues(Range1.MaxVal, Range2.MinVal) < 0 || in hasDisjointValueRange() 61 llvm::APSInt::compareValues(Range2.MaxVal, Range1.MinVal) < 0; in hasDisjointValueRange()
|
/external/llvm-project/llvm/unittests/IR/ |
D | BasicBlockTest.cpp | 92 #define CHECK_ITERATORS(Range1, Range2) \ argument 94 std::distance(Range2.begin(), Range2.end())); \ 95 for (auto Pair : zip(Range1, Range2)) \
|
/external/llvm-project/llvm/unittests/ADT/ |
D | IteratorTest.cpp | 252 auto Range2 = reverse(reverse(make_filter_range(A, IsOdd))); in TEST() local 253 SmallVector<int, 3> Actual2(Range2.begin(), Range2.end()); in TEST()
|
/external/llvm-project/llvm/utils/TableGen/ |
D | CodeGenSchedule.cpp | 143 auto Range2 = std::equal_range(NonPseudos.begin(), NonPseudos.end(), in apply() local 156 std::for_each(Range2.first, Range2.second, HandleNonGeneric); in apply()
|
/external/llvm-project/llvm/unittests/DebugInfo/GSYM/ |
D | GSYMTest.cpp | 748 const AddressRange Range2(0x1020, 0x1030); in TEST() local 750 Range2.encode(FW, BaseAddr); in TEST() 760 EXPECT_EQ(Range2, DecodedRange2); in TEST()
|
/external/llvm-project/clang/unittests/AST/ |
D | ASTImporterTest.cpp | 1540 static void CompareSourceRanges(SourceRange Range1, SourceRange Range2, in CompareSourceRanges() argument 1543 FullSourceLoc{ Range2.getBegin(), SM2 }); in CompareSourceRanges() 1545 FullSourceLoc{ Range2.getEnd(), SM2 }); in CompareSourceRanges()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 11511 std::pair<int, int> Range2 = std::make_pair(INT_MAX, INT_MIN); in lowerShuffleAsByteRotateAndPermute() local 11528 Range2.first = std::min(Range2.first, M); in lowerShuffleAsByteRotateAndPermute() 11529 Range2.second = std::max(Range2.second, M); in lowerShuffleAsByteRotateAndPermute() 11538 !(0 <= Range2.first && Range2.second < NumEltsPerLane)) in lowerShuffleAsByteRotateAndPermute() 11567 if (Range2.second < Range1.first) in lowerShuffleAsByteRotateAndPermute() 11569 if (Range1.second < Range2.first) in lowerShuffleAsByteRotateAndPermute() 11570 return RotateAndPermute(V2, V1, Range2.first, NumElts); in lowerShuffleAsByteRotateAndPermute()
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 12136 std::pair<int, int> Range2 = std::make_pair(INT_MAX, INT_MIN); in lowerShuffleAsByteRotateAndPermute() local 12153 Range2.first = std::min(Range2.first, M); in lowerShuffleAsByteRotateAndPermute() 12154 Range2.second = std::max(Range2.second, M); in lowerShuffleAsByteRotateAndPermute() 12163 !(0 <= Range2.first && Range2.second < NumEltsPerLane)) in lowerShuffleAsByteRotateAndPermute() 12192 if (Range2.second < Range1.first) in lowerShuffleAsByteRotateAndPermute() 12194 if (Range1.second < Range2.first) in lowerShuffleAsByteRotateAndPermute() 12195 return RotateAndPermute(V2, V1, Range2.first, NumElts); in lowerShuffleAsByteRotateAndPermute()
|