HomeSort by relevance Sort by last modified time
    Searched defs:address (Results 101 - 125 of 996) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/v8/src/zone/
zone-segment.h 10 // Segments represent chunks of memory: They have starting address
34 Address start() const { return address(sizeof(Segment)); }
35 Address end() const { return address(size_); }
48 // Computes the address of the nth byte in this segment.
49 Address address(size_t n) const { function in class:v8::internal::Segment
50 return reinterpret_cast<Address>(this) + n;
  /external/webrtc/webrtc/base/
testclient.h 43 SocketAddress address() const { return socket_->GetLocalAddress(); } function in class:rtc::TestClient
66 // address that the packet was sent from.
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RouteSelector.java 18 import com.squareup.okhttp.Address;
35 * choice of proxy server, IP address, and TLS mode. Connections may also be
39 private final Address address; field in class:RouteSelector
50 /* State for negotiating the next socket address to use. */
57 public RouteSelector(Address address, RouteDatabase routeDatabase) {
58 this.address = address;
61 resetNextProxy(address.url(), address.getProxy())
191 InetAddress address = socketAddress.getAddress(); local
    [all...]
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/
RouteSelector.java 19 import com.android.okhttp.Address;
36 * choice of proxy server, IP address, and TLS mode. Connections may also be
41 private final Address address; field in class:RouteSelector
52 /* State for negotiating the next socket address to use. */
59 public RouteSelector(Address address, RouteDatabase routeDatabase) {
60 this.address = address;
63 resetNextProxy(address.url(), address.getProxy())
194 InetAddress address = socketAddress.getAddress(); local
    [all...]
  /art/compiler/
cfi_test.h 109 // Find interesting parts of objdump output and prefix the lines with address.
112 std::string address; local
117 // The last 8 characters are the address.
118 address = "0x" + line.substr(line.size() - 8);
133 output->push_back(address + ": " + new_line);
138 // Compare strings by the address prefix.
  /art/compiler/optimizing/
instruction_simplifier_mips.cc 58 // If index is constant the whole address calculation often can be done by load/store
79 // It is beneficial to extract index intermediate address only if there are at least 2 users.
113 HIntermediateArrayAddressIndex* address = local
115 access->GetBlock()->InsertInstructionBefore(address, access);
116 access->ReplaceInput(address, 1);
  /art/compiler/utils/
label.h 57 uintptr_t address() const { function in class:art::ExternalLabel
  /art/libartbase/base/
arena_containers.h 194 pointer address(reference x) const { return &x; } function in class:art::ArenaAllocatorAdapter
195 const_pointer address(const_reference x) const { return &x; } function in class:art::ArenaAllocatorAdapter
scoped_arena_containers.h 178 pointer address(reference x) const { return &x; } function in class:art::ScopedArenaAllocatorAdapter
179 const_pointer address(const_reference x) const { return &x; } function in class:art::ScopedArenaAllocatorAdapter
  /art/openjdkjvmti/
jvmti_allocator.h 110 pointer address(reference x) const { return &x; } function in class:openjdkjvmti::JvmtiAllocator
111 const_pointer address(const_reference x) const { return &x; } function in class:openjdkjvmti::JvmtiAllocator
  /art/runtime/gc/accounting/
bitmap-inl.h 137 uintptr_t* address = &bitmap_begin_[word_index]; local
138 uintptr_t old_word = *address;
140 *address = old_word | word_mask;
142 *address = old_word & ~word_mask;
  /cts/tests/aslr/src/
AslrMallocTest.cpp 48 * performs malloc(size) and prints out the address */
49 static const std::string argPrint = "--print-malloc-address";
69 void GetAddress(size_t allocSize, uintptr_t& address)
102 ASSERT_TRUE(android::base::ParseUint(output.c_str(), &address));
118 uintptr_t address; local
119 GetAddress(size, address);
121 addresses.emplace(address);
  /cts/tests/tests/net/src/android/net/cts/
LocalServerSocketTest.java 30 String address = "com.android.net.LocalServerSocketTest_testLocalServerSocket"; local
31 LocalServerSocket localServerSocket = new LocalServerSocket(address);
38 clientSocket.connect(new LocalSocketAddress(address));
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
SourcePosition.java 24 * line number and original bytecode address.
35 * {@code >= -1;} the bytecode address, or {@code -1} if that
38 private final int address; field in class:SourcePosition
51 * @param address {@code >= -1;} original bytecode address or {@code -1}
56 public SourcePosition(CstUtf8 sourceFile, int address, int line) {
57 if (address < -1) {
58 throw new IllegalArgumentException("address < -1");
66 this.address = address;
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
SourcePosition.java 24 * line number and original bytecode address.
35 * {@code >= -1;} the bytecode address, or {@code -1} if that
38 private final int address; field in class:SourcePosition
51 * @param address {@code >= -1;} original bytecode address or {@code -1}
56 public SourcePosition(CstString sourceFile, int address, int line) {
57 if (address < -1) {
58 throw new IllegalArgumentException("address < -1");
66 this.address = address;
    [all...]
  /dalvik/libdex/
DexDebugInfo.cpp 104 u4 address = 0; local
153 localInReg[reg].startAddress = address;
167 address += readUnsignedLeb128(&stream);
183 emitLocalCbIfLive(cnxt, reg, address,
194 localInReg[reg].startAddress = address;
205 emitLocalCbIfLive (cnxt, reg, address, localInReg, localCb);
224 * and we don't want to mess with the existing start address.
227 localInReg[reg].startAddress = address;
240 address += adjopcode / DBG_LINE_RANGE;
245 done = posCb(cnxt, address, line)
    [all...]
  /external/bcc/src/cc/
bcc_usdt.h 39 uint64_t address; member in struct:bcc_usdt_location
  /external/capstone/
MCInst.h 99 uint64_t address; // address of this insn member in struct:MCInst
  /external/capstone/cstool/
cstool.c 74 printf("Syntax: %s [-d] <arch+mode> <assembly-hexstring> [start-address-in-hex-format]\n", prog);
131 uint64_t address = 0; local
153 address = strtoull(argv[4], &temp, 16);
155 printf("ERROR: invalid address argument, quit!\n");
173 // cstool <arch> <assembly> <address>
175 address = strtoull(argv[3], &temp, 16);
177 printf("ERROR: invalid address argument, quit!\n");
323 count = cs_disasm(handle, assembly, size, address, 0, &insn);
329 printf("%"PRIx64" ", insn[i].address);
  /external/capstone/suite/fuzz/
fuzz_harness.c 159 uint64_t address = 0x1000; local
160 size_t count = cs_disasm(handle, buf_ptr, buf_ptr_size, address, 0, &all_insn);
171 i->address, i->mnemonic, i->op_str,
200 printf("0x%"PRIx64":\n", all_insn[j-1].address + all_insn[j-1].size);
  /external/capstone/tests/
test_arm.c 251 uint64_t address = 0x80001000; local
268 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn);
277 printf("0x%" PRIx64 ":\t%s\t%s\n", insn[j].address, insn[j].mnemonic, insn[j].op_str);
280 printf("0x%" PRIx64 ":\n", insn[j-1].address + insn[j-1].size);
test_arm64.c 195 uint64_t address = 0x2c; local
209 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn);
219 printf("0x%" PRIx64 ":\t%s\t%s\n", insn[j].address, insn[j].mnemonic, insn[j].op_str);
222 printf("0x%" PRIx64 ":\n", insn[j-1].address + insn[j-1].size);
test_mips.c 117 uint64_t address = 0x1000; local
131 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn);
141 printf("0x%" PRIx64 ":\t%s\t%s\n", insn[j].address, insn[j].mnemonic, insn[j].op_str);
144 printf("0x%" PRIx64 ":\n", insn[j-1].address + insn[j-1].size);
test_ppc.c 128 uint64_t address = 0x1000; local
142 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn);
152 printf("0x%" PRIx64 ":\t%s\t%s\n", insn[j].address, insn[j].mnemonic, insn[j].op_str);
155 printf("0x%" PRIx64 ":\n", insn[j-1].address + insn[j-1].size);
test_skipdata.c 94 uint64_t address = 0x1000; local
116 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn);
125 insn[j].address, insn[j].mnemonic, insn[j].op_str);
129 printf("0x%" PRIx64 ":\n", insn[j-1].address + insn[j-1].size);
156 printf("@address: %lu\n", offsetof(cs_insn, address));

Completed in 811 milliseconds

1 2 3 45 6 7 8 91011>>