HomeSort by relevance Sort by last modified time
    Searched full:address (Results 126 - 150 of 11852) sorted by null

1 2 3 4 56 7 8 91011>>

  /bionic/libc/kernel/arch-mips/asm/
pgtable-32.h 55 #define __pgd_offset(address) pgd_index(address)
56 #define __pud_offset(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
57 #define __pmd_offset(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
59 #define pgd_offset_k(address) pgd_offset(&init_mm, address)
60 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1)
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/
pgtable-32.h 55 #define __pgd_offset(address) pgd_index(address)
56 #define __pud_offset(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
57 #define __pmd_offset(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
59 #define pgd_offset_k(address) pgd_offset(&init_mm, address)
60 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1)
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerARM.cpp 71 void MacroAssemblerARM::load32WithUnalignedHalfWords(BaseIndex address, RegisterID dest)
75 ASSERT(address.scale >= 0 && address.scale <= 3);
76 op2 = m_assembler.lsl(address.index, static_cast<int>(address.scale));
78 if (address.offset >= 0 && address.offset + 0x2 <= 0xff) {
79 m_assembler.add_r(ARMRegisters::S0, address.base, op2);
80 m_assembler.ldrh_u(dest, ARMRegisters::S0, ARMAssembler::getOp2Byte(address.offset));
81 m_assembler.ldrh_u(ARMRegisters::S0, ARMRegisters::S0, ARMAssembler::getOp2Byte(address.offset + 0x2))
    [all...]
MacroAssemblerARMv7.h 143 // may often be a memory location (explictly described using an Address
167 void add32(TrustedImm32 imm, Address address)
169 load32(address, dataTempRegister);
181 store32(dataTempRegister, address);
184 void add32(Address src, RegisterID dest)
190 void add32(TrustedImm32 imm, AbsoluteAddress address)
192 load32(address.m_ptr, dataTempRegister);
204 store32(dataTempRegister, address.m_ptr);
326 void sub32(TrustedImm32 imm, Address address
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
AddressList.java 20 package org.apache.james.mime4j.field.address;
22 import org.apache.james.mime4j.field.address.parser.AddressListParser;
23 import org.apache.james.mime4j.field.address.parser.ParseException;
29 * An immutable, random-access list of Address objects.
35 private ArrayList<Address> addresses;
38 * @param addresses An ArrayList that contains only Address objects.
41 public AddressList(ArrayList<Address> addresses, boolean dontCopy) {
43 this.addresses = (dontCopy ? addresses : new ArrayList<Address>(addresses));
45 this.addresses = new ArrayList<Address>(0);
56 * Gets an address.
    [all...]
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
pgtable-32.h 55 #define __pgd_offset(address) pgd_index(address)
56 #define __pud_offset(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
57 #define __pmd_offset(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
59 #define pgd_offset_k(address) pgd_offset(&init_mm, address)
60 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1)
    [all...]
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
pgtable-32.h 55 #define __pgd_offset(address) pgd_index(address)
56 #define __pud_offset(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
57 #define __pmd_offset(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
59 #define pgd_offset_k(address) pgd_offset(&init_mm, address)
60 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1)
    [all...]
  /bionic/libc/bionic/
dlmalloc.c 23 static void __bionic_heap_usage_error(const char* function, void* address);
35 static void __bionic_heap_usage_error(const char* function, void* address) {
36 __libc_fatal("@@@ ABORTING: invalid address or address of corrupt block %p passed to %s",
37 address, function);
38 // So that we can get a memory dump around the specific address.
39 *((int**) 0xdeadbaad) = (int*) address;
  /external/chromium/chrome/browser/resources/options/
autofill_overlay.css 1 #autofill-edit-address-overlay {
25 #autofill-edit-address-overlay list#full-name-list {
29 #autofill-edit-address-overlay list#full-name-list div.static-text {
33 #autofill-edit-address-overlay list#full-name-list input {
46 #autofill-edit-address-overlay list {
52 #autofill-edit-address-overlay list div.static-text {
61 #autofill-edit-address-overlay list input {
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
GattService.java 277 public void clientConnect(int clientIf, String address, boolean isDirect) {
280 service.clientConnect(clientIf, address, isDirect);
283 public void clientDisconnect(int clientIf, String address) {
286 service.clientDisconnect(clientIf, address);
289 public void refreshDevice(int clientIf, String address) {
292 service.refreshDevice(clientIf, address);
295 public void discoverServices(int clientIf, String address) {
298 service.discoverServices(clientIf, address);
301 public void readCharacteristic(int clientIf, String address, int srvcType,
307 service.readCharacteristic(clientIf, address, srvcType, srvcInstanceId
570 String address = mClientMap.addressByConnId(connId); local
590 String address = mClientMap.addressByConnId(connId); local
627 String address = mClientMap.addressByConnId(connId); local
658 String address = mClientMap.addressByConnId(connId); local
687 String address = mClientMap.addressByConnId(connId); local
720 String address = mClientMap.addressByConnId(connId); local
740 String address = mClientMap.addressByConnId(connId); local
754 String address = mClientMap.addressByConnId(connId); local
773 String address = mClientMap.addressByConnId(connId); local
795 String address = mClientMap.addressByConnId(connId); local
    [all...]
  /external/chromium/net/udp/
udp_socket_libevent.cc 81 int UDPSocketLibevent::GetPeerAddress(IPEndPoint* address) const {
83 DCHECK(address);
93 scoped_ptr<IPEndPoint> address(new IPEndPoint());
94 if (!address->FromSockAddr(addr, addr_len))
96 remote_address_.reset(address.release());
99 *address = *remote_address_;
103 int UDPSocketLibevent::GetLocalAddress(IPEndPoint* address) const {
105 DCHECK(address);
115 scoped_ptr<IPEndPoint> address(new IPEndPoint());
116 if (!address->FromSockAddr(addr, addr_len)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryExt.java 31 import javax.sip.address.Address;
60 * @param address --
61 * address for the header.
64 public ReferredByHeader createReferredByHeader(Address address);
91 * @param address -
92 * Address
97 public PAssertedIdentityHeader createPAssertedIdentityHeader(Address address)
    [all...]
Route.java 31 import gov.nist.javax.sip.address.AddressImpl;
59 /** Default constructor given an address.
61 *@param address -- address of this header.
65 public Route(AddressImpl address) {
67 this.address = address;
73 *@return the hashcode of the encoded address.
76 return this.address.getHostPort().encode().toLowerCase().hashCode();
91 boolean addrFlag = address.getAddressType() == AddressImpl.NAME_ADDR
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
GeocoderTest.java 4 import android.location.Address;
39 Address address = geocoder.getFromLocationName("731 Market St, San Francisco, CA 94103", 1).get(0); local
40 assertTrue(address.hasLatitude());
41 assertTrue(address.hasLongitude());
43 address = geocoder.getFromLocationName("731 Market St, San Francisco, CA 94103", 1).get(0);
44 assertFalse(address.hasLatitude());
45 assertFalse(address.hasLongitude());
51 List<Address> result = geocoder.getFromLocationName("731 Market St, San Francisco, CA 94103", 1);
  /frameworks/opt/net/voip/src/jni/rtp/
util.cpp 28 jniThrowNullPointerException(env, "address");
35 const char *address = env->GetStringUTFChars(jAddress, NULL); local
36 if (!address) {
43 if (inet_pton(AF_INET, address, &(sin->sin_addr)) > 0) {
46 env->ReleaseStringUTFChars(jAddress, address);
51 if (inet_pton(AF_INET6, address, &(sin6->sin6_addr)) > 0) {
54 env->ReleaseStringUTFChars(jAddress, address);
58 env->ReleaseStringUTFChars(jAddress, address);
59 jniThrowException(env, "java/lang/IllegalArgumentException", "address");
  /hardware/samsung_slsi/exynos5/include/
swconverter.h 64 * Address of de-interleaved data[out]
67 * Address of de-interleaved data[out]
70 * Address of interleaved data[in]
85 * Address of interleaved data[out]
88 * Address of de-interleaved data[in]
91 * Address of de-interleaved data[in]
109 * y address of yuv420[out]
112 * y address of nv12t[in]
135 * uv address of yuv420s[out]
138 * uv address of nv12t[in
    [all...]
  /libcore/luni/src/main/java/libcore/io/
NioBufferIterator.java 28 private final long address; field in class:NioBufferIterator
34 NioBufferIterator(long address, int size, boolean swap) {
35 this.address = address;
49 Memory.peekByteArray(address + position, dst, dstOffset, byteCount);
54 byte result = Memory.peekByte(address + position);
60 int result = Memory.peekInt(address + position, swap);
66 Memory.peekIntArray(address + position, dst, dstOffset, intCount, swap);
71 short result = Memory.peekShort(address + position, swap);
  /external/clang/test/SemaOpenCL/
address-spaces.cl 10 ip = gip; // expected-error {{assigning '__global int *' to 'int *' changes address space of pointer}}
11 ip = &li; // expected-error {{assigning '__local int *' to 'int *' changes address space of pointer}}
12 ip = &ci; // expected-error {{assigning '__constant int *' to 'int *' changes address space of pointer}}
  /external/valgrind/main/memcheck/tests/
execve1.stderr.exp-kfail 3 Address 0x........ is not stack'd, malloc'd or (recently) free'd
7 Address 0x........ is not stack'd, malloc'd or (recently) free'd
11 Address 0x........ is not stack'd, malloc'd or (recently) free'd
  /external/clang/test/SemaCXX/
return-stack-addr.cpp 5 return &x; // expected-warning {{address of stack memory}}
10 return x; // expected-warning {{address of stack memory}}
15 return &x[i]; // expected-warning {{address of stack memory}}
20 return &i[x]; // expected-warning {{address of stack memory}}
25 return &x[2]; // expected-warning {{address of stack memory}}
35 return &*&x; // expected-warning {{address of stack memory}}
40 return (&(*(&x))); // expected-warning {{address of stack memory}}
45 return &*(&x+1); // expected-warning {{address of stack memory}}
50 return &*(&x+1); // expected-warning {{address of stack memory}}
55 return &a.x; // expected-warning {{address of stack memory}
    [all...]
  /external/nist-sip/java/javax/sip/header/
HeaderFactory.java 8 import javax.sip.address.Address;
9 import javax.sip.address.URI;
41 ContactHeader createContactHeader(Address address);
79 FromHeader createFromHeader(Address address, String tag)
125 RecordRouteHeader createRecordRouteHeader(Address address);
127 ReferToHeader createReferToHeader(Address address)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
MultipleRecipientInfo.java 42 * Returns the list of {@link org.jivesoftware.smackx.packet.MultipleAddresses.Address}
47 public List<MultipleAddresses.Address> getTOAddresses() {
52 * Returns the list of {@link org.jivesoftware.smackx.packet.MultipleAddresses.Address}
57 public List<MultipleAddresses.Address> getCCAddresses() {
63 * no specific address was provided. When no specific address was provided then the reply
68 * no specific address was provided.
71 List<MultipleAddresses.Address> replyRoom = extension.getAddressesOfType(MultipleAddresses.REPLY_ROOM);
72 return replyRoom.isEmpty() ? null : ((MultipleAddresses.Address) replyRoom.get(0)).getJid();
87 * Returns the address to which all replies are requested to be sent or <tt>null</tt> i
    [all...]
  /frameworks/base/docs/html/training/location/
display-address.jd 1 page.title=Displaying a Location Address
14 <li><a href="#DefineTask">Define the Address Lookup Task</a></li>
47 calculating distance or displaying a map position, in many cases the address of the location is
52 latitude and longitude values. This lesson shows you how to use this address lookup feature.
55 <strong>Note:</strong> Address lookup requires a backend service that is not included in the
67 Define the address lookup task
69 <h2 id="DefineTask">Define the Address Lookup Task</h2>
71 To get an address for a given latitude and longitude, call
78 While your app is getting the address, display an indeterminate activity
81 hierarchy. When you start the address lookup, you set its visibility to "visible"
    [all...]
  /external/qemu/
ioport.c 57 static uint32_t ioport_read(int index, uint32_t address)
64 IOPortReadFunc *func = ioport_read_table[index][address];
67 return func(ioport_opaque[address], address);
70 static void ioport_write(int index, uint32_t address, uint32_t data)
77 IOPortWriteFunc *func = ioport_write_table[index][address];
80 func(ioport_opaque[address], address, data);
83 static uint32_t default_ioport_readb(void *opaque, uint32_t address)
85 LOG_UNUSED_IOPORT("unused inb: port=0x%04"PRIx32"\n", address);
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
socketaddress.h 41 // Records an IP address and port, which are 32 and 16 bit integers,
45 // Creates a nil address.
48 // Creates the address with the given host and port. If use_dns is true,
55 // Creates the address with the given IP and port.
58 // Creates a copy of the given address.
61 // Resets to the nil address.
64 // Determines if this is a nil address (empty hostname, any IP, null port)
70 // Replaces our address with the given one.
73 // Changes the IP of this address to the given one, and clears the hostname.
76 // Changes the hostname of this address to the given one
    [all...]

Completed in 949 milliseconds

1 2 3 4 56 7 8 91011>>