Searched refs:address (Results 76 - 100 of 1856) sorted by relevance

1234567891011>>

/external/google-breakpad/src/common/dwarf/
H A Dline_state_machine.h41 address = 0;
50 uint64 address; member in struct:dwarf2reader::LineStateMachine
/external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/
H A Daddress.pass.cpp13 // pointer address(reference x) const;
14 // const_pointer address(const_reference x) const;
25 assert(a.address(*tp) == tp);
26 assert(a.address(*ctp) == tp);
/external/llvm/include/llvm/Support/
H A DMemoryObject.h33 /// the highest valid address of the region is getExtent() - 1).
44 /// @param Address - The address of the first byte, in the same space as
52 /// block until (address - base + size) bytes have been read
53 /// @param address - address of the byte, in the same space as getBase()
56 virtual const uint8_t *getPointer(uint64_t address, uint64_t size) const = 0;
58 /// Returns true if the address is within the object (i.e. between base and
59 /// base + extent - 1 inclusive). May block until (address - base) bytes have
61 /// @param address - address o
[all...]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowDateIntervalFormat.java16 private static long address; field in class:ShadowDateIntervalFormat
21 address++;
22 INTERVAL_CACHE.put(address, com.ibm.icu.text.DateIntervalFormat.getInstance(skeleton, new Locale(localeName)));
23 return address;
27 public static void destroyDateIntervalFormat(long address) { argument
28 INTERVAL_CACHE.remove(address);
33 public static String formatDateInterval(long address, long fromDate, long toDate) { argument
37 INTERVAL_CACHE.get(address).format(new com.ibm.icu.util.DateInterval(fromDate, toDate), buffer, pos);
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMemoryObject.h21 /// access to 64-bit address spaces.
27 /// getBase - Returns the lowest valid address in the region.
29 /// @result - The lowest valid address.
33 /// contiguous, so the highest valid address of the region
41 /// @param address - The address of the byte, in the same space as getBase().
45 virtual int readByte(uint64_t address, uint8_t* ptr) const = 0;
52 /// @param address - The address of the first byte, in the same space as
61 virtual int readBytes(uint64_t address,
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DMemoryObject.h33 /// the highest valid address of the region is getExtent() - 1).
44 /// @param Address - The address of the first byte, in the same space as
52 /// block until (address - base + size) bytes have been read
53 /// @param address - address of the byte, in the same space as getBase()
56 virtual const uint8_t *getPointer(uint64_t address, uint64_t size) const = 0;
58 /// Returns true if the address is within the object (i.e. between base and
59 /// base + extent - 1 inclusive). May block until (address - base) bytes have
61 /// @param address - address o
[all...]
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Support/
H A DMemoryObject.h33 /// the highest valid address of the region is getExtent() - 1).
44 /// @param Address - The address of the first byte, in the same space as
52 /// block until (address - base + size) bytes have been read
53 /// @param address - address of the byte, in the same space as getBase()
56 virtual const uint8_t *getPointer(uint64_t address, uint64_t size) const = 0;
58 /// Returns true if the address is within the object (i.e. between base and
59 /// base + extent - 1 inclusive). May block until (address - base) bytes have
61 /// @param address - address o
[all...]
/external/libmojo/mojo/edk/system/
H A Dmapping_table.cc30 void* address = mapping->GetBase(); local
31 DCHECK(address_to_mapping_map_.find(address) ==
33 address_to_mapping_map_[address] = mapping.release();
37 MojoResult MappingTable::RemoveMapping(void* address) { argument
38 AddressToMappingMap::iterator it = address_to_mapping_map_.find(address);
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
H A DReferredBy.java13 import gov.nist.javax.sip.address.*;
53 if (address == null)
56 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
59 retval += address.encode();
60 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
91 * CVS: address here. If this is your work then delete this line.
127 * CVS: address here. If this is your work then delete this line.
/external/syslinux/gpxe/src/drivers/nvs/
H A Dspi.c33 * Munge SPI device address into command
36 * @v address Address
37 * @v munge_address Device requires address munging
41 * of the command byte as address bit A8, rather than having a
42 * two-byte address. This function takes care of generating the
46 unsigned int address,
48 return ( command | ( ( ( address >> 8 ) & munge_address ) << 3 ) );
79 * @v address Address from which to read
84 int spi_read ( struct nvs_device *nvs, unsigned int address, argument
88 unsigned int command = spi_command ( SPI_READ, address,
45 spi_command( unsigned int command, unsigned int address, int munge_address ) argument
111 spi_write( struct nvs_device *nvs, unsigned int address, const void *data, size_t len ) argument
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DRouteSelectorTest.java82 Address address = httpAddress();
83 RouteSelector routeSelector = new RouteSelector(address, routeDatabase);
87 assertRoute(routeSelector.next(), address, NO_PROXY, dns.address(0), uriPort);
99 Address address = httpAddress();
100 RouteSelector routeSelector = new RouteSelector(address, routeDatabase);
106 routeSelector = new RouteSelector(address, routeDatabase);
107 assertRoute(routeSelector.next(), address, NO_PROXY, dns.address(0), uriPort);
117 Address address
332 assertRoute(Route route, Address address, Proxy proxy, InetAddress socketAddress, int socketPort) argument
[all...]
/external/deqp/framework/delibs/deutil/
H A DdeSocket.h105 void deSocketAddress_destroy (deSocketAddress* address);
107 deBool deSocketAddress_setFamily (deSocketAddress* address, deSocketFamily family);
108 deSocketFamily deSocketAddress_getFamily (const deSocketAddress* address);
109 deBool deSocketAddress_setType (deSocketAddress* address, deSocketType type);
110 deSocketType deSocketAddress_getType (const deSocketAddress* address);
111 deBool deSocketAddress_setProtocol (deSocketAddress* address, deSocketProtocol protocol);
112 deSocketProtocol deSocketAddress_getProtocol (const deSocketAddress* address);
113 deBool deSocketAddress_setPort (deSocketAddress* address, int port);
114 int deSocketAddress_getPort (const deSocketAddress* address);
115 deBool deSocketAddress_setHost (deSocketAddress* address, cons
[all...]
/external/nist-sip/java/gov/nist/core/net/
H A DDefaultNetworkLayer.java74 public Socket createSocket(InetAddress address, int port) argument
76 return new Socket(address, port);
105 public SSLSocket createSSLSocket(InetAddress address, int port) argument
107 return (SSLSocket) sslSocketFactory.createSocket(address, port);
111 public SSLSocket createSSLSocket(InetAddress address, int port, argument
113 return (SSLSocket) sslSocketFactory.createSocket(address, port,
117 public Socket createSocket(InetAddress address, int port, argument
120 return new Socket(address, port, myAddress, 0);
122 return new Socket(address, port);
127 * address
141 createSocket(InetAddress address, int port, InetAddress myAddress, int myPort) argument
[all...]
/external/syslinux/com32/gpllib/acpi/
H A Dacpi.c101 bool parse_header(uint64_t *address, s_acpi *acpi) { argument
105 get_acpi_description_header((uint8_t *)address, &adh);
116 f->address = address;
123 fa->address = (uint64_t *)f->x_firmware_ctrl;
127 fa->address = (uint64_t *)f->firmware_ctrl;
141 d->address = (uint64_t *)f->x_dsdt;
152 d->address = (uint64_t *)f->dsdt_address;
164 m->address =address;
[all...]
H A Drsdt.c41 /* Let's start for the base address */
42 q = r->address;
51 DEBUG_PRINT(("RSDT table at %p found with %d bytes long with %d items\n",r->address, r->header.length,(r->header.length-ACPI_HEADER_SIZE)/4));
53 uint32_t *start = (uint32_t *)r->address;
55 uint32_t *max = (uint32_t *)r->address;
61 char address[16] = { 0 }; local
62 sprintf(address, "%x", *p);
63 uint32_t *pointed_address = (uint32_t *)strtoul(address, NULL, 16);
H A Dxsdt.c40 /* Let's start for the base address */
41 q = acpi->xsdt.address;
43 /* If address is null return an error */
55 DEBUG_PRINT(("XSDT table found at %p : length=%d\n",x->address,x->header.length));
60 for (p = ((uint64_t *)(x->address + ACPI_HEADER_SIZE));
61 p < ((uint64_t *)(x->address + x->header.length)); p++) {
65 char address[16] = { 0 }; local
66 sprintf(address, "%llx", *p);
67 uint64_t *pointed_address = (uint64_t *)strtoul(address, NULL, 16);
/external/google-breakpad/src/common/
H A Ddwarf_cfi_to_module.cc145 bool DwarfCFIToModule::Entry(size_t offset, uint64 address, uint64 length, argument
156 entry_->address = address;
162 // may not establish any rule for .ra if the return address column
164 // address on entry to the function. So establish an initial .ra
165 // rule citing the return address register.
192 void DwarfCFIToModule::Record(Module::Address address, int reg, argument
205 if (address == entry_->address)
207 // File it under the appropriate address
212 UndefinedRule(uint64 address, int reg) argument
218 SameValueRule(uint64 address, int reg) argument
225 OffsetRule(uint64 address, int reg, int base_register, long offset) argument
233 ValOffsetRule(uint64 address, int reg, int base_register, long offset) argument
241 RegisterRule(uint64 address, int reg, int base_register) argument
249 ExpressionRule(uint64 address, int reg, const string &expression) argument
256 ValExpressionRule(uint64 address, int reg, const string &expression) argument
[all...]
/external/google-breakpad/src/client/windows/unittests/
H A Ddump_analysis.h62 bool HasMemory(ULONG64 address) const {
63 return HasMemory<BYTE>(address, NULL);
66 bool HasMemory(const void* address) const {
67 return HasMemory<BYTE>(address, NULL);
71 bool HasMemory(ULONG64 address, StructureType** structure = NULL) const { argument
73 if (address > 0xFFFFFFFFUL)
76 return HasMemory(reinterpret_cast<void*>(address), structure);
/external/libchrome/base/allocator/
H A Dallocator_shim_default_dispatch_to_glibc.cc16 void* __libc_realloc(void* address, size_t size);
37 void* address,
40 return __libc_realloc(address, size);
50 void GlibcFree(const AllocatorDispatch*, void* address, void* context) { argument
51 __libc_free(address);
55 void* address,
59 return malloc_usable_size(address);
36 GlibcRealloc(const AllocatorDispatch*, void* address, size_t size, void* context) argument
54 GlibcGetSizeEstimate(const AllocatorDispatch*, void* address, void* context) argument
H A Dallocator_shim_default_dispatch_to_linker_wrapped_symbols.cc47 void* address,
50 return __real_realloc(address, size);
60 void RealFree(const AllocatorDispatch*, void* address, void* context) { argument
61 __real_free(address);
69 void* address,
86 return usable_size_function(address);
88 return malloc_usable_size(address);
46 RealRealloc(const AllocatorDispatch*, void* address, size_t size, void* context) argument
68 RealSizeEstimate(const AllocatorDispatch*, void* address, void* context) argument
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPAssertedIdentity.java37 import gov.nist.javax.sip.address.AddressImpl;
57 * @param address address to set
59 public PAssertedIdentity(AddressImpl address) { argument
61 this.address = address;
77 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
80 retval.append(address.encode());
81 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
H A DPCalledPartyID.java37 import gov.nist.javax.sip.address.AddressImpl;
52 * @param address address to set
54 public PCalledPartyID(AddressImpl address) { argument
56 this.address = address;
72 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
75 retval.append(address.encode());
76 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
H A DPProfileKey.java29 import gov.nist.javax.sip.address.AddressImpl;
46 public PProfileKey(AddressImpl address) argument
49 this.address = address;
57 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
60 retval.append(address.encode());
61 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
H A DPath.java36 import gov.nist.javax.sip.address.AddressImpl;
49 * @param address address to set
51 public Path(AddressImpl address) { argument
53 this.address = address;
71 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
74 retval.append(address.encode());
75 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
/external/v8/src/
H A Dexternal-reference-table.h8 #include "src/address-map.h"
23 Address address(uint32_t i) { return refs_[i].address; } function in class:v8::internal::ExternalReferenceTable
34 static const char* ResolveSymbol(void* address);
40 Address address; member in struct:v8::internal::ExternalReferenceTable::ExternalReferenceEntry
49 void Add(Address address, const char* name) { argument
51 ExternalReferenceEntry entry = {address, name, 0};
53 ExternalReferenceEntry entry = {address, name};

Completed in 1861 milliseconds

1234567891011>>