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

1 2 3 4 5 67 8 91011>>

  /external/strace/tests-m32/
nlattr_inet_diag_req_v2.c 42 static const char address[] = "10.11.12.13"; variable
65 if (!inet_pton(AF_INET, address, req->id.idiag_src) ||
66 !inet_pton(AF_INET, address, req->id.idiag_dst))
83 msg_len, address, address);
169 if (!inet_pton(AF_INET, address, &addr))
206 printf("addr=inet_addr(\"%s\")}}", address));
  /external/strace/tests-mx32/
nlattr_inet_diag_req_v2.c 42 static const char address[] = "10.11.12.13"; variable
65 if (!inet_pton(AF_INET, address, req->id.idiag_src) ||
66 !inet_pton(AF_INET, address, req->id.idiag_dst))
83 msg_len, address, address);
169 if (!inet_pton(AF_INET, address, &addr))
206 printf("addr=inet_addr(\"%s\")}}", address));
  /external/swiftshader/third_party/llvm-7.0/llvm/bindings/python/llvm/
object.py 71 print symbol.address # NOT OK. We didn't look up this property before.
225 def address(self): member in class:Section
226 """The address of this section, in long bytes."""
281 getattr(self, 'address')
314 def address(self): member in class:Symbol
315 """The address of this symbol, in long bytes."""
347 getattr(self, 'address')
420 getattr(self, 'address')
  /external/swiftshader/third_party/subzero/src/
