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

1 2 34 5 6 7 8 91011>>

  /external/llvm/include/llvm/MC/
MCExternalSymbolizer.h 49 int64_t Value, uint64_t Address, bool IsBranch,
53 uint64_t Address) override;
  /external/llvm/lib/DebugInfo/
DWARFDebugArangeSet.h 32 // The size in bytes of an address on the target architecture. For segmented
33 // addressing, this is the size of the offset portion of the address.
36 // If the target system uses a flat address space, this value is 0.
41 uint64_t Address;
43 uint64_t getEndAddress() const { return Address + Length; }
  /external/chromium_org/v8/src/
globals.h 101 typedef byte* Address;
194 // FUNCTION_ADDR(f) gets the address of a C function f.
196 (reinterpret_cast<v8::internal::Address>(reinterpret_cast<intptr_t>(f)))
199 // FUNCTION_CAST<F>(addr) casts an address into a function
202 F FUNCTION_CAST(Address addr) {
257 const Address kZapValue =
258 reinterpret_cast<Address>(V8_UINT64_C(0xdeadbeedbeadbeef));
259 const Address kHandleZapValue =
260 reinterpret_cast<Address>(V8_UINT64_C(0x1baddead0baddeaf));
261 const Address kGlobalHandleZapValue
    [all...]
heap-profiler.h 48 void ObjectMoveEvent(Address from, Address to, int size);
50 void AllocationEvent(Address addr, int size);
52 void UpdateObjectSizeEvent(Address addr, int size);
vm-state-inl.h 58 ExternalCallbackScope::ExternalCallbackScope(Isolate* isolate, Address callback)
72 Address ExternalCallbackScope::scope_address() {
76 return reinterpret_cast<Address>(this);
handles.cc 71 *reinterpret_cast<Address*>(p) = v8::internal::kHandleZapValue;
77 Address HandleScope::current_level_address(Isolate* isolate) {
78 return reinterpret_cast<Address>(&isolate->handle_scope_data()->level);
82 Address HandleScope::current_next_address(Isolate* isolate) {
83 return reinterpret_cast<Address>(&isolate->handle_scope_data()->next);
87 Address HandleScope::current_limit_address(Isolate* isolate) {
88 return reinterpret_cast<Address>(&isolate->handle_scope_data()->limit);
regexp-macro-assembler.h 76 // matches. If the label is NULL then we should pop a backtrack address off
200 static int CaseInsensitiveCompareUC16(Address byte_offset1,
201 Address byte_offset2,
207 // successful, and updates the stack_top address, or returns 0 if unable
210 static Address GrowStack(Address stack_pointer, Address* stack_top,
220 static Address word_character_map_address() {
221 return const_cast<Address>(&word_character_map[0]);
profile-generator.h 213 void AddCode(Address addr, CodeEntry* entry, unsigned size);
214 void MoveCode(Address from, Address to);
215 CodeEntry* FindEntry(Address addr, Address* start = NULL);
216 int GetSharedId(Address addr);
229 typedef Address Key;
241 void Call(const Address& key, const CodeEntryInfo& value);
244 void DeleteAllCoveredCode(Address start, Address end)
    [all...]
  /external/lldb/include/lldb/Core/
AddressResolverFileLine.h 20 /// @brief This class finds address for source file and line. Optionally, it will look for inlined
39 Address *addr,
  /external/lldb/include/lldb/Target/
ThreadPlanCallFunction.h 25 // Create a thread plan to call a function at the address passed in the "function"
30 const Address &function,
40 const Address &function,
101 // on entry. Any stack address below this should be
168 Address m_function_addr;
169 Address m_start_addr;
184 lldb::addr_t m_stop_address; // This is the address we stopped at. Also set in DoTakedown;
UnwindAssembly.h 43 Address& first_non_prologue_insn) = 0;
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64ExternalSymbolizer.h 32 int64_t Value, uint64_t Address, bool IsBranch,
AArch64ExternalSymbolizer.cpp 49 /// symbolic information at the Address for this instrution. If that returns
53 /// Address + Value is done and if a symbol is found an MCExpr is created with
54 /// that, else an MCExpr with Address + Value is created. If GetOpInfo()
61 MCInst &MI, raw_ostream &CommentStream, int64_t Value, uint64_t Address,
74 !GetOpInfo(DisInfo, Address, 0 /* Offset */, InstSize, 1, &SymbolicOp)) {
77 const char *Name = SymbolLookUp(DisInfo, Address + Value, &ReferenceType,
78 Address, &ReferenceName);
84 SymbolicOp.Value = Address + Value;
100 SymbolLookUp(DisInfo, EncodedInst, &ReferenceType, Address,
103 0xfffffffffffff000LL & (Address + Value))
    [all...]
  /external/llvm/tools/lli/
RemoteTargetExternal.h 41 /// Allocate space in the remote target address space.
45 /// @param[out] Address Remote address of the allocated memory.
50 uint64_t &Address) override;
52 /// Load data into the target address space.
54 /// @param Address Destination address in the target process.
55 /// @param Data Source address in the host process.
60 bool loadData(uint64_t Address, const void *Data, size_t Size) override;
62 /// Load code into the target address space and prepare it for execution
    [all...]
  /external/nist-sip/java/javax/sip/address/
Address.java 1 package javax.sip.address;
6 public interface Address extends Cloneable, Serializable {
  /external/lldb/source/API/
SBAddress.cpp 14 #include "lldb/Core/Address.h"
30 SBAddress::SBAddress (const Address *lldb_object_ptr) :
46 m_opaque_ap(new Address (section.GetSP(), offset))
50 // Create an address by resolving a load address using the supplied target
91 Address &addr = ref();
98 SBAddress::SetAddress (const Address *lldb_object_ptr)
145 // Create the address object if we don't already have one
152 // Check if we weren't were able to resolve a section offset address.
153 // If we weren't it is ok, the load address might be a location on th
    [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntime.h 47 Address &address);
104 Address *
107 std::unique_ptr<Address> m_PrintForDebugger_addr;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Route.java 28 * <li><strong>IP address:</strong> whether connecting directly to an origin
29 * server or a proxy, opening a socket requires an IP address. The DNS
37 final Address address; field in class:Route
42 public Route(Address address, Proxy proxy, InetSocketAddress inetSocketAddress,
44 if (address == null) throw new NullPointerException("address == null");
47 this.address = address;
    [all...]
Address.java 32 * that proxy information. For secure connections the address also includes the
35 * <p>HTTP requests that share the same {@code Address} may also share the same
38 public final class Address {
48 public Address(String uriHost, int uriPort, SocketFactory socketFactory,
86 * address.
94 * address.
118 * Returns this address's explicitly-specified HTTP proxy, or null to
126 if (other instanceof Address) {
127 Address that = (Address) other
    [all...]
  /art/compiler/optimizing/
code_generator_x86_64.cc 73 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pThrowNullPointer), true));
91 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pThrowStackOverflow), true));
111 __ gs()->call(Address::Absolute(
224 Address::Absolute(Thread::StackEndOffset<kX86_64WordSize>(), true));
227 __ testq(CpuRegister(RAX), Address(
232 __ movl(Address(CpuRegister(RSP), kCurrentMethodStackOffset), CpuRegister(RDI));
245 __ movl(reg, Address(CpuRegister(RSP), kCurrentMethodStackOffset));
282 __ movl(destination.AsX86_64().AsCpuRegister(), Address(CpuRegister(RSP), source.GetStackIndex()));
285 __ movq(destination.AsX86_64().AsCpuRegister(), Address(CpuRegister(RSP), source.GetStackIndex()));
289 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), source.AsX86_64().AsCpuRegister())
    [all...]
  /external/chromium_org/v8/src/ia32/
assembler-ia32-inl.h 89 Address RelocInfo::target_address() {
95 Address RelocInfo::target_address_address() {
99 return reinterpret_cast<Address>(pc_);
103 Address RelocInfo::constant_pool_entry_address() {
114 void RelocInfo::set_target_address(Address target,
146 CpuFeatures::FlushICache(pc_, sizeof(Address));
157 Address RelocInfo::target_reference() {
163 Address RelocInfo::target_runtime_entry(Assembler* origin) {
165 return reinterpret_cast<Address>(*reinterpret_cast<int32_t*>(pc_));
169 void RelocInfo::set_target_runtime_entry(Address target
181 Address address = Memory::Address_at(pc_); local
196 Address address = cell->address() + Cell::kValueOffset; local
    [all...]
  /external/chromium_org/v8/src/ic/
stub-cache.h 22 Address address() const { return address_; } function in class:v8::internal::SCTableReference
25 explicit SCTableReference(Address address) : address_(address) {}
27 Address address_;
64 reinterpret_cast<Address>(&first_entry(table)->key));
69 reinterpret_cast<Address>(&first_entry(table)->map));
74 reinterpret_cast<Address>(&first_entry(table)->value));
149 return reinterpret_cast<Entry*>(reinterpret_cast<Address>(table)
    [all...]
  /external/chromium_org/v8/src/x87/
assembler-x87-inl.h 89 Address RelocInfo::target_address() {
95 Address RelocInfo::target_address_address() {
99 return reinterpret_cast<Address>(pc_);
103 Address RelocInfo::constant_pool_entry_address() {
114 void RelocInfo::set_target_address(Address target,
147 CpuFeatures::FlushICache(pc_, sizeof(Address));
158 Address RelocInfo::target_reference() {
164 Address RelocInfo::target_runtime_entry(Assembler* origin) {
166 return reinterpret_cast<Address>(*reinterpret_cast<int32_t*>(pc_));
170 void RelocInfo::set_target_runtime_entry(Address target
182 Address address = Memory::Address_at(pc_); local
197 Address address = cell->address() + Cell::kValueOffset; local
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
RouteSelectorTest.java 18 import com.squareup.okhttp.Address;
87 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null, local
89 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
94 assertConnection(routeSelector.next("GET"), address, NO_PROXY, dns.inetAddresses[0], uriPort,
107 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null, local
109 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns
129 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, local
147 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, local
165 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null, local
183 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null, local
201 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null, local
237 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null, local
256 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null, local
298 Address address = new Address(uriHost, uriPort, socketFactory, sslSocketFactory, local
312 Address address = new Address(uriHost, uriPort, socketFactory, sslSocketFactory, local
326 Address address = new Address(uriHost, uriPort, socketFactory, sslSocketFactory, local
373 Address address = new Address(uriHost, uriPort, socketFactory, sslSocketFactory, local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
ThreadState.cpp 71 return reinterpret_cast<Address>(base) + size;
279 ASSERT(isPageHeaderAddress(reinterpret_cast<Address>(this)));
506 void ThreadState::visitAsanFakeStackForPointer(Visitor* visitor, Address ptr)
509 Address* start = reinterpret_cast<Address*>(m_startOfStack);
510 Address* end = reinterpret_cast<Address*>(m_endOfStack);
511 Address* fakeFrameStart = 0;
512 Address* fakeFrameEnd = 0;
513 Address* maybeFakeFrame = reinterpret_cast<Address*>(ptr)
    [all...]

Completed in 821 milliseconds

1 2 34 5 6 7 8 91011>>