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

1 2 3 4 5 67 8 91011>>

  /external/opencv3/modules/core/include/opencv2/core/cuda/
emulation.hpp 89 static __device__ __forceinline__ T atomicInc(T* address, T val)
96 count = *address & TAG_MASK;
98 *address = count;
99 } while (*address != count);
103 return ::atomicInc(address, val);
108 static __device__ __forceinline__ T atomicAdd(T* address, T val)
115 count = *address & TAG_MASK;
117 *address = count;
118 } while (*address != count);
122 return ::atomicAdd(address, val)
    [all...]
  /external/iproute2/man/man8/
ifcfg.8 9 .RI "[ " DEVICE " ] [ " command " ] " ADDRESS " [ " PEER " ] "
19 , namely, IP address management. It not only adds
20 addresses, but also carries out Duplicate Address Detection RFC-DHCP,
37 .B ADDRESS
42 - optional peer address for pointpoint interfaces.
  /external/nist-sip/java/gov/nist/javax/sip/header/
From.java 32 import gov.nist.javax.sip.address.AddressImpl;
67 address = to.address;
81 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
84 address.encode(buffer);
85 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
96 * Conveniance accessor function to get the hostPort field from the address.
102 return address.getHostPort();
106 * Get the display name from the address.
110 return address.getDisplayName()
    [all...]
  /libcore/luni/src/test/resources/out_dh/
staff.out 45 ####$employeeId$employeeId^$name$name^$position$position^$salary$salary^$gender$gender^$address$address^$employee$employee^$employeeId$employeeId^$name$name^$position$position^$salary$salary^$gender$gender^$address$address^$employee$employee^$employeeId$employeeId^$name$name^$position$position^$salary$salary^$entElement$entElement^$gender$gender^$address$address^$employee$employee^$employeeId$employeeId^$name$name^$position$position^$salary$salary^$gender$gender^$address$address^$employee$employee^$employeeId$employeeId^$name$name^$position$position^$salary$salary^$gender$gender^$address$address^$employee$employee^$staff$staff^##TEST-STYLE$PIDATA^PItarget$PIdata^##$staff$staff$employee$employ (…)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
rd-dw2-7.d 8 \[0x.*\] Extended opcode 2: set Address to 0x0
9 \[0x.*\] Special opcode .*: advance Address by 0 to 0x0 and Line by 2 to 3
10 \[0x.*\] Special opcode .*: advance Address by 4 to 0x4 and Line by 4 to 7
11 \[0x.*\] Special opcode .*: advance Address by 14 to 0x12 and Line by 8 to 15
13 \[0x.*\] Special opcode .*: advance Address by 0 to 0x8012 and Line by 4 to 19
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
pic-and-nonpic-3b.gd 10 Address Access Initial Purpose
15 Address Access Initial
19 Address Access Initial Sym\.Val\. Type Ndx Name
26 Address Initial Purpose
31 Address Initial Sym.Val. Type Ndx Name
pic-and-nonpic-6-n32.gd 6 Address Access Initial Purpose
11 Address Access Initial
17 Address Access Initial Sym\.Val\. Type Ndx Name
27 Address Initial Purpose
32 Address Initial Sym.Val. Type Ndx Name
pic-and-nonpic-6-o32.gd 6 Address Access Initial Purpose
11 Address Access Initial
17 Address Access Initial Sym\.Val\. Type Ndx Name
27 Address Initial Purpose
32 Address Initial Sym.Val. Type Ndx Name
  /frameworks/base/core/java/android/bluetooth/
IBluetoothGattCallback.aidl 30 in boolean connected, in String address);
33 void onSearchComplete(in String address, in List<BluetoothGattService> services, in int status);
34 void onCharacteristicRead(in String address, in int status, in int handle, in byte[] value);
35 void onCharacteristicWrite(in String address, in int status, in int handle);
36 void onExecuteWrite(in String address, in int status);
37 void onDescriptorRead(in String address, in int status, in int handle, in byte[] value);
38 void onDescriptorWrite(in String address, in int status, in int handle);
39 void onNotify(in String address, in int handle, in byte[] value);
40 void onReadRemoteRssi(in String address, in int rssi, in int status);
44 void onConfigureMTU(in String address, in int mtu, in int status)
    [all...]
  /libcore/dom/src/test/resources/
