Home
last modified time | relevance | path

Searched refs:AddressRange (Results 1 – 13 of 13) sorted by relevance

/external/google-breakpad/src/common/windows/
Domap_unittest.cc66 std::ostream& operator<<(std::ostream& os, const AddressRange& ar) { in operator <<()
99 const AddressRange B(100, 15);
100 const AddressRange C(B.end(), 10);
101 const AddressRange D(C.end(), 25);
102 const AddressRange E(D.end(), 10);
103 const AddressRange F(E.end(), 40);
104 const AddressRange G(F.end(), 3);
105 const AddressRange H(G.end(), 7);
108 const AddressRange Bt(100, 15);
109 const AddressRange Dt(Bt.end(), 20); // D is shortened.
[all …]
Domap_internal.h66 struct AddressRange { struct
70 AddressRange() : rva(0), length(0) { } in AddressRange() function
71 AddressRange(DWORD rva, DWORD length) : rva(rva), length(length) { } in AddressRange() function
78 int Compare(const AddressRange& rhs) const; argument
79 bool operator<(const AddressRange& rhs) const { return Compare(rhs) == -1; }
80 bool operator>(const AddressRange& rhs) const { return Compare(rhs) == 1; }
83 bool operator==(const AddressRange& rhs) const {
86 bool operator!=(const AddressRange& rhs) const { return !((*this) == rhs); }
89 typedef std::vector<AddressRange> AddressRangeVector;
Domap.cc453 void ClipMappedRangeOriginal(const AddressRange& clip_range, in ClipMappedRangeOriginal()
515 int AddressRange::Compare(const AddressRange& rhs) const { in Compare()
582 const AddressRange& original_range, in MapAddressRange()
598 AddressRange query_range(original_range); in MapAddressRange()
650 mapped_ranges->push_back(AddressRange(temp_map[0].rva_transformed, 0)); in MapAddressRange()
653 mapped_ranges->push_back(AddressRange(temp_map[i].rva_transformed, 0)); in MapAddressRange()
676 AddressRange(rva_begin, rva_cur_content - rva_begin)); in MapAddressRange()
688 AddressRange(rva_begin, rva_cur_content - rva_begin)); in MapAddressRange()
Domap.h67 const AddressRange& original_range,
Dpdb_source_line_writer.cc234 MapAddressRange(image_map_, AddressRange(rva, length), &ranges); in PrintLines()
278 MapAddressRange(image_map_, AddressRange(rva, static_cast<DWORD>(length)), in PrintFunction()
590 MapAddressRange(image_map_, AddressRange(rva, prolog_size), in PrintFrameDataUsingPDB()
597 AddressRange(rva + prolog_size, in PrintFrameDataUsingPDB()
820 MapAddressRange(image_map_, AddressRange(rva, 1), &ranges); in PrintCodePublicSymbol()
/external/v8/src/wasm/
Dwasm-code-manager.h35 struct AddressRange { struct
39 AddressRange(Address s, Address e) : start(s), end(e) { in AddressRange() argument
43 AddressRange() : AddressRange(kNullAddress, kNullAddress) {} in AddressRange() function
57 explicit DisjointAllocationPool(AddressRange range) : ranges_({range}) {} in DisjointAllocationPool() argument
65 void Merge(AddressRange);
69 AddressRange Allocate(size_t size);
72 const std::list<AddressRange>& ranges() const { return ranges_; } in ranges()
75 std::list<AddressRange> ranges_;
Dwasm-code-manager.cc47 void DisjointAllocationPool::Merge(AddressRange range) { in Merge()
84 AddressRange DisjointAllocationPool::Allocate(size_t size) { in Allocate()
88 AddressRange ret{it->start, it->start + size}; in Allocate()
645 AddressRange mem = free_code_space_.Allocate(size); in AllocateForCode()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugFrame.cpp285 uint64_t InitialLocation, uint64_t AddressRange, in FDE() argument
288 InitialLocation(InitialLocation), AddressRange(AddressRange), in FDE()
301 (uint32_t)InitialLocation + (uint32_t)AddressRange); in dumpHeader()
312 uint64_t AddressRange; member in __anon0d7d66dd0111::FDE
626 uint64_t AddressRange = 0; in parse() local
636 AddressRange = readPointer(Data, Offset, in parse()
656 AddressRange = Data.getAddress(&Offset); in parse()
660 InitialLocation, AddressRange, in parse()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugFrame.h226 uint64_t InitialLocation, uint64_t AddressRange, CIE *Cie, in FDE() argument
232 AddressRange(AddressRange), LinkedCIE(Cie), LSDAAddress(LSDAAddress) {} in FDE()
238 uint64_t getAddressRange() const { return AddressRange; } in getAddressRange()
250 const uint64_t AddressRange; variable
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.cc261 AddressRange *r = ranges_.front(); in clear()
268 void *mem = InternalAlloc(sizeof(AddressRange)); in addAddressRange()
269 AddressRange *r = new(mem) AddressRange(beg, end, executable); in addAddressRange()
274 for (const AddressRange &r : ranges()) { in containsAddress()
Dsanitizer_common.h657 struct AddressRange { struct
658 AddressRange *next; argument
663 AddressRange(uptr beg, uptr end, bool executable) in AddressRange() argument
667 const IntrusiveList<AddressRange> &ranges() const { return ranges_; } in ranges()
672 IntrusiveList<AddressRange> ranges_;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugFrame.cpp320 (uint32_t)InitialLocation + (uint32_t)AddressRange); in dump()
469 uint64_t AddressRange = 0; in parse() local
486 AddressRange = *Val; in parse()
509 AddressRange = Data.getAddress(&Offset); in parse()
513 InitialLocation, AddressRange, in parse()
/external/v8/src/
Dgdb-jit.cc1937 struct AddressRange { struct
1943 typedef AddressRange Key;
1945 static const AddressRange kNoKey;
1947 static int Compare(const AddressRange& a, const AddressRange& b) { in Compare()
1955 const AddressRange SplayTreeConfig::kNoKey = {0, 0};
2037 static void RemoveJITCodeEntries(CodeMap* map, const AddressRange& range) { in RemoveJITCodeEntries()
2046 AddressRange new_key; in RemoveJITCodeEntries()
2053 AddressRange old_range = cur.key(); in RemoveJITCodeEntries()
2067 static void AddJITCodeEntry(CodeMap* map, const AddressRange& range, in AddJITCodeEntry()
2096 AddressRange range; in AddCode()