Home | History | Annotate | Download | only in ubsan

Lines Matching refs:Ranges

144 /// Find the earliest-starting range in Ranges which ends after Loc.
145 static Range *upperBound(MemoryLocation Loc, Range *Ranges,
149 if (Ranges[I].getEnd().getMemoryLocation() > Loc &&
152 Ranges[I].getStart().getMemoryLocation()))
153 Best = &Ranges[I];
160 Range *Ranges, unsigned NumRanges,
168 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min);
169 Max = __sanitizer::Max(Ranges[I].getEnd().getMemoryLocation(), Max);
187 Range *InRange = upperBound(Min, Ranges, NumRanges);
191 InRange = upperBound(P, Ranges, NumRanges);
203 // Go over the line again, and print names for the ranges.
208 InRange = upperBound(P, Ranges, NumRanges);
261 renderMemorySnippet(Decor, Loc.getMemoryLocation(), Ranges,