| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/ubsan/ |
| H A D | ubsan_diag.cpp | 293 if (InRange && InRange->getEnd().getMemoryLocation() == P) in PrintMemorySnippet() 294 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet() 295 if (!InRange && P > Loc) in PrintMemorySnippet() 297 if (InRange && InRange->getStart().getMemoryLocation() < P) in PrintMemorySnippet() 299 if (InRange && InRange->getStart().getMemoryLocation() <= P) in PrintMemorySnippet() 310 InRange = 0; in PrintMemorySnippet() 313 if (!InRange || InRange->getEnd().getMemoryLocation() == P) in PrintMemorySnippet() 314 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet() 315 if (!InRange) in PrintMemorySnippet() 320 if (InRange && InRange->getStart().getMemoryLocation() == P) { in PrintMemorySnippet() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | SimpleConstraintManager.cpp | 96 const llvm::APSInt &To, bool InRange) { in assumeInclusiveRange() argument 106 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRange() 117 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRange() 124 bool isFeasible = (IsInRange == InRange); in assumeInclusiveRange()
|
| H A D | RangedConstraintManager.cpp | 97 const llvm::APSInt &To, bool InRange) { in assumeSymInclusiveRange() argument 119 if (InRange) in assumeSymInclusiveRange()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | release.h | 153 if (!InRange) { in processNextPage() 155 InRange = true; in processNextPage() 172 if (InRange) { in closeOpenedRange() 175 InRange = false; in closeOpenedRange() 181 bool InRange = false; variable
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SimpleConstraintManager.h | 45 bool InRange) override; 65 bool InRange) = 0;
|
| H A D | SMTConv.h | 509 const llvm::APSInt &From, const llvm::APSInt &To, bool InRange) { in getRangeExpr() argument 523 return getBinExpr(Solver, Ctx, Exp, SymTy, InRange ? BO_EQ : BO_NE, in getRangeExpr() 535 getBinExpr(Solver, Ctx, Exp, SymTy, InRange ? BO_GE : BO_LT, FromExp, in getRangeExpr() 538 InRange ? BO_LE : BO_GT, ToExp, ToTy, in getRangeExpr() 541 return fromBinOp(Solver, LHS, InRange ? BO_LAnd : BO_LOr, RHS, in getRangeExpr()
|
| H A D | SMTConstraintManager.h | 66 bool InRange) override { in REGISTER_TRAIT_WITH_PROGRAMSTATE() 69 State, Sym, SMTConv::getRangeExpr(Solver, Ctx, Sym, From, To, InRange)); in REGISTER_TRAIT_WITH_PROGRAMSTATE()
|
| H A D | RangedConstraintManager.h | 333 bool InRange) override;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | ThreadPlanStepRange.cpp | 100 bool ThreadPlanStepRange::InRange() { in InRange() function in ThreadPlanStepRange 447 if (InRange()) { in MischiefManaged() 480 if (!InRange()) { in IsPlanStale()
|
| H A D | ThreadPlanStepOverRange.cpp | 192 if (InRange()) { in ShouldStop()
|
| H A D | ThreadPlanStepInRange.cpp | 203 if (InRange()) { in ShouldStop()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | ThreadPlanStepRange.h | 44 bool InRange();
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MicroMipsSizeReduction.cpp | 327 static bool InRange(int64_t Value, unsigned short Shift, int LBound, in InRange() function 344 if (!InRange(offset, Entry.Shift(), Entry.LBound(), Entry.HBound())) in ImmInRange()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantFold.cpp | 2333 bool InRange = true; in ConstantFoldGetElementPtr() local 2336 InRange &= isIndexInRangeOfArrayType(STy->getNumElements(), CI); in ConstantFoldGetElementPtr() 2342 if (InRange || Unknown) in ConstantFoldGetElementPtr()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Interp.h | 265 bool InRange(InterpState &S, CodePtr OpPC) { in InRange() function
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 11519 InRange = InRangeFlag, enumerator 11534 if (Value >= PromotedMin) return InRange; in compare() 11535 if (Value <= PromotedMax) return InRange; in compare() 11544 case -1: return InRange; in compare() 11697 bool InRange = Cmp & PromotedRange::InRangeFlag; in CheckTautologicalComparison() local 11698 if (InRange && IsEnumConstOrFromMacro(S, Constant)) in CheckTautologicalComparison() 11703 if (Other->refersToBitField() && InRange && Value == 0 && in CheckTautologicalComparison() 11743 if (!InRange || Other->isKnownToHaveBooleanValue()) { in CheckTautologicalComparison() 11747 S.PDiag(!InRange ? diag::warn_out_of_range_compare in CheckTautologicalComparison()
|
| /freebsd-13.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
|