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

  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.cc 226 /// Find the earliest-starting range in Ranges which ends after Loc.
227 static Range *upperBound(MemoryLocation Loc, Range *Ranges,
231 if (Ranges[I].getEnd().getMemoryLocation() > Loc &&
234 Ranges[I].getStart().getMemoryLocation()))
235 Best = &Ranges[I];
250 Range *Ranges, unsigned NumRanges,
258 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min);
259 Max = __sanitizer::Max(Ranges[I].getEnd().getMemoryLocation(), Max);
283 Range *InRange = upperBound(Min, Ranges, NumRanges);
287 InRange = upperBound(P, Ranges, NumRanges)
    [all...]
ubsan_diag.h 188 /// The ranges which have been added to this diagnostic so far.
189 Range Ranges[MaxRanges];
200 Ranges[NumRanges++] = A;

Completed in 67 milliseconds