/external/google-breakpad/src/common/windows/ |
D | omap_unittest.cc | 66 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 …]
|
D | omap_internal.h | 66 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;
|
D | omap.cc | 453 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()
|
D | omap.h | 67 const AddressRange& original_range,
|
D | pdb_source_line_writer.cc | 234 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/libmojo/base/android/library_loader/ |
D | library_prefetcher.h | 39 using AddressRange = std::pair<uintptr_t, uintptr_t>; 45 std::vector<AddressRange>* ranges); 48 static bool FindRanges(std::vector<AddressRange>* ranges); 52 static int PercentageOfResidentCode(const std::vector<AddressRange>& ranges);
|
D | library_prefetcher.cc | 93 std::vector<AddressRange>* ranges) { in FilterLibchromeRangesOnlyIfPossible() 111 bool NativeLibraryPrefetcher::FindRanges(std::vector<AddressRange>* ranges) { in FindRanges() 143 std::vector<AddressRange> ranges; in ForkAndPrefetchNativeLibrary() 169 const std::vector<AddressRange>& ranges) { in PercentageOfResidentCode() 197 std::vector<AddressRange> ranges; in PercentageOfResidentNativeLibraryCode()
|
D | library_prefetcher_unittest.cc | 72 std::vector<NativeLibraryPrefetcher::AddressRange> ranges; in TEST() 91 std::vector<NativeLibraryPrefetcher::AddressRange> ranges; in TEST() 105 std::vector<NativeLibraryPrefetcher::AddressRange> ranges = { in TEST() 132 std::vector<NativeLibraryPrefetcher::AddressRange> ranges = { in TEST()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugFrame.cpp | 285 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 __anon75c2f6ba0111::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/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common.cc | 261 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()
|
D | sanitizer_common.h | 657 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/v8/src/ |
D | gdb-jit.cc | 1982 struct AddressRange { struct 1988 typedef AddressRange Key; 1990 static const AddressRange kNoKey; 1992 static int Compare(const AddressRange& a, const AddressRange& b) { in Compare() 2000 const AddressRange SplayTreeConfig::kNoKey = {0, 0}; 2082 static void RemoveJITCodeEntries(CodeMap* map, const AddressRange& range) { in RemoveJITCodeEntries() 2091 AddressRange new_key; in RemoveJITCodeEntries() 2098 AddressRange old_range = cur.key(); in RemoveJITCodeEntries() 2112 static void AddJITCodeEntry(CodeMap* map, const AddressRange& range, in AddJITCodeEntry() 2141 AddressRange range; in AddCode()
|