Home | History | Annotate | Download | only in DebugInfo

Lines Matching defs:Range

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