HomeSort by: relevance | last modified time | path
    Searched refs:InRange (Results 1 - 14 of 14) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.cc 283 Range *InRange = upperBound(Min, Ranges, NumRanges);
286 if (InRange && InRange->getEnd().getMemoryLocation() == P)
287 InRange = upperBound(P, Ranges, NumRanges);
288 if (!InRange && P > Loc)
290 if (InRange && InRange->getStart().getMemoryLocation() < P)
292 if (InRange && InRange->getStart().getMemoryLocation() <= P)
303 InRange = 0
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_diag.cpp 296 Range *InRange = upperBound(Min, Ranges, NumRanges);
299 if (InRange && InRange->getEnd().getMemoryLocation() == P)
300 InRange = upperBound(P, Ranges, NumRanges);
301 if (!InRange && P > Loc)
303 if (InRange && InRange->getStart().getMemoryLocation() < P)
305 if (InRange && InRange->getStart().getMemoryLocation() <= P)
316 InRange = 0
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_diag.cpp 290 Range *InRange = upperBound(Min, Ranges, NumRanges);
293 if (InRange && InRange->getEnd().getMemoryLocation() == P)
294 InRange = upperBound(P, Ranges, NumRanges);
295 if (!InRange && P > Loc)
297 if (InRange && InRange->getStart().getMemoryLocation() < P)
299 if (InRange && InRange->getStart().getMemoryLocation() <= P)
310 InRange = 0
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SimpleConstraintManager.h 45 bool InRange) override;
65 bool InRange) = 0;
SMTConv.h 509 const llvm::APSInt &From, const llvm::APSInt &To, bool InRange) {
523 return getBinExpr(Solver, Ctx, Exp, SymTy, InRange ? BO_EQ : BO_NE,
535 getBinExpr(Solver, Ctx, Exp, SymTy, InRange ? BO_GE : BO_LT, FromExp,
538 InRange ? BO_LE : BO_GT, ToExp, ToTy,
541 return fromBinOp(Solver, LHS, InRange ? BO_LAnd : BO_LOr, RHS,
SMTConstraintManager.h 66 bool InRange) override {
69 State, Sym, SMTConv::getRangeExpr(Solver, Ctx, Sym, From, To, InRange));
RangedConstraintManager.h 330 bool InRange) override;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 96 const llvm::APSInt &To, bool InRange) {
106 return assumeSymInclusiveRange(State, Sym, From, To, InRange);
117 return assumeSymInclusiveRange(State, Sym, From, To, InRange);
124 bool isFeasible = (IsInRange == InRange);
RangedConstraintManager.cpp 95 const llvm::APSInt &To, bool InRange) {
114 if (InRange)
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MicroMipsSizeReduction.cpp 327 static bool InRange(int64_t Value, unsigned short Shift, int LBound,
344 if (!InRange(offset, Entry.Shift(), Entry.LBound(), Entry.HBound()))
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
searching.d 4105 static struct InRange
4126 static assert(isInputRange!InRange);
4128 auto arr1 = InRange([5, 2, 3, 4, 5, 3, 6]);
4129 auto arr2 = InRange([7, 3, 8, 2, 1, 4]);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantFold.cpp 575 // Do not fold bitcast (gep) with inrange index, as this loses
2487 // The combined GEP normally inherits its index inrange attribute from
2549 // If an index is marked inrange, we cannot apply this canonicalization to
2550 // the following index, as that will cause the inrange index to point to
2575 bool InRange = true;
2578 InRange &= isIndexInRangeOfArrayType(STy->getNumElements(), CI);
2584 if (InRange || Unknown)
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 11246 InRange = InRangeFlag,
11261 if (Value >= PromotedMin) return InRange;
11262 if (Value <= PromotedMax) return InRange;
11271 case -1: return InRange;
11424 bool InRange = Cmp & PromotedRange::InRangeFlag;
11425 if (InRange && IsEnumConstOrFromMacro(S, Constant))
11430 if (Other->refersToBitField() && InRange && Value == 0 &&
11470 if (!InRange || Other->isKnownToHaveBooleanValue()) {
11474 S.PDiag(!InRange ? diag::warn_out_of_range_compare
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Interp.h 260 // InRange
264 bool InRange(InterpState &S, CodePtr OpPC) {

Completed in 37 milliseconds