Searched defs:AddressRange (Results 1 - 3 of 3) sorted by relevance

/external/google-breakpad/src/common/windows/
H A Domap_internal.h66 struct AddressRange { struct in namespace:google_breakpad
70 AddressRange() : rva(0), length(0) { } function in struct:google_breakpad::AddressRange
71 AddressRange(DWORD rva, DWORD length) : rva(rva), length(length) { } function in struct:google_breakpad::AddressRange
78 int Compare(const AddressRange& rhs) const;
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;
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp285 uint64_t InitialLocation, uint64_t AddressRange,
288 InitialLocation(InitialLocation), AddressRange(AddressRange),
301 (uint32_t)InitialLocation + (uint32_t)AddressRange);
312 uint64_t AddressRange; member in class:__anon12662::FDE
626 uint64_t AddressRange = 0;
636 AddressRange = readPointer(Data, Offset,
656 AddressRange = Data.getAddress(&Offset);
660 InitialLocation, AddressRange,
284 FDE(uint64_t Offset, uint64_t Length, int64_t LinkedCIEOffset, uint64_t InitialLocation, uint64_t AddressRange, CIE *Cie) argument
/external/v8/src/
H A Dgdb-jit.cc1982 struct AddressRange { struct in namespace:v8::internal
1988 typedef AddressRange Key;
1990 static const AddressRange kNoKey;
1992 static int Compare(const AddressRange& a, const AddressRange& b) {
2000 const AddressRange SplayTreeConfig::kNoKey = {0, 0};
2082 static void RemoveJITCodeEntries(CodeMap* map, const AddressRange& range) {
2091 AddressRange new_key;
2098 AddressRange old_range = cur.key();
2112 static void AddJITCodeEntry(CodeMap* map, const AddressRange
[all...]

Completed in 185 milliseconds