Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/ubsan/
H A Dubsan_diag.cc286 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 DSimpleConstraintManager.cpp97 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 DRangedConstraintManager.cpp76 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 DSimpleConstraintManager.h46 bool InRange) override;
66 bool InRange) = 0;
H A DSMTConv.h493 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 DSMTConstraintManager.h60 bool InRange) override { in assumeSymInclusiveRange() argument
63 State, Sym, SMTConv::getRangeExpr(Solver, Ctx, Sym, From, To, InRange)); in assumeSymInclusiveRange()
H A DRangedConstraintManager.h155 bool InRange) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanStepRange.cpp106 bool ThreadPlanStepRange::InRange() { in InRange() function in ThreadPlanStepRange
436 if (InRange()) { in MischiefManaged()
470 if (!InRange()) { in IsPlanStale()
H A DThreadPlanStepOverRange.cpp191 if (InRange()) { in ShouldStop()
H A DThreadPlanStepInRange.cpp221 if (InRange()) { in ShouldStop()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadPlanStepRange.h45 bool InRange();
/freebsd-12.1/contrib/llvm/lib/Target/Mips/
H A DMicroMipsSizeReduction.cpp328 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 DConstantFold.cpp2278 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 DSemaChecking.cpp10006 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 DCookBook.md835 EXPECT_CALL(foo, InRange(Ne(0), _))
839 says that the first argument of `InRange()` must not be 0, and must be