Home
last modified time | relevance | path

Searched refs:AddressRange (Results 1 – 12 of 12) 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/libmojo/base/android/library_loader/
Dlibrary_prefetcher.h39 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);
Dlibrary_prefetcher.cc93 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()
Dlibrary_prefetcher_unittest.cc72 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/
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 __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/
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/v8/src/
Dgdb-jit.cc1982 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()