HomeSort by relevance Sort by last modified time
    Searched defs:ip (Results 476 - 500 of 816) sorted by null

<<11121314151617181920>>

  /external/webrtc/src/modules/audio_processing/aec/
aec_rdft.c 14 * All changes are covered by the WebRTC license and IP grant:
43 static int ip[16]; variable
45 static void bitrv2_32or128(int n, int *ip, float *a) {
50 ip[0] = 0;
57 ip[m + j] = ip[j] + l;
65 j1 = 2 * j + ip[k];
66 k1 = 2 * k + ip[j];
106 j1 = 2 * k + m2 + ip[k];
124 ip[0] = nw
    [all...]
  /external/webrtc/src/modules/audio_processing/ns/
ns_core.h 79 int ip[IP_LENGTH]; member in struct:NSinst_t_
  /external/wpa_supplicant_8/src/tls/
x509v3.h 43 u8 *ip; /* iPAddress */ member in struct:x509_name
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
math_h.pass.cpp 108 int ip; local
109 static_assert((std::is_same<decltype(frexp((double)0, &ip)), double>::value), "");
110 static_assert((std::is_same<decltype(frexpf(0, &ip)), float>::value), "");
111 static_assert((std::is_same<decltype(frexpl(0, &ip)), long double>::value), "");
112 assert(frexp(0, &ip) == 0);
117 int ip = 1; local
118 static_assert((std::is_same<decltype(ldexp((double)0, ip)), double>::value), "");
119 static_assert((std::is_same<decltype(ldexpf(0, ip)), float>::value), "");
120 static_assert((std::is_same<decltype(ldexpl(0, ip)), long double>::value), "");
121 assert(ldexp(1, ip) == 2)
562 int ip; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
cmath.pass.cpp 240 int ip; local
241 static_assert((std::is_same<decltype(std::frexp((float)0, &ip)), float>::value), "");
242 static_assert((std::is_same<decltype(std::frexp((bool)0, &ip)), double>::value), "");
243 static_assert((std::is_same<decltype(std::frexp((unsigned short)0, &ip)), double>::value), "");
244 static_assert((std::is_same<decltype(std::frexp((int)0, &ip)), double>::value), "");
245 static_assert((std::is_same<decltype(std::frexp((unsigned int)0, &ip)), double>::value), "");
246 static_assert((std::is_same<decltype(std::frexp((long)0, &ip)), double>::value), "");
247 static_assert((std::is_same<decltype(std::frexp((unsigned long)0, &ip)), double>::value), "");
248 static_assert((std::is_same<decltype(std::frexp((long long)0, &ip)), double>::value), "");
249 static_assert((std::is_same<decltype(std::frexp((unsigned long long)0, &ip)), double>::value), "")
259 int ip = 1; local
1172 int ip; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_personality.cpp 55 | Beginning of Call Site Table The current ip lies within the |
69 | Beginning of Call Site Table The current ip is a 1-based index into |
587 uintptr_t ip = _Unwind_GetIP(context) - 1; local
592 if (ip == uintptr_t(-1))
598 else if (ip == 0)
600 // ip is 1-based index into call site table
602 uintptr_t ipOffset = ip - funcStart;
644 // ip is 1-based index into this table
647 if (--ip == 0)
650 // Found the call site containing ip
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm/
mce.h 20 #define MCG_STATUS_RIPV (1ULL<<0) /* restart ip valid */
21 #define MCG_STATUS_EIPV (1ULL<<1) /* ip points to correct instruction */
55 __u64 ip; member in struct:mce
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/
mce.h 20 #define MCG_STATUS_RIPV (1ULL<<0) /* restart ip valid */
21 #define MCG_STATUS_EIPV (1ULL<<1) /* ip points to correct instruction */
55 __u64 ip; member in struct:mce
  /system/core/logd/
LogStatistics.cpp 624 PidStatisticsCollection::iterator ip; local
625 for (ip = u.begin(); ip != u.end(); ++ip) {
626 PidStatistics *p = (*ip);
936 PidStatisticsCollection::iterator ip; local
937 for (ip = u.begin(); ip != u.end(); ++ip) {
938 if ((*ip)->getPid() == pid)
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter_ipv4/
ip_tables.h 89 struct ipt_ip ip; member in struct:ipt_entry
  /development/ndk/platforms/android-3/include/linux/netfilter_ipv4/
ip_tables.h 63 struct ipt_ip ip; member in struct:ipt_entry
  /development/ndk/platforms/android-L/include/linux/netfilter_ipv4/
ip_tables.h 89 struct ipt_ip ip; member in struct:ipt_entry
  /external/chromium_org/base/files/
file_util_posix.cc 755 std::vector<FilePath::StringType>::const_iterator ib, ip; local
756 for (ib = base_components.begin(), ip = path_components.begin();
757 ib != base_components.end(); ++ib, ++ip) {
761 DCHECK(ip != path_components.end());
762 DCHECK(*ip == *ib);
769 for (; ip != path_components.end(); ++ip) {
770 current_path = current_path.Append(*ip);
  /external/chromium_org/cloud_print/gcp20/prototype/
printer.cc 109 // Returns local IP address number of first interface found (except loopback).
111 // "eth0", "wlan0" etc. If interface name is empty, function will return IP
136 net::IPAddressNumber ip = GetLocalIp("", false); local
137 if (!ip.empty())
138 result += " at " + net::IPAddressToString(ip);
850 LOG(ERROR) << "No local IP found. Cannot start printer.";
  /external/chromium_org/net/dns/
dns_transaction.cc 56 IPAddressNumber ip; local
57 return ParseIPLiteralToNumber(hostname, &ip);
  /external/chromium_org/net/tools/quic/
end_to_end_test.cc 196 net::IPAddressNumber ip; local
197 CHECK(net::ParseIPLiteralToNumber("127.0.0.1", &ip));
198 server_address_ = IPEndPoint(ip, 0);
467 IPAddressNumber ip; local
468 CHECK(net::ParseIPLiteralToNumber("::1", &ip));
469 server_address_ = IPEndPoint(ip, server_address_.port());
1123 IPAddressNumber ip; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.cc 588 rtc::IPAddress ip = ipaddr(); local
589 switch (ip.family()) {
591 in_addr v4addr = ip.ipv4_address();
597 in6_addr v6addr = ip.ipv6_address();
617 // Invalid ip family or transaction ID, or missing owner.
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_dct.c 646 const tran_low_t *ip = NULL; local
670 ip = output;
674 a1 = ip[0];
675 b1 = ip[1];
676 c1 = ip[2];
677 d1 = ip[3];
691 ip += 4;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_eu_emit.c 2480 int ip; local
2504 int ip; local
2528 int ip; local
    [all...]
brw_wm_emit.c 1535 struct brw_reg ip = brw_ip_reg(); local
    [all...]
  /external/chromium_org/third_party/re2/re2/
compile.cc 58 Prog::Inst* ip = &inst0[l.p>>1]; local
60 l.p = ip->out1();
62 l.p = ip->out();
69 Prog::Inst* ip = &inst0[l.p>>1]; local
71 l.p = ip->out1();
72 ip->out1_ = val;
74 l.p = ip->out();
75 ip->set_out(val);
95 Prog::Inst* ip = &inst0[l.p>>1]; local
97 ip->out1_ = l2.p
271 Prog::Inst* ip = new Prog::Inst[inst_cap_]; local
284 Prog::Inst* ip = new Prog::Inst[inst_len_]; local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
network.cc 94 // After type, networks are sorted by IP address precedence values
155 // AddressList in this map will track IP addresses for all Networks
211 // This network exists in the map already. Reset its IP addresses.
271 IPAddress ip; local
280 ip = IPAddress(
288 ip = IPAddress(
305 prefix = TruncateIP(ip, prefix_length);
315 network->AddIP(ip);
323 (*existing_network).second->AddIP(ip);
346 const IPAddress& ip, IPAddress* prefix)
425 IPAddress ip; local
    [all...]
  /external/dnsmasq/src/
dnsmasq.c 518 _("DHCP, IP range %s -- %s, lease time %s"),
1267 struct ip ip; member in struct:__anon4132
    [all...]
  /external/guava/guava-tests/test/com/google/common/net/
InetAddressesTest.java 130 // Shouldn't hit DNS, because it's an IP string literal.
139 // Shouldn't hit DNS, because it's an IP string literal.
155 // Shouldn't hit DNS, because it's an IP string literal.
167 // Shouldn't hit DNS, because it's an IP string literal.
222 InetAddress ip = InetAddresses.forString(ipStr); local
223 assertEquals("1.2.3.4", InetAddresses.toUriString(ip));
230 InetAddress ip = InetAddresses.forString(ipStr); local
231 assertEquals("[3ffe::1]", InetAddresses.toUriString(ip));
331 InetAddress ip = InetAddresses.forString(nonCompatAddresses[i]); local
332 assertFalse(InetAddresses.isCompatIPv4Address((Inet6Address) ip));
350 InetAddress ip = InetAddresses.forString(validCompatAddresses[i]); local
408 InetAddress ip = InetAddresses.forString(non6to4Addresses[i]); local
424 InetAddress ip = InetAddresses.forString(valid6to4Address); local
438 InetAddress ip = InetAddresses.forString(nonTeredoAddresses[i]); local
455 InetAddress ip = InetAddresses.forString(validTeredoAddress); local
490 InetAddress ip = InetAddresses.forString(validIsatapAddresses[i]); local
496 InetAddress ip = InetAddresses.forString(nonIsatapAddresses[i]); local
    [all...]
  /external/iproute2/include/linux/netfilter_ipv4/
ip_tables.h 2 * 25-Jul-1998 Major changes to allow for ip chain table
8 * Format of an IP firewall descriptor
68 /* Source and destination IP addr */
70 /* Mask for src and dest IP addr */
84 /* Values for "flag" field in struct ipt_ip (general ip structure). */
93 #define IPT_INV_SRCIP 0x08 /* Invert the sense of SRC IP. */
100 parts which are 1) general IP header stuff 2) match specific
103 struct ipt_ip ip; member in struct:ipt_entry
124 * New IP firewall options for [gs]etsockopt at the RAW IP level
    [all...]

Completed in 3819 milliseconds

<<11121314151617181920>>