Home
last modified time | relevance | path

Searched refs:unionWith (Results 1 – 6 of 6) sorted by relevance

/external/llvm/unittests/Support/
DConstantRangeTest.cpp281 EXPECT_EQ(Wrap.unionWith(One), in TEST_F()
283 EXPECT_EQ(One.unionWith(Wrap), Wrap.unionWith(One)); in TEST_F()
284 EXPECT_EQ(Empty.unionWith(Empty), Empty); in TEST_F()
285 EXPECT_EQ(Full.unionWith(Full), Full); in TEST_F()
286 EXPECT_EQ(Some.unionWith(Wrap), Full); in TEST_F()
289 EXPECT_EQ(ConstantRange(APInt(16, 14), APInt(16, 1)).unionWith( in TEST_F()
292 EXPECT_EQ(ConstantRange(APInt(16, 6), APInt(16, 4)).unionWith( in TEST_F()
295 EXPECT_EQ(ConstantRange(APInt(16, 1), APInt(16, 0)).unionWith( in TEST_F()
/external/llvm/lib/Support/
DConstantRange.cpp344 ConstantRange ConstantRange::unionWith(const ConstantRange &CR) const { in unionWith() function in ConstantRange
351 if (!isWrappedSet() && CR.isWrappedSet()) return CR.unionWith(*this); in unionWith()
502 UpperDiv.trunc(DstTySize)).unionWith(Union); in truncate()
508 UpperModulo.trunc(DstTySize)).unionWith(Union); in truncate()
/external/llvm/include/llvm/Support/
DConstantRange.h177 ConstantRange unionWith(const ConstantRange &CR) const;
/external/llvm/include/llvm/ADT/
DSparseBitVector.h184 bool unionWith(const SparseBitVectorElement &RHS) {
580 changed |= Iter1->unionWith(*Iter2);
/external/llvm/lib/Analysis/
DLazyValueInfo.cpp265 ConstantRange NewR = Range.unionWith(RHS.getConstantRange()); in mergeIn()
856 EdgesVals = EdgesVals.unionWith(EdgeVal); in getEdgeValueLocal()
/external/llvm/lib/VMCore/
DMetadata.cpp468 ConstantRange Union = LastRange.unionWith(NewRange); in tryMergeRange()