HomeSort by: relevance | last modified time | path
    Searched defs:InRange (Results 1 - 6 of 6) 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/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/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

Completed in 32 milliseconds