HomeSort by relevance Sort by last modified time
    Searched refs:Address (Results 201 - 225 of 674) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.cpp 19 // | Function Entry Address |
41 // | Function Entry Address |
43 // | Exception Data Entry Address |
47 // first resolve the exception data entry address. This structure
96 static std::string formatSymbol(StringRef Name, uint64_t Address,
105 OS << format("+0x%X (0x%" PRIX64 ")", Offset, Address);
107 OS << format("(0x%" PRIX64 ")", Address);
109 OS << format("0x%" PRIX64, Address);
189 uint64_t Address;
192 if (std::error_code EC = Section.getAddress(Address))
    [all...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 108 cl::opt<bool> NumericSort("numeric-sort", cl::desc("Sort symbols by address"));
122 cl::desc("Show symbol size instead of address"));
163 uint64_t Address;
173 if (A.Address < B.Address)
175 else if (A.Address == B.Address && A.Name < B.Name)
177 else if (A.Address == B.Address && A.Name == B.Name && A.Size < B.Size)
182 if (A.Address > B.Address
    [all...]
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.cpp 35 unsigned RegNo, uint64_t Address,
39 uint64_t Address,
42 uint64_t Address,
45 uint64_t Address,
48 uint64_t Address,
51 uint64_t Address,
54 uint64_t Address,
57 unsigned RegNo, uint64_t Address,
60 uint64_t Address,
63 unsigned RegNo, uint64_t Address,
    [all...]
  /art/compiler/utils/arm/
assembler_arm.h 183 class Address {
197 Address(Register rn, int32_t offset = 0, Mode am = Offset) : rn_(rn), rm_(R0),
202 Address(Register rn, Register rm, Mode am = Offset) : rn_(rn), rm_(rm), offset_(0),
207 Address(Register rn, Register rm, Shift shift, uint32_t count, Mode am = Offset) :
214 explicit Address(int32_t offset) :
420 virtual void ldr(Register rd, const Address& ad, Condition cond = AL) = 0;
421 virtual void str(Register rd, const Address& ad, Condition cond = AL) = 0;
423 virtual void ldrb(Register rd, const Address& ad, Condition cond = AL) = 0;
424 virtual void strb(Register rd, const Address& ad, Condition cond = AL) = 0;
426 virtual void ldrh(Register rd, const Address& ad, Condition cond = AL) = 0
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
data_model_wrapper.h 36 class Address;
63 // default implementation assumes this is an address. Both params are required
122 // A DataModelWrapper specifically for shipping address profiles.
155 explicit WalletAddressWrapper(const wallet::Address* address);
166 const wallet::Address* address_;
228 const ::i18n::addressinput::AddressData* address);
  /external/chromium_org/v8/src/
zone.h 104 // the bytes. Returns the address of the newly allocated chunk of
107 Address NewExpand(int size);
119 Address position_;
120 Address limit_;
unique.h 26 // the address of the object, which is used as the hashcode and the basis for
28 // and hashing use the old address of the object, without dereferencing it.
49 raw_address_ = reinterpret_cast<Address>(*handle);
50 DCHECK_NE(raw_address_, NULL); // Non-null should imply non-zero address.
56 Unique(Address raw_address, Handle<T> handle)
96 return raw_address_ == reinterpret_cast<Address>(global);
113 return Unique<T>(reinterpret_cast<Address>(NULL), handle);
117 return Unique<T>(reinterpret_cast<Address>(*handle), handle);
125 Address raw_address_;
  /external/lldb/include/lldb/Breakpoint/
Breakpoint.h 54 /// address. Adding a location at an already taken address will just return the location
55 /// already at that address. Locations can be looked up by ID, or by address.
254 /// The Address specifying the new location.
257 /// already was a location at this Address.
262 AddLocation (const Address &addr,
266 /// Find a breakpoint location by Address.
269 /// The Address specifying the location.
272 /// in the shared pointer will be NULL if there is no location at that address
    [all...]
  /external/lldb/include/lldb/Expression/
ClangFunction.h 20 #include "lldb/Core/Address.h"
61 /// and its address returned in that variable.
108 /// The address of the function to call.
116 const Address& function_address,
145 /// The address of the structure to write the arguments into. May
184 /// The address of the structure to write the arguments into. May
199 /// Insert an argument struct with a non-default function address and
207 /// The address of the structure to write the arguments into. May
212 /// The address of the function to call.
225 Address function_address,
    [all...]
  /external/lldb/include/lldb/Symbol/
SymbolContext.h 17 #include "lldb/Core/Address.h"
34 /// @li Looking up a load address.
115 /// Copies the address value from another SymbolContext object \a
156 /// that will be output. Else just the address at which the target
163 /// The resolved section offset address.
168 const Address &so_addr,
174 /// Get the address range contained within a symbol context.
176 /// Address range priority is as follows:
177 /// - line_entry address range if line_entry is valid and eSymbolContextLineEntry is set in \a scope
178 /// - block address range if block is not NULL and eSymbolContextBlock is set in \a scop
    [all...]
Symbol.h 74 // Access the address value. Do NOT hand out the AddressRange as an
75 // object as the byte size of the address range may not be filled in
78 Address &
85 // Access the address value. Do NOT hand out the AddressRange as an
86 // object as the byte size of the address range may not be filled in
89 const Address &
242 // SetValue (Address &value)
311 AddressRange m_addr_range; // Contains the value, or the section offset address when the value is an address in a section, and the size (if any)
  /external/lldb/source/Breakpoint/
BreakpointResolverFileLine.cpp 55 Address *addr,
169 Address line_start = sc.line_entry.range.GetBaseAddress();
180 Address prologue_addr(sc.function->GetAddressRange().GetBaseAddress());
208 log->Printf ("Breakpoint at file address 0x%" PRIx64 " for %s:%d didn't pass the filter.\n",
217 log->Printf ("error: Unable to set breakpoint at file address 0x%" PRIx64 " for %s:%d\n",
  /external/lldb/source/Plugins/ObjectFile/Mach-O/
ObjectFileMachO.h 15 #include "lldb/Core/Address.h"
134 virtual lldb_private::Address
137 virtual lldb_private::Address
196 lldb_private::Address m_entry_point_address;
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.h 48 // program opcodes that alter the address register first multiply their
94 return LHS.Address < RHS.Address;
99 uint64_t Address;
123 // A boolean indicating that the current address is that of the
127 // A boolean indicating that the current address is one (of possibly
131 // A boolean indicating that the current address is one (of possibly
139 // guaranteed to be in the order of ascending instruction address.
141 // Sequence describes instructions at address range [LowPC, HighPC)
173 // Returns the index of the row with file/line info for a given address,
    [all...]
DWARFUnit.cpp 300 // First, check if CU DIE describes address ranges for the unit.
308 // in order to produce a compile unit level set of address ranges that
316 // Collect address ranges from DIEs in .dwo if necessary.
330 DWARFUnit::getSubprogramForAddress(uint64_t Address) {
334 DIE.addressRangeContainsAddress(this, Address)) {
342 DWARFUnit::getInlinedChainForAddress(uint64_t Address) {
343 // First, find a subprogram that contains the given address (the root
347 getSubprogramForAddress(Address);
354 SubprogramDIE = DWO->getUnit()->getSubprogramForAddress(Address);
363 return SubprogramDIE->getInlinedChainForAddress(ChainCU, Address);
    [all...]
DWARFDebugInfoEntry.h 122 const uint64_t Address) const;
137 /// Get inlined chain for a given address, rooted at the current DIE.
138 /// Returns empty chain if address is not contained in address range
141 getInlinedChainForAddress(const DWARFUnit *U, const uint64_t Address) const;
146 /// in some concrete inlined instance tree. Address range for each DIE
147 /// (except the last DIE) in this chain is contained in address
DWARFUnit.h 129 /// getInlinedChainForAddress - fetches inlined chain for a given address.
130 /// Returns empty chain if there is no subprogram containing address. The
132 DWARFDebugInfoEntryInlinedChain getInlinedChainForAddress(uint64_t Address);
155 /// getSubprogramForAddress - Returns subprogram DIE with address range
156 /// encompassing the provided address. The pointer is alive as long as parsed
158 const DWARFDebugInfoEntryMinimal *getSubprogramForAddress(uint64_t Address);
  /external/chromium_org/net/base/
net_util_win.cc 112 // IPv6 address which has the shortest lifetime.
136 for (IP_ADAPTER_UNICAST_ADDRESS* address = adapter->FirstUnicastAddress;
137 address; address = address->Next) {
138 int family = address->Address.lpSockaddr->sa_family;
141 if (endpoint.FromSockAddr(address->Address.lpSockaddr,
142 address->Address.iSockaddrLength))
    [all...]
  /external/llvm/include/llvm/Object/
RelocVisitor.h 223 uint64_t Address;
224 R.getOffset(Address);
225 return RelocToApply(Value + Addend - Address, 4);
239 uint64_t Address;
240 R.getOffset(Address);
241 return RelocToApply(Value + Addend - Address, 4);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
glx_getproc.c 41 __GLXextFuncPtr Address;
184 * Return address of named glX function, or NULL if not found.
192 return GLX_functions[i].Address;
  /external/clang/include/clang/Driver/
SanitizerArgs.h 38 NeedsAsanRt = Address,
46 NeedsUnwindTables = Address | Thread | Memory | DataFlow
105 /// "-fsanitize=thread,vptr -fsanitize=address" with mask \c NeedsUbsanRt
113 /// "-fsanitize=address,alignment" with mask \c NeedsUbsanRt would produce
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextLLDB.h 150 // Get the contents of a general purpose (address-size) register for this frame
180 lldb_private::Address m_start_pc;
181 lldb_private::Address m_current_pc;
188 // On architectures where the return address on the stack points
191 // have an offset pointing into the next function's address range.
192 // m_current_pc has the actual address of the "current" pc.
  /external/lldb/source/Symbol/
UnwindTable.cpp 72 UnwindTable::GetFuncUnwindersContainingAddress (const Address& addr, SymbolContext &sc)
115 UnwindTable::GetUncachedFuncUnwindersContainingAddress (const Address& addr, SymbolContext &sc)
  /external/llvm/test/MC/ARM/
elf-movt.s 25 @ OBJ-NEXT: Address: 0x0
44 @ OBJ-NEXT: Address: 0x0
  /external/llvm/test/MC/PowerPC/
ppc-llong.s 19 # CHECK-NEXT: Address: 0x0

Completed in 1730 milliseconds

1 2 3 4 5 6 7 891011>>