Home
last modified time | relevance | path

Searched refs:NoWrap (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/webrtc/modules/
Dmodule_common_types_unittest.cc21 TEST(IsNewerSequenceNumber, NoWrap) { in TEST() argument
50 TEST(IsNewerTimestamp, NoWrap) { in TEST() argument
75 TEST(LatestSequenceNumber, NoWrap) { in TEST() argument
97 TEST(LatestTimestamp, NoWrap) { in TEST() argument
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DCorrelatedValuePropagation.cpp407 auto NoWrap = [&] (Instruction::BinaryOps BinOp, unsigned NoWrapKind) { in willNotOverflow() local
423 return NoWrap(Instruction::Add, OBO::NoUnsignedWrap); in willNotOverflow()
425 return NoWrap(Instruction::Add, OBO::NoSignedWrap); in willNotOverflow()
427 return NoWrap(Instruction::Sub, OBO::NoUnsignedWrap); in willNotOverflow()
429 return NoWrap(Instruction::Sub, OBO::NoSignedWrap); in willNotOverflow()
/external/webrtc/webrtc/system_wrappers/source/
Drtp_to_ntp_unittest.cc16 TEST(WrapAroundTests, NoWrap) { in TEST() argument
/external/llvm/include/llvm/Analysis/
DScalarEvolution.h1652 bool IsSigned, bool NoWrap);
1658 bool IsSigned, bool NoWrap);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DScalarEvolution.h1820 bool NoWrap);
1826 bool NoWrap);
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DScalarEvolution.h420 bool NoWrap);
/external/llvm/lib/Analysis/
DScalarEvolution.cpp8578 bool IsSigned, bool NoWrap) { in doesIVOverflowOnLT() argument
8579 if (NoWrap) return false; in doesIVOverflowOnLT()
8604 bool IsSigned, bool NoWrap) { in doesIVOverflowOnGT() argument
8605 if (NoWrap) return false; in doesIVOverflowOnGT()
8657 bool NoWrap = ControlsExit && in howManyLessThans() local
8670 if (!Stride->isOne() && doesIVOverflowOnLT(RHS, Stride, IsSigned, NoWrap)) in howManyLessThans()
8732 bool NoWrap = ControlsExit && in howManyGreaterThans() local
8745 if (!Stride->isOne() && doesIVOverflowOnGT(RHS, Stride, IsSigned, NoWrap)) in howManyGreaterThans()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DScalarEvolution.cpp10189 bool IsSigned, bool NoWrap) { in doesIVOverflowOnLT() argument
10192 if (NoWrap) return false; in doesIVOverflowOnLT()
10215 bool IsSigned, bool NoWrap) { in doesIVOverflowOnGT() argument
10216 if (NoWrap) return false; in doesIVOverflowOnGT()
10310 bool NoWrap = ControlsExit && in howManyLessThans() local
10361 if (PredicatedIV || !NoWrap || isKnownNonPositive(Stride) || in howManyLessThans()
10365 doesIVOverflowOnLT(RHS, Stride, IsSigned, NoWrap)) in howManyLessThans()
10450 bool NoWrap = ControlsExit && in howManyGreaterThans() local
10463 if (!Stride->isOne() && doesIVOverflowOnGT(RHS, Stride, IsSigned, NoWrap)) in howManyGreaterThans()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DScalarEvolution.cpp6043 bool NoWrap) { in getBECount() argument
6063 if (!NoWrap) { in getBECount()
6092 bool NoWrap = isSigned ? AddRec->getNoWrapFlags(SCEV::FlagNSW) : in HowManyLessThans() local
6173 const SCEV *BECount = getBECount(Start, End, Step, NoWrap); in HowManyLessThans()
6179 : getBECount(MinStart, MaxEnd, Step, NoWrap); in HowManyLessThans()