/external/llvm-project/lldb/source/Utility/ |
D | VMRange.cpp | 40 DumpAddressRange(s, offset + GetBaseAddress(), offset + GetEndAddress(), in Dump() 46 lhs.GetEndAddress() == rhs.GetEndAddress(); in operator ==() 58 return lhs.GetEndAddress() < rhs.GetEndAddress(); in operator <()
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | VMRange.h | 65 lldb::addr_t GetEndAddress() const { return GetBaseAddress() + m_byte_size; } in GetEndAddress() function 70 return (GetBaseAddress() <= addr) && (addr < GetEndAddress()); in Contains() 75 lldb::addr_t range_end = range.GetEndAddress(); in Contains() 76 return (GetBaseAddress() <= range_end) && (range_end <= GetEndAddress()); in Contains()
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBLineEntry.i | 53 GetEndAddress () const; 95 …end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object t…
|
D | SBSymbol.i | 52 GetEndAddress (); 86 …end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object t…
|
D | SBFunction.i | 78 GetEndAddress (); 122 …end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object t…
|
/external/llvm-project/lldb/source/API/ |
D | SBLineEntry.cpp | 64 SBAddress SBLineEntry::GetEndAddress() const { in GetEndAddress() function in SBLineEntry 65 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBAddress, SBLineEntry, GetEndAddress); in GetEndAddress() 203 LLDB_REGISTER_METHOD_CONST(lldb::SBAddress, SBLineEntry, GetEndAddress, ()); in RegisterMethods()
|
D | SBSymbol.cpp | 159 SBAddress SBSymbol::GetEndAddress() { in GetEndAddress() function in SBSymbol 160 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBAddress, SBSymbol, GetEndAddress); in GetEndAddress() 229 LLDB_REGISTER_METHOD(lldb::SBAddress, SBSymbol, GetEndAddress, ()); in RegisterMethods()
|
D | SBFunction.cpp | 159 SBAddress SBFunction::GetEndAddress() { in GetEndAddress() function in SBFunction 160 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBAddress, SBFunction, GetEndAddress); in GetEndAddress() 265 LLDB_REGISTER_METHOD(lldb::SBAddress, SBFunction, GetEndAddress, ()); in RegisterMethods()
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_lineentry.py | 10 obj.GetEndAddress()
|
D | sb_symbol.py | 13 obj.GetEndAddress()
|
D | sb_function.py | 13 ea = obj.GetEndAddress()
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBSymbol.h | 46 SBAddress GetEndAddress();
|
D | SBLineEntry.h | 30 lldb::SBAddress GetEndAddress() const;
|
D | SBFunction.h | 45 lldb::SBAddress GetEndAddress();
|
/external/vixl/benchmarks/aarch64/ |
D | bench-mixed-disasm.cc | 72 masm.GetBuffer()->GetEndAddress<const Instruction*>(); in main()
|
/external/vixl/examples/aarch64/ |
D | disasm.cc | 125 const Instruction* end = buffer.GetEndAddress<Instruction*>(); in main()
|
/external/llvm-project/lldb/test/API/functionalities/step_scripted/ |
D | Steps.py | 63 end = le.GetEndAddress().GetLoadAddress(self.target)
|
/external/vixl/test/ |
D | test-code-buffer.cc | 63 VIXL_CHECK(buffer.GetEndAddress<uintptr_t>() == in TestDefaultsHelper()
|
/external/vixl/test/aarch64/ |
D | test-disasm-aarch64.h | 58 Instruction* end = masm.GetBuffer()->GetEndAddress<Instruction*>(); \
|
D | test-assembler-aarch64.h | 288 Instruction* infra_end = buffer->GetEndAddress<Instruction*>(); \
|
/external/vixl/src/ |
D | code-buffer-vixl.h | 89 T GetEndAddress() const { in GetEndAddress() function
|
/external/llvm-project/lldb/examples/python/ |
D | scripted_step.py | 167 end_address = cur_line_entry.GetEndAddress()
|
/external/llvm-project/lldb/unittests/Utility/ |
D | VMRangeTest.cpp | 19 (*os) << "VMRange(" << v.GetBaseAddress() << ", " << v.GetEndAddress() << ")"; in PrintTo()
|
/external/llvm-project/lldb/examples/functions/ |
D | main.cpp | 223 addr_t hi_pc = function.GetEndAddress().GetFileAddress(); in main()
|
/external/llvm-project/lldb/test/API/python_api/thread/ |
D | TestThreadAPI.py | 265 end_addr = lineEntry.GetEndAddress().GetLoadAddress(target)
|