IceMemory.h 70 pointer address(reference x) const { function in struct:Ice::sz_allocator
73 const_pointer address(const_reference x) const { function in struct:Ice::sz_allocator
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
disassembler.cc 79 // Sort the symbols in increasing address order.
83 // before extracting the address.
106 // Iterate through symbols in increasing address order and disassemble each
110 llvm::Expected<uint64_t> address = symbol.getAddress(); local
111 CHECK(address);
112 uint64_t start_index = address.get() - section_address;
145 /*Address=*/section_address + index,
148 // If we fail to disassemble, then we must skip past this address.
156 // For branches, try to determine the actual address and emit it as an
  /external/u-boot/arch/x86/cpu/intel_common/
microcode.c 125 ulong address; local
169 address = (ulong)update.data + UCODE_HEADER_LEN;
170 wrmsr(MSR_IA32_UCODE_WRITE, address, 0);
  /external/v8/src/
allocation.h 96 // Generate a random address to be used for hinting allocation calls.
100 // |address| is a hint. |size| and |alignment| must be multiples of
101 // AllocatePageSize(). Returns the address of the allocated memory, with the
104 V8_WARN_UNUSED_RESULT void* AllocatePages(void* address, size_t size,
108 // Frees memory allocated by a call to AllocatePages. |address| and |size| must
111 V8_WARN_UNUSED_RESULT bool FreePages(void* address, const size_t size);
113 // Releases memory that is no longer needed. The range specified by |address|
119 V8_WARN_UNUSED_RESULT bool ReleasePages(void* address, size_t size,
122 // Sets permissions according to |access|. |address| and |size| must be
127 V8_WARN_UNUSED_RESULT bool SetPermissions(void* address, size_t size
175 Address address() const { function in class:v8::internal::VirtualMemory
    [all...]
external-reference-table.h 46 Address address(uint32_t i) { return refs_[i].address; } function in class:v8::internal::ExternalReferenceTable
51 static const char* ResolveSymbol(void* address);
59 STATIC_ASSERT(offsetof(ExternalReferenceEntry, address) == 0);
81 Address address; member in struct:v8::internal::ExternalReferenceTable::ExternalReferenceEntry
84 ExternalReferenceEntry() : address(kNullAddress), name(nullptr) {}
85 ExternalReferenceEntry(Address address, const char* name
    [all...]
external-reference.h 197 // An ExternalReference represents a C++ address used in the generated
254 typedef Address ExternalReferenceRedirector(Address original, Type type);
263 static V8_EXPORT_PRIVATE ExternalReference Create(Address address);
270 static ExternalReference ForDeoptEntry(Address entry);
284 Address address() const { return address_; } function in class:v8::internal::BASE_EMBEDDED
287 explicit ExternalReference(Address address) : address_(address) {
    [all...]
turbo-assembler.cc 78 ExternalReferenceEncoder::Value v = encoder.Encode(reference.address());
101 return static_cast<intptr_t>(reference.address()) - kRootRegisterBias -
108 Address start = reinterpret_cast<Address>(isolate);
109 Address end = isolate->heap()->root_register_addressable_end();
110 Address address = reference.address(); local
111 return start <= address && address < end
    [all...]
  /external/v8/src/objects/
bigint.h 66 Address address = FIELD_ADDR(this, kDigitsOffset + n * kDigitSize); local
67 return *reinterpret_cast<digit_t*>(address);
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
DeviceDescriptor.h 42 String8 address() const { return mAddress; } function in class:android::DeviceDescriptor
43 void setAddress(const String8 &address) { mAddress = address; }
102 // If 'address' is empty and 'codec' is AUDIO_FORMAT_DEFAULT, a device with a non-empty
103 // address may be returned if there is no device with the specified 'type' and empty address.
104 sp<DeviceDescriptor> getDevice(audio_devices_t type, const String8 &address,
166 * DeviceDescriptor with same type and address) and the vector has same size.
190 * @return the first valid address of a list of device, "" if no device with valid address
    [all...]
  /art/compiler/optimizing/
instruction_simplifier_shared.cc 256 // Proceed to extract the base address computation.
261 HIntermediateAddress* address = new (allocator) HIntermediateAddress(array, offset, kNoDexPc); local
262 // TODO: Is it ok to not have this on the intermediate address?
263 // address->SetReferenceTypeInfo(array->GetReferenceTypeInfo());
264 access->GetBlock()->InsertInstructionBefore(address, access);
265 access->ReplaceInput(address, 0);
269 DCHECK(address->GetSideEffects().Includes(SideEffects::DependsOnGC()));
271 // TODO: Code generation for HArrayGet and HArraySet will check whether the input address
286 // If index is constant the whole address calculation often can be done by LDR/STR themselves.
299 // It is beneficial to extract index intermediate address only if there are at least 2 users
330 HIntermediateAddressIndex* address = local
    [all...]
  /art/compiler/utils/
swap_space.h 175 pointer address(reference x) const { return &x; } function in class:art::SwapAllocator
176 const_pointer address(const_reference x) const { return &x; } function in class:art::SwapAllocator
  /art/libartbase/base/
memory_region.h 59 // Load value of type `T` at `offset`. The memory address corresponding
63 T* address = ComputeInternalPointer<T>(offset); local
64 DCHECK(IsWordAligned(address));
65 return *address;
68 // Store `value` (of type `T`) at `offset`. The memory address
73 T* address = ComputeInternalPointer<T>(offset); local
74 DCHECK(IsWordAligned(address));
75 *address = value;
78 // Load value of type `T` at `offset`. The memory address corresponding
93 // Store `value` (of type `T`) at `offset`. The memory address
    [all...]
  /art/runtime/
handle_scope.h 154 uintptr_t address = reinterpret_cast<uintptr_t>(this) + ReferencesOffset(kRuntimePointerSize); local
155 return reinterpret_cast<StackReference<mirror::Object>*>(address);
  /cts/tests/tests/net/src/android/net/rtp/cts/
AudioStreamTest.java 28 private void testRtpStream(InetAddress address) throws Exception {
29 AudioStream stream = new AudioStream(address);
30 assertEquals(stream.getLocalAddress(), address); local
35 stream.associate(address, 1000);
36 assertEquals(stream.getRemoteAddress(), address); local
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenTest.java 39 final String address = "jdoe@example.net"; local
41 Rfc822Token rfc822Token1 = new Rfc822Token(name, address, comment);
43 assertEquals(address, rfc822Token1.getAddress());
46 Rfc822Token rfc822Token2 = new Rfc822Token(null, address, comment);
48 assertEquals(address, rfc822Token2.getAddress());
56 Rfc822Token rfc822Token4 = new Rfc822Token(name, address, null);
58 assertEquals(address, rfc822Token4.getAddress());
65 final String address = "jdoe@example.net"; local
67 Rfc822Token rfc822Token = new Rfc822Token(name, address, comment);
97 final String address = "jdoe@example.net" local
117 String address = "jdoe@example.net"; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
PositionList.java 149 /** {@code >= 0;} address of this entry */
150 private final int address; field in class:PositionList.Entry
158 * @param address {@code >= 0;} address of this entry
161 public Entry (int address, SourcePosition position) {
162 if (address < 0) {
163 throw new IllegalArgumentException("address < 0");
170 this.address = address;
175 * Gets the address
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
PositionList.java 149 /** {@code >= 0;} address of this entry */
150 private final int address; field in class:PositionList.Entry
158 * @param address {@code >= 0;} address of this entry
161 public Entry (int address, SourcePosition position) {
162 if (address < 0) {
163 throw new IllegalArgumentException("address < 0");
170 this.address = address;
175 * Gets the address
    [all...]
  /device/google/contexthub/util/stm32_flash/
flash.c 80 uint32_t address = 0x08000000; local
106 printf(" -a <address> (address to write filename to. default: 0x%08x)\n",
107 address);
131 address = strtol(optarg, NULL, 0);
238 write_filename, address);
251 ret = write_memory(handle, address,
255 ret = write_memory(handle, address,
279 ret = read_memory(handle, address, length, buffer);
285 length, read_filename, address);
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/libfdt/
fdt.h 85 fdt64_t address; member in struct:fdt_reserve_entry
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Scripts/Ds5/
profile.py 31 def get_address_from_string(address):
32 return int(address.strip("S:").strip("N:").strip("EL2:").strip("EL1:"), 16)
83 # Generate the key for the given address
230 # Set the end address of the previous function
274 column_addr = columns.index('Address')
284 address = get_address_from_string(line.split('\t')[column_addr]) variable
286 callee = add_cycles_to_function(functions, func_name, address, cycles)
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/
fdt.h 77 fdt64_t address; member in struct:fdt_reserve_entry
  /external/adhd/cras/src/server/
cras_bt_adapter.c 23 char *address; member in struct:cras_bt_adapter
96 free(adapter->address);
105 adapters->address);
157 return adapter->address;
195 if (strcmp(key, "Address") == 0) {
196 free(adapter->address);
197 adapter->address = strdup(value);
233 if (strcmp(key, "Address") == 0) {
234 free(adapter->address);
235 adapter->address = NULL
    [all...]

Completed in 804 milliseconds

1 2 3 4 5 67 8 91011>>