| /freebsd-12.1/contrib/compiler-rt/lib/ubsan/ |
| H A D | ubsan_diag.cc | 286 if (InRange && InRange->getEnd().getMemoryLocation() == P) in PrintMemorySnippet() 287 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet() 288 if (!InRange && P > Loc) in PrintMemorySnippet() 290 if (InRange && InRange->getStart().getMemoryLocation() < P) in PrintMemorySnippet() 292 if (InRange && InRange->getStart().getMemoryLocation() <= P) in PrintMemorySnippet() 303 InRange = 0; in PrintMemorySnippet() 306 if (!InRange || InRange->getEnd().getMemoryLocation() == P) in PrintMemorySnippet() 307 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet() 308 if (!InRange) in PrintMemorySnippet() 313 if (InRange && InRange->getStart().getMemoryLocation() == P) { in PrintMemorySnippet() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | SimpleConstraintManager.cpp | 97 const llvm::APSInt &To, bool InRange) { in assumeInclusiveRange() argument 107 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRange() 118 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRange() 125 bool isFeasible = (IsInRange == InRange); in assumeInclusiveRange()
|
| H A D | RangedConstraintManager.cpp | 76 const llvm::APSInt &To, bool InRange) { in assumeSymInclusiveRange() argument 95 if (InRange) in assumeSymInclusiveRange()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SimpleConstraintManager.h | 46 bool InRange) override; 66 bool InRange) = 0;
|
| H A D | SMTConv.h | 493 const llvm::APSInt &To, bool InRange) { in getRangeExpr() argument 507 return getBinExpr(Solver, Ctx, Exp, SymTy, InRange ? BO_EQ : BO_NE, in getRangeExpr() 518 getBinExpr(Solver, Ctx, Exp, SymTy, InRange ? BO_GE : BO_LT, FromExp, in getRangeExpr() 521 InRange ? BO_LE : BO_GT, ToExp, ToTy, in getRangeExpr() 524 return fromBinOp(Solver, LHS, InRange ? BO_LAnd : BO_LOr, RHS, in getRangeExpr()
|
| H A D | SMTConstraintManager.h | 60 bool InRange) override { in assumeSymInclusiveRange() argument 63 State, Sym, SMTConv::getRangeExpr(Solver, Ctx, Sym, From, To, InRange)); in assumeSymInclusiveRange()
|
| H A D | RangedConstraintManager.h | 155 bool InRange) override;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | ThreadPlanStepRange.cpp | 106 bool ThreadPlanStepRange::InRange() { in InRange() function in ThreadPlanStepRange 436 if (InRange()) { in MischiefManaged() 470 if (!InRange()) { in IsPlanStale()
|
| H A D | ThreadPlanStepOverRange.cpp | 191 if (InRange()) { in ShouldStop()
|
| H A D | ThreadPlanStepInRange.cpp | 221 if (InRange()) { in ShouldStop()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | ThreadPlanStepRange.h | 45 bool InRange();
|
| /freebsd-12.1/contrib/llvm/lib/Target/Mips/ |
| H A D | MicroMipsSizeReduction.cpp | 328 static bool InRange(int64_t Value, unsigned short Shift, int LBound, in InRange() function 345 if (!InRange(offset, Entry.Shift(), Entry.LBound(), Entry.HBound())) in ImmInRange()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | ConstantFold.cpp | 2278 bool InRange = true; in ConstantFoldGetElementPtr() local 2281 InRange &= isIndexInRangeOfArrayType(STy->getNumElements(), CI); in ConstantFoldGetElementPtr() 2287 if (InRange || Unknown) in ConstantFoldGetElementPtr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 10006 InRange = InRangeFlag, enumerator 10021 if (Value >= PromotedMin) return InRange; in compare() 10022 if (Value <= PromotedMax) return InRange; in compare() 10031 case -1: return InRange; in compare() 10157 bool InRange = Cmp & PromotedRange::InRangeFlag; in CheckTautologicalComparison() local 10158 if (InRange && IsEnumConstOrFromMacro(S, Constant)) in CheckTautologicalComparison() 10178 if (!InRange || Other->isKnownToHaveBooleanValue()) { in CheckTautologicalComparison() 10181 S.PDiag(!InRange ? diag::warn_out_of_range_compare in CheckTautologicalComparison()
|
| /freebsd-12.1/contrib/googletest/googlemock/docs/ |
| H A D | CookBook.md | 835 EXPECT_CALL(foo, InRange(Ne(0), _)) 839 says that the first argument of `InRange()` must not be 0, and must be
|