Home
last modified time | relevance | path

Searched refs:InRange (Results 1 – 17 of 17) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_diag.cpp293 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 DSimpleConstraintManager.cpp96 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 DRangedConstraintManager.cpp97 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 Drelease.h153 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 DSimpleConstraintManager.h45 bool InRange) override;
65 bool InRange) = 0;
H A DSMTConv.h509 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 DSMTConstraintManager.h66 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 DRangedConstraintManager.h333 bool InRange) override;
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepRange.cpp100 bool ThreadPlanStepRange::InRange() { in InRange() function in ThreadPlanStepRange
447 if (InRange()) { in MischiefManaged()
480 if (!InRange()) { in IsPlanStale()
H A DThreadPlanStepOverRange.cpp192 if (InRange()) { in ShouldStop()
H A DThreadPlanStepInRange.cpp203 if (InRange()) { in ShouldStop()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanStepRange.h44 bool InRange();
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMicroMipsSizeReduction.cpp327 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 DConstantFold.cpp2333 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 DInterp.h265 bool InRange(InterpState &S, CodePtr OpPC) { in InRange() function
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp11519 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 DCookBook.md835 EXPECT_CALL(foo, InRange(Ne(0), _))
839 says that the first argument of `InRange()` must not be 0, and must be