HomeSort by relevance Sort by last modified time
    Searched refs:intersectWith (Results 1 - 25 of 41) sorted by null

1 2

  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 225 TEST_F(ConstantRangeTest, IntersectWith) {
226 EXPECT_EQ(Empty.intersectWith(Full), Empty);
227 EXPECT_EQ(Empty.intersectWith(Empty), Empty);
228 EXPECT_EQ(Empty.intersectWith(One), Empty);
229 EXPECT_EQ(Empty.intersectWith(Some), Empty);
230 EXPECT_EQ(Empty.intersectWith(Wrap), Empty);
231 EXPECT_EQ(Full.intersectWith(Full), Full);
232 EXPECT_EQ(Some.intersectWith(Some), Some);
233 EXPECT_EQ(Some.intersectWith(One), One);
234 EXPECT_EQ(Full.intersectWith(One), One)
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/Support/
ConstantRangeTest.cpp 214 TEST_F(ConstantRangeTest, IntersectWith) {
215 EXPECT_EQ(Empty.intersectWith(Full), Empty);
216 EXPECT_EQ(Empty.intersectWith(Empty), Empty);
217 EXPECT_EQ(Empty.intersectWith(One), Empty);
218 EXPECT_EQ(Empty.intersectWith(Some), Empty);
219 EXPECT_EQ(Empty.intersectWith(Wrap), Empty);
220 EXPECT_EQ(Full.intersectWith(Full), Full);
221 EXPECT_EQ(Some.intersectWith(Some), Some);
222 EXPECT_EQ(Some.intersectWith(One), One);
223 EXPECT_EQ(Full.intersectWith(One), One)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
ConstantRangeTest.cpp 251 TEST_F(ConstantRangeTest, IntersectWith) {
252 EXPECT_EQ(Empty.intersectWith(Full), Empty);
253 EXPECT_EQ(Empty.intersectWith(Empty), Empty);
254 EXPECT_EQ(Empty.intersectWith(One), Empty);
255 EXPECT_EQ(Empty.intersectWith(Some), Empty);
256 EXPECT_EQ(Empty.intersectWith(Wrap), Empty);
257 EXPECT_EQ(Full.intersectWith(Full), Full);
258 EXPECT_EQ(Some.intersectWith(Some), Some);
259 EXPECT_EQ(Some.intersectWith(One), One);
260 EXPECT_EQ(Full.intersectWith(One), One)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
ConstantRange.h 158 /// intersectWith - Return the range that results from the intersection of
162 /// intersections with the same set size, A.intersectWith(B) might not
163 /// be equal to B.intersectWith(A).
165 ConstantRange intersectWith(const ConstantRange &CR) const;
  /external/llvm/include/llvm/IR/
ConstantRange.h 213 /// intersections with the same set size, A.intersectWith(B) might not
214 /// be equal to B.intersectWith(A).
216 ConstantRange intersectWith(const ConstantRange &CR) const;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
ConstantRange.h 213 /// intersections with the same set size, A.intersectWith(B) might not
214 /// be equal to B.intersectWith(A).
215 ConstantRange intersectWith(const ConstantRange &CR) const;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
RDFRegisters.h 179 RegisterRef intersectWith(RegisterRef RR) const;
RDFRegisters.cpp 306 RegisterRef RegisterAggr::intersectWith(RegisterRef RR) const {
RDFLiveness.cpp 649 R = PRI.mapTo(DRs.intersectWith(R), T.first);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ScalarEvolution.cpp     [all...]
LazyValueInfo.cpp 862 TrueValues.intersectWith(InBlock.getConstantRange());
    [all...]
  /external/llvm/include/llvm/ADT/
SparseBitVector.h 187 bool intersectWith(const SparseBitVectorElement &RHS,
620 changed |= Iter1->intersectWith(*Iter2, BecameZero);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SparseBitVector.h 211 bool intersectWith(const SparseBitVectorElement &RHS,
625 changed |= Iter1->intersectWith(*Iter2, BecameZero);
  /external/swiftshader/third_party/LLVM/lib/Support/
ConstantRange.cpp 262 /// intersectWith - Return the range that results from the intersection of this
266 /// same set size, A.intersectWith(B) might not be equal to B.intersectWith(A).
267 ConstantRange ConstantRange::intersectWith(const ConstantRange &CR) const {
276 return CR.intersectWith(*this);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
SparseBitVector.h 195 bool intersectWith(const SparseBitVectorElement &RHS,
606 changed |= Iter1->intersectWith(*Iter2, BecameZero);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
ConstantRange.cpp 186 // intersectWith in that the ConstantRange returned will only contain elements
425 return intersectWith(CR.inverse());
428 ConstantRange ConstantRange::intersectWith(const ConstantRange &CR) const {
437 return CR.intersectWith(*this);
788 auto NSWConstrainedRange = intersectWith(NSWRange);
    [all...]
  /external/llvm/lib/IR/
ConstantRange.cpp 175 // intersectWith in that the ConstantRange returned will only contain elements
363 return intersectWith(CR.inverse());
366 /// intersectWith - Return the range that results from the intersection of this
370 /// same set size, A.intersectWith(B) might not be equal to B.intersectWith(A).
371 ConstantRange ConstantRange::intersectWith(const ConstantRange &CR) const {
380 return CR.intersectWith(*this);
Metadata.cpp 919 return !A.intersectWith(B).isEmptySet() || isContiguous(A, B);
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
LazyValueInfo.cpp 354 A.getConstantRange().intersectWith(B.getConstantRange());
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GuardWidening.cpp 431 auto SupersetIntersect = CR0.intersectWith(CR1);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
GuardWidening.cpp 488 auto SupersetIntersect = CR0.intersectWith(CR1);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 384 void intersectWith(const SDNodeFlags *Flags) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 463 void intersectWith(const SDNodeFlags Flags) {
    [all...]

Completed in 3267 milliseconds

1 2