staff.xml 20 <address domestic="Yes">1230 North Ave. Dallas, Texas 98551</address>
29 <address domestic="Yes" street="Yes">&ent2; Dallas, &ent3;
30 98554</address>
39 <address domestic="Yes" street="No">PO Box 27 Irving, texas 98553</address>
47 <address domestic="Yes" street="Y&ent1;">27 South Road. Dallas, Texas 98556</address>
55 <address street="Yes">1821 Nordic. Road, Irving Texas 98558</address>
    [all...]
  /libcore/luni/src/test/resources/nwf/
staff.xml 20 <address domestic="Yes">1230 North Ave. Dallas, Texas 98551</address>
29 <address domestic="Yes" street="Yes">&ent2; Dallas, &ent3;
30 98554</address>
39 <address domestic="Yes" street="No">PO Box 27 Irving, texas 98553</address>
47 <address domestic="Yes" street="Y&ent1;">27 South Road. Dallas, Texas 98556</address>
55 <address street="Yes">1821 Nordic. Road, Irving Texas 98558</address>
    [all...]
  /libcore/luni/src/test/resources/wf/
staff.xml 20 <address domestic="Yes">1230 North Ave. Dallas, Texas 98551</address>
29 <address domestic="Yes" street="Yes">&ent2; Dallas, &ent3;
30 98554</address>
39 <address domestic="Yes" street="No">PO Box 27 Irving, texas 98553</address>
47 <address domestic="Yes" street="Y&ent1;">27 South Road. Dallas, Texas 98556</address>
55 <address street="Yes">1821 Nordic. Road, Irving Texas 98558</address>
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/util/
atomic.hpp 58 __device__ __forceinline__ int atomicAdd(int* address, int val)
60 return ::atomicAdd(address, val);
63 __device__ __forceinline__ uint atomicAdd(uint* address, uint val)
65 return ::atomicAdd(address, val);
68 __device__ __forceinline__ float atomicAdd(float* address, float val)
71 return ::atomicAdd(address, val);
73 int* address_as_i = (int*) address;
84 __device__ static double atomicAdd(double* address, double val)
87 unsigned long long int* address_as_ull = (unsigned long long int*) address;
96 (void) address;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
DetailsAddressResolver.java 20 import android.location.Address;
36 private Future<Address> mAddressLookupJob;
39 private class AddressLookupJob implements Job<Address> {
47 public Address run(JobContext jc) {
54 public void onAddressAvailable(String address);
66 new FutureListener<Address>() {
68 public void onFutureDone(final Future<Address> future) {
83 private void updateLocation(Address address) {
84 if (address != null)
    [all...]
  /art/compiler/utils/
assembler_thumb_test.cc 497 __ ldr(R3, Address(R4, 24));
498 __ ldrb(R3, Address(R4, 24));
499 __ ldrh(R3, Address(R4, 24));
500 __ ldrsb(R3, Address(R4, 24));
501 __ ldrsh(R3, Address(R4, 24));
503 __ ldr(R3, Address(SP, 24));
506 __ ldr(R8, Address(R4, 24));
507 __ ldrb(R8, Address(R4, 24));
508 __ ldrh(R8, Address(R4, 24));
509 __ ldrsb(R8, Address(R4, 24))
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 24 uint32_t findAddress(uint64_t Address) const;
51 bool containsAddress(uint64_t Address) const {
52 return LowPC <= Address && Address < HighPC();
58 uint64_t LowPC; // Start of address range.
59 uint32_t Length; // End of address range (not including this address).
64 uint64_t Address;
68 RangeEndpoint(uint64_t Address, uint32_t CUOffset, bool IsRangeStart)
69 : Address(Address), CUOffset(CUOffset), IsRangeStart(IsRangeStart) {
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecMessageCache.java 23 * Cache for incoming message. It caches {@link HdmiCecMessage} with source address and opcode
38 // It's like [Source Logical Address, [Opcode, HdmiCecMessage]].
45 * Return a {@link HdmiCecMessage} corresponding to the given {@code address} and
48 * @param address a logical address of source device
50 * @return null if has no {@link HdmiCecMessage} matched to the given {@code address} and {code
53 public HdmiCecMessage getMessage(int address, int opcode) {
54 SparseArray<HdmiCecMessage> messages = mCache.get(address);
63 * Flush all {@link HdmiCecMessage}s sent from the given {@code address}.
65 * @param address a logical address of source devic
    [all...]
  /libcore/ojluni/src/main/java/java/net/
InterfaceAddress.java 29 * This class represents a Network Interface address. In short it's an
30 * IP address, a subnet mask and a broadcast address when the address is
31 * an IPv4 one. An IP address and a network prefix length in the case
32 * of IPv6 address.
38 private InetAddress address = null; field in class:InterfaceAddress
50 * Returns an <code>InetAddress</code> for this address.
52 * @return the <code>InetAddress</code> for this address.
55 return address;
    [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64.h 108 // Operand can be sub classed (e.g: Address).
169 class Address : public Operand {
171 Address(CpuRegister base_in, int32_t disp) {
175 Address(CpuRegister base_in, Offset disp) {
179 Address(CpuRegister base_in, FrameOffset disp) {
184 Address(CpuRegister base_in, MemberOffset disp) {
210 Address(CpuRegister index_in, ScaleFactor scale_in, int32_t disp) {
217 Address(CpuRegister base_in, CpuRegister index_in, ScaleFactor scale_in, int32_t disp) {
233 // If no_rip is true then the Absolute address isn't RIP relative.
234 static Address Absolute(uintptr_t addr, bool no_rip = false)
    [all...]
  /external/clang/test/SemaCXX/
pass-object-size.cpp 23 int (*A)(void *) = &Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_object_size attribute}}
24 int (*B)(void *) = Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_object_size attribute}}
26 int (*C)(void *) = &OvlFoo; //expected-error{{address of overloaded function 'OvlFoo' does not match required type 'int (void *)'}} expected-note@6{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@7{{candidate function has different number of parameters (expected 1 but has 2)}}
27 int (*D)(void *) = OvlFoo; //expected-error{{address of overloaded function 'OvlFoo' does not match required type 'int (void *)'}} expected-note@6{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@7{{candidate function has different number of parameters (expected 1 but has 2)}}
29 int (*E)(void *) = &Statics::Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_object_size attribute}}
30 int (*F)(void *) = &Statics::OvlFoo; //expected-error{{address of overloaded function 'OvlFoo' does not match required type 'int (void *)'}} expected-note@11{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@13{{candidate function has type mismatch at 1st parameter (expected 'void *' but has 'double *')}}
32 int (*G)(void *) = &Members::Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_object_size attribute}
    [all...]
  /external/nist-sip/java/gov/nist/core/
Host.java 58 * Determines whether or not we should tolerate and strip address scope
59 * zones from IPv6 addresses. Address scope zones are sometimes returned
76 /** address field
92 /** Constructor given host name or IP address.
156 /** get the Address field
164 * Convenience function to get the raw IP destination address
194 /** Set the IP Address.
195 *@param address is the address string to set.
197 public void setHostAddress(String address) {
    [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/avahi/avahi-common/
address.h 23 /** \file address.h Definitions and functions to manipulate IP addresses. */
50 /** Maximum size of an address in string form */
59 /** An IPv4 address */
61 uint32_t address; /**< Address data in network byte order. */ member in struct:AvahiIPv4Address
64 /** An IPv6 address */
66 uint8_t address[16]; /**< Address data */ member in struct:AvahiIPv6Address
69 /** Protocol (address family) independent address structure *
    [all...]
  /external/avahi/avahi-sharp/
AddressResolver.cs 30 ResolverEvent revent, IntPtr address,
38 private IPAddress address; field in class:Avahi.HostAddressArgs
45 public IPAddress Address
47 get { return address; }
50 public HostAddressArgs (string host, IPAddress address)
53 this.address = address;
63 private IPAddress address; field in class:Avahi.AddressResolver
75 IntPtr address, LookupFlags flags,
106 public IPAddress Address
    [all...]
  /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
35 final Address address; field in class:Route
39 public Route(Address address, Proxy proxy, InetSocketAddress inetSocketAddress) {
40 if (address == null) {
41 throw new NullPointerException("address == null");
49 this.address = address;
    [all...]

Completed in 940 milliseconds

1 2 3 4 5 67 8 91011>>