| /openbsd-src/gnu/llvm/compiler-rt/lib/ubsan/ |
| H A D | ubsan_diag.cpp | 288 Range *InRange = upperBound(Min, Ranges, NumRanges); in PrintMemorySnippet() local 291 if (InRange && InRange->getEnd().getMemoryLocation() == P) in PrintMemorySnippet() 292 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet() 293 if (!InRange && P > Loc) in PrintMemorySnippet() 295 if (InRange && InRange->getStart().getMemoryLocation() < P) in PrintMemorySnippet() 297 if (InRange && InRange->getStart().getMemoryLocation() <= P) in PrintMemorySnippet() 308 InRange = 0; in PrintMemorySnippet() 311 if (!InRange || InRange->getEnd().getMemoryLocation() == P) in PrintMemorySnippet() 312 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet() 313 if (!InRange) in PrintMemorySnippet() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | SimpleConstraintManager.cpp | 97 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 D | RangedConstraintManager.cpp | 103 const llvm::APSInt &To, bool InRange) { in assumeSymInclusiveRange() argument 125 if (InRange) in assumeSymInclusiveRange()
|
| /openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SimpleConstraintManager.h | 55 bool InRange) = 0; 76 bool InRange) override;
|
| H A D | SMTConv.h | 533 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 D | SMTConstraintManager.h | 67 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 D | RangedConstraintManager.h | 424 bool InRange) override;
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/ |
| H A D | release.h | 194 if (!InRange) { in processNextPage() 196 InRange = true; in processNextPage() 213 if (InRange) { in closeOpenedRange() 216 InRange = false; in closeOpenedRange() 222 bool InRange = false; variable
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/ |
| H A D | TraceCursorIntelPT.cpp | 37 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 D | DecodedThread.h | 77 bool InRange(uint64_t item_index) const; 117 bool InRange(uint64_t item_index) const;
|
| H A D | DecodedThread.cpp | 33 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
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | ThreadPlanStepRange.cpp | 101 bool ThreadPlanStepRange::InRange() { in InRange() function in ThreadPlanStepRange 448 if (InRange()) { in MischiefManaged() 481 if (!InRange()) { in IsPlanStale()
|
| H A D | ThreadPlanStepOverRange.cpp | 193 if (InRange()) { in ShouldStop()
|
| H A D | ThreadPlanStepInRange.cpp | 204 if (InRange()) { in ShouldStop()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | ThreadPlanStepRange.h | 44 bool InRange();
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | ConstantFold.cpp | 2185 bool InRange = true; in ConstantFoldGetElementPtr() local 2188 InRange &= isIndexInRangeOfArrayType(STy->getNumElements(), CI); in ConstantFoldGetElementPtr() 2194 if (InRange || Unknown) in ConstantFoldGetElementPtr()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/Interp/ |
| H A D | Interp.h | 556 bool InRange(InterpState &S, CodePtr OpPC) { in InRange() function
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 12881 InRange = InRangeFlag, enumerator 12896 if (Value >= PromotedMin) return InRange; in compare() 12897 if (Value <= PromotedMax) return InRange; in compare() 12906 case -1: return InRange; in compare() 13059 bool InRange = Cmp & PromotedRange::InRangeFlag; in CheckTautologicalComparison() local 13060 if (InRange && IsEnumConstOrFromMacro(S, Constant)) in CheckTautologicalComparison() 13065 if (Other->refersToBitField() && InRange && Value == 0 && in CheckTautologicalComparison() 13105 if (!InRange || Other->isKnownToHaveBooleanValue()) { in CheckTautologicalComparison() 13109 S.PDiag(!InRange ? diag::warn_out_of_range_compare in CheckTautologicalComparison()
|