Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_diag.cpp299 if (InRange && InRange->getEnd().getMemoryLocation() == P) in PrintMemorySnippet()
300 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet()
301 if (!InRange && P > Loc) in PrintMemorySnippet()
303 if (InRange && InRange->getStart().getMemoryLocation() < P) in PrintMemorySnippet()
305 if (InRange && InRange->getStart().getMemoryLocation() <= P) in PrintMemorySnippet()
316 InRange = 0; in PrintMemorySnippet()
319 if (!InRange || InRange->getEnd().getMemoryLocation() == P) in PrintMemorySnippet()
320 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet()
321 if (!InRange) in PrintMemorySnippet()
326 if (InRange && InRange->getStart().getMemoryLocation() == P) { in PrintMemorySnippet()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp97 const llvm::APSInt &To, bool InRange) { in assumeInclusiveRangeInternal() argument
107 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRangeInternal()
118 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRangeInternal()
125 bool isFeasible = (IsInRange == InRange); in assumeInclusiveRangeInternal()
H A DRangedConstraintManager.cpp103 const llvm::APSInt &To, bool InRange) { in assumeSymInclusiveRange() argument
125 if (InRange) in assumeSymInclusiveRange()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSimpleConstraintManager.h55 bool InRange) = 0;
76 bool InRange) override;
H A DSMTConv.h533 const llvm::APSInt &From, const llvm::APSInt &To, bool InRange) { in getRangeExpr() argument
547 return getBinExpr(Solver, Ctx, Exp, SymTy, InRange ? BO_EQ : BO_NE, in getRangeExpr()
559 getBinExpr(Solver, Ctx, Exp, SymTy, InRange ? BO_GE : BO_LT, FromExp, in getRangeExpr()
562 InRange ? BO_LE : BO_GT, ToExp, ToTy, in getRangeExpr()
565 return fromBinOp(Solver, LHS, InRange ? BO_LAnd : BO_LOr, RHS, in getRangeExpr()
H A DSMTConstraintManager.h67 bool InRange) override { in REGISTER_TRAIT_WITH_PROGRAMSTATE()
70 State, Sym, SMTConv::getRangeExpr(Solver, Ctx, Sym, From, To, InRange)); in REGISTER_TRAIT_WITH_PROGRAMSTATE()
H A DRangedConstraintManager.h424 bool InRange) override;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceCursorIntelPT.cpp37 if (!m_tsc_range || m_pos < 0 || !m_tsc_range->InRange(m_pos)) { in ClearTimingRangesIfInvalid()
45 !m_nanoseconds_range->InRange(m_pos)) { in ClearTimingRangesIfInvalid()
H A DDecodedThread.h78 bool InRange(uint64_t item_index) const;
118 bool InRange(uint64_t item_index) const;
H A DDecodedThread.cpp33 bool DecodedThread::TSCRange::InRange(uint64_t item_index) const { in InRange() function in DecodedThread::TSCRange
38 bool DecodedThread::NanosecondsRange::InRange(uint64_t item_index) const { in InRange() function in DecodedThread::NanosecondsRange
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Drelease.h355 if (!InRange) { in processNextPage()
357 InRange = true; in processNextPage()
374 if (InRange) { in closeOpenedRange()
377 InRange = false; in closeOpenedRange()
383 bool InRange = false; variable
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepRange.cpp101 bool ThreadPlanStepRange::InRange() { in InRange() function in ThreadPlanStepRange
448 if (InRange()) { in MischiefManaged()
481 if (!InRange()) { in IsPlanStale()
H A DThreadPlanStepOverRange.cpp193 if (InRange()) { in ShouldStop()
H A DThreadPlanStepInRange.cpp204 if (InRange()) { in ShouldStop()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanStepRange.h44 bool InRange();
/freebsd/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/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp1625 bool InRange = true; in ConstantFoldGetElementPtr() local
1628 InRange &= isIndexInRangeOfArrayType(STy->getNumElements(), CI); in ConstantFoldGetElementPtr()
1634 if (InRange || Unknown) in ConstantFoldGetElementPtr()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp14621 InRange = InRangeFlag, enumerator
14636 if (Value >= PromotedMin) return InRange; in compare()
14637 if (Value <= PromotedMax) return InRange; in compare()
14646 case -1: return InRange; in compare()
14799 bool InRange = Cmp & PromotedRange::InRangeFlag; in CheckTautologicalComparison() local
14800 if (InRange && IsEnumConstOrFromMacro(S, Constant)) in CheckTautologicalComparison()
14805 if (Other->refersToBitField() && InRange && Value == 0 && in CheckTautologicalComparison()
14845 if (!InRange || Other->isKnownToHaveBooleanValue()) { in CheckTautologicalComparison()
14849 S.PDiag(!InRange ? diag::warn_out_of_range_compare in CheckTautologicalComparison()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterp.h855 bool InRange(InterpState &S, CodePtr OpPC) { in InRange() function
/freebsd/contrib/googletest/docs/
H A Dgmock_cook_book.md1063 EXPECT_CALL(foo, InRange(Ne(0), _))
1067 says that the first argument of `InRange()` must not be 0, and must be less than