HomeSort by relevance Sort by last modified time
    Searched refs:address (Results 176 - 200 of 1915) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/opencv/cv/src/
cvoptflowhs.cpp 98 int i, j, k, address; local
237 address = 0;
260 II[address].xx = GradX * GradX;
261 II[address].xy = GradX * GradY;
262 II[address].yy = GradY * GradY;
263 II[address].xt = GradX * GradT;
264 II[address].yt = GradY * GradT;
266 II[address].alpha = 1 / (Ilambda + II[address].xx + II[address].yy)
    [all...]
  /frameworks/base/core/java/android/net/
VpnService.java 54 * conflict with each other. The system takes several actions to address
299 * Private method to validate address and prefixLength.
301 private void check(InetAddress address, int prefixLength) {
302 if (address.isLoopbackAddress()) {
303 throw new IllegalArgumentException("Bad address");
305 if (address instanceof Inet4Address) {
309 } else if (address instanceof Inet6Address) {
319 * Add a network address to the VPN interface. Both IPv4 and IPv6
320 * addresses are supported. At least one address must be set before
323 * @throws IllegalArgumentException if the address is invalid
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Memory.java 153 public static native byte peekByte(int address);
154 public static native int peekInt(int address, boolean swap);
155 public static native long peekLong(int address, boolean swap);
156 public static native short peekShort(int address, boolean swap);
158 public static native void peekByteArray(int address, byte[] dst, int dstOffset, int byteCount);
159 public static native void peekCharArray(int address, char[] dst, int dstOffset, int charCount, boolean swap);
160 public static native void peekDoubleArray(int address, double[] dst, int dstOffset, int doubleCount, boolean swap);
161 public static native void peekFloatArray(int address, float[] dst, int dstOffset, int floatCount, boolean swap);
162 public static native void peekIntArray(int address, int[] dst, int dstOffset, int intCount, boolean swap);
163 public static native void peekLongArray(int address, long[] dst, int dstOffset, int longCount, boolean swap)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Contact.java 38 import gov.nist.javax.sip.address.AddressImpl;
109 if (address.getAddressType() == AddressImpl.NAME_ADDR) {
110 address.encode(buffer);
112 // Encoding in canonical form must have <> around address.
114 address.encode(buffer);
140 /** get the address field.
141 * @return Address
143 public javax.sip.address.Address getAddress() {
144 // JAIN-SIP stores the wild card as an address!
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
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...]
MacroAssembler.h 88 loadPtr(Address(stackPointerRegister, (index * sizeof(void*))), dest);
93 storePtr(src, Address(stackPointerRegister, (index * sizeof(void*))));
98 store32(value, Address(stackPointerRegister, (index * sizeof(void*))));
103 storePtr(imm, Address(stackPointerRegister, (index * sizeof(void*))));
123 void branch32(Condition cond, RegisterID left, Address right, Label target)
219 void loadPtr(ImplicitAddress address, RegisterID dest)
221 load32(address, dest);
224 void loadPtr(BaseIndex address, RegisterID dest)
226 load32(address, dest);
229 void loadPtr(void* address, RegisterID dest
261 store32(TrustedImm32(imm), address); local
266 store32(TrustedImm32(imm), address); local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
udpport.cc 64 talk_base::SocketAddress address = socket_->GetLocalAddress(&allocated); local
66 AddAddress(address, "udp", true);
72 Connection* UDPPort::CreateConnection(const Candidate& address,
74 if (address.protocol() != "udp")
77 Connection* conn = new ProxyConnection(this, 0, address);
102 const talk_base::SocketAddress& address) {
103 AddAddress(address, "udp", true);
  /libcore/luni/src/main/java/libcore/net/http/
HttpConnectionPool.java 47 private final HashMap<HttpConnection.Address, List<HttpConnection>> connectionPool
48 = new HashMap<HttpConnection.Address, List<HttpConnection>>();
63 public HttpConnection get(HttpConnection.Address address, int connectTimeout)
67 List<HttpConnection> connections = connectionPool.get(address);
71 connectionPool.remove(address);
87 return address.connect(connectTimeout);
102 HttpConnection.Address address = connection.getAddress(); local
104 List<HttpConnection> connections = connectionPool.get(address);
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
NativeDecimalFormat.java 95 * The address of the ICU DecimalFormat* on the native heap.
97 private int address; field in class:NativeDecimalFormat
123 this.address = open(pattern, dfs.getCurrencySymbol(),
139 this.address = open(pattern, data.currencySymbol,
148 if (address != 0) {
149 close(address);
150 address = 0;
165 clone.address = cloneImpl(address);
196 if (obj.address == this.address)
    [all...]
  /external/nist-sip/java/gov/nist/core/net/
SslNetworkLayer.java 93 public Socket createSocket(InetAddress address, int port)
95 return new Socket(address, port);
115 public SSLSocket createSSLSocket(InetAddress address, int port)
117 return (SSLSocket) sslSocketFactory.createSocket(address, port);
121 public SSLSocket createSSLSocket(InetAddress address, int port,
123 return (SSLSocket) sslSocketFactory.createSocket(address, port,
127 public Socket createSocket(InetAddress address, int port,
130 return new Socket(address, port, myAddress, 0);
132 return new Socket(address, port);
137 * address:port.
    [all...]
NetworkLayer.java 49 * Creates a server with the specified port, listen backlog, and local IP address to bind to.
61 * Creates an SSL server with the specified port, listen backlog, and local IP address to bind to.
73 * Creates a stream socket and connects it to the specified port number at the specified IP address.
74 * comparable to "new java.net.Socket(address, port);"
76 * @param address
80 public Socket createSocket(InetAddress address, int port) throws IOException;
83 * Creates a stream socket and connects it to the specified port number at the specified IP address.
84 * comparable to "new java.net.Socket(address, port,localaddress);"
86 * @param address
91 public Socket createSocket(InetAddress address, int port, InetAddress localAddress) throws IOException
    [all...]
  /external/chromium/net/base/
net_util_win.cc 108 IP_ADAPTER_UNICAST_ADDRESS* address; local
109 for (address = adapter->FirstUnicastAddress; address != NULL;
110 address = address->Next) {
111 int family = address->Address.lpSockaddr->sa_family;
114 if (endpoint.FromSockAddr(address->Address.lpSockaddr,
115 address->Address.iSockaddrLength))
    [all...]
  /external/elfutils/tests/
dwfl-addr-sect.c 41 handle_address (Dwfl *dwfl, Dwarf_Addr address)
43 Dwfl_Module *mod = dwfl_addrmodule (dwfl, address);
44 Dwarf_Addr adjusted = address;
50 address, dwfl_errmsg (-1));
53 printf ("address %#" PRIx64 " => module \"%s\" section %zu + %#" PRIx64 "\n",
54 address,
  /libcore/support/src/test/java/tests/net/
StuckServer.java 33 private InetSocketAddress address; field in class:StuckServer
47 this.address = (InetSocketAddress) serverSocket.getLocalSocketAddress();
65 this.address = new InetSocketAddress(testNet1, 80);
70 return address;
74 return address.getPort();
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
Address.java 33 * This class represent email address.
35 * RFC822 email address may have following format.
36 * "name" <address> (comment)
37 * "name" <address>
38 * name <address>
39 * address
43 public class Address {
45 * Address part, in the form local_part@domain_part. No surrounding angle brackets.
51 * This must be null if Address has no name part.
55 // Regex that matches address surrounded by '<>' optionally. '^<?([^>]+)>?$
123 String address = token.getAddress(); local
147 String address = token.getAddress(); local
391 Address address; local
420 final String address = getAddress(); local
    [all...]
  /external/chromium/net/disk_cache/
block_files_unittest.cc 39 Addr address[kMaxSize]; local
43 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[i]));
50 files.DeleteBlock(address[target], false);
51 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[target]));
66 Addr address[kMaxSize]; local
70 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[i]));
75 files.DeleteBlock(address[i], false);
95 Addr address(0);
97 EXPECT_TRUE(files.CreateBlock(RANKINGS, size, &address));
98 entries[i] = address.value()
188 Addr address; local
263 Addr address[kSize]; local
    [all...]
stats.cc 72 bool LoadStats(BackendImpl* backend, Addr address, OnDiskStats* stats) {
73 MappedFile* file = backend->File(address);
77 size_t offset = address.start_block() * address.BlockSize() +
95 bool StoreStats(BackendImpl* backend, Addr address, OnDiskStats* stats) {
96 MappedFile* file = backend->File(address);
100 size_t offset = address.start_block() * address.BlockSize() +
105 bool CreateStats(BackendImpl* backend, Addr* address, OnDiskStats* stats) {
106 if (!backend->CreateBlock(BLOCK_256, 2, address))
    [all...]
  /external/chromium/googleurl/src/
url_canon_ip.cc 97 // Invalid character for an IPv4 address.
184 // Writes the given address (with each character representing one dotted
185 // part of an IPv4 address) to the output, and updating |*out_host| to
187 void AppendIPv4Address(const unsigned char address[4],
193 _itoa_s(address[i], str, 10);
208 unsigned char address[4],
232 // Use that sequence of numbers to fill out the 4-component IP address.
239 address[i] = static_cast<unsigned char>(component_values[i]);
245 address[i] = static_cast<unsigned char>(last_value);
267 unsigned char address[4] local
608 unsigned char address[16]; local
    [all...]
  /libcore/luni/src/main/java/java/util/regex/
Matcher.java 33 private int address; field in class:Matcher
232 if (address != 0) {
233 closeImpl(address);
234 address = 0;
236 address = openImpl(pattern.address);
248 setInputImpl(address, input, regionStart, regionEnd);
249 useAnchoringBoundsImpl(address, anchoringBounds);
250 useTransparentBoundsImpl(address, transparentBounds);
384 matchFound = findImpl(address, input, start, matchOffsets)
    [all...]
  /dalvik/libdex/
DexCatch.cpp 53 u4 address) {
63 if (address < start) {
70 if (address >= end) {
  /external/webkit/Source/JavaScriptCore/wtf/
PageAllocatorSymbian.h 57 // checks if address is in chunk's virtual address space
58 bool contains(const void* address) const
60 return (static_cast<const char*>(address) >= m_base && static_cast<const char*>(address) < (m_base + m_maxSize));
70 // Emulator has limited virtual address space
  /external/webkit/Source/WebCore/html/
EmailInputType.cpp 39 static bool isValidEmailAddress(const String& address)
41 int addressLength = address.length();
48 int matchOffset = regExp.match(address, 0, &matchLength);
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Attachment.cpp 47 Attachment::Attachment(void* address, mach_msg_size_t size, mach_msg_copy_options_t copyOptions, bool deallocate)
50 m_oolMemory.address = address;
  /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...]

Completed in 668 milliseconds

1 2 3 4 5 6 78 91011>>