Home | History | Annotate | Download | only in DebugInfo

Lines Matching defs:Range

23   struct Range {
24 explicit Range(uint64_t lo = -1ULL, uint64_t hi = -1ULL,
47 static bool SortedOverlapCheck(const Range &curr_range,
48 const Range &next_range, uint32_t n) {
54 bool contains(const Range &range) const {
55 return LoPC <= range.LoPC && range.HiPC() <= HiPC();
59 uint64_t LoPC; // Start of address range
60 uint32_t Length; // End of address range (not including this address)
73 // Use append range multiple times and then call sort
77 const Range *rangeAtIndex(uint32_t idx) const {
93 typedef std::vector<Range> RangeColl;