Searched defs:ip1 (Results 1 - 20 of 20) sorted by relevance

/external/clang/test/SemaCXX/
H A Daddress-space-newdelete.cpp21 void test_delete(int_1 *ip1) { argument
22 delete ip1; // expected-error{{'delete' cannot delete objects of type 'int' in address space '1'}}
23 delete [] ip1; // expected-error{{'delete' cannot delete objects of type 'int' in address space '1'}}
H A Daddress-space-conversion.cpp25 void test_const_cast(int_ptr ip, int_ptr_1 ip1, int_ptr_2 ip2, argument
31 (void)const_cast<int_ptr>(ip1); // expected-error{{is not allowed}}
36 (void)const_cast<int_ptr_2>(ip1); // expected-error{{is not allowed}}
H A Doverload-call.cpp18 int* ip1 = g(iv, fv, 0); local
39 int* ip1 = i(sv); local
49 int* ip1 = j(ip); local
56 int* ip1 = k("foo"); // expected-warning{{conversion from string literal to 'char *' is deprecated}} local
65 int* ip1 = l(L"foo"); // expected-warning{{conversion from string literal to 'wchar_t *' is deprecated}} local
82 int* ip1 = n(ca); local
104 int* ip1 = o(PromotesToIntValue); local
134 int* ip1 = multiparm(lv, iv, lv); local
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp9-0x.cpp31 int *ip1 = first_arg<int *>(0); local
40 int *ip1 = first_arg<int *>(0, 0); local
/external/clang/test/PCH/
H A Dnamespaces.cpp9 N1::t1 *ip1 = &int_val; variable
/external/clang/test/Analysis/
H A Dmalloc-sizeof.c14 int *ip1 = malloc(sizeof(1)); local
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp1-0x.cpp36 int *ip1 = first_arg(ip); local
49 int *ip1 = first_arg_ref(ip); local
64 int *ip1 = first_arg_pair(make_pair(ip, 17)); local
H A Dp3.cpp116 int *ip1 = f4c(&f); local
/external/qemu/slirp-android/
H A Dhelper.h105 ip_equal( ipaddr_t ip1, ipaddr_t ip2 ) argument
107 return ip1.addr == ip2.addr;
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp1-11.cpp22 IP<(0)> ip1; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}} variable
/external/clang/test/SemaTemplate/
H A Daddress-spaces.cpp57 void test_accept_any_pointer(int_1_ptr ip1, int_2_ptr ip2) { argument
59 accept_any_pointer(ip1); // expected-note{{in instantiation of}}
H A Dinstantiate-field.cpp17 int* ip1 = xi->z; local
H A Dmember-template-access-expr.cpp64 int *ip1 = x1.f1(17); local
H A Dtypename-specifier.cpp19 typename N::A::type *ip1 = &i; // expected-warning{{'typename' occurs outside of a template}} variable
/external/chromium_org/third_party/webrtc/base/
H A Dnetwork_unittest.cc624 IPAddress ip1, ip2; local
625 EXPECT_TRUE(IPFromString("2400:4030:1:2c00:be30:0:0:1", &ip1));
629 Network* net1 = new Network("em1", "em1", TruncateIP(ip1, 64), 64);
630 Network* net2 = new Network("em1", "em1", TruncateIP(ip1, 64), 64);
633 net1->AddIP(ip1);
649 EXPECT_EQ(list2[0]->GetIPs()[0], ip1);
/external/valgrind/main/perf/
H A Dffbench.c173 int i2rev, i3rev, ip1, ip2, ip3, ifp1, ifp2; local
185 ip1 = nprev << 1;
186 ip2 = ip1 * n;
189 for (i2 = 1; i2 <= ip2; i2 += ip1) {
191 for (i1 = i2; i1 <= i2 + ip1 - 2; i1 += 2) {
200 while (ibit >= ip1 && i2rev > ibit) {
206 ifp1 = ip1;
209 theta = isign * 6.28318530717959 / (ifp2 / ip1);
215 for (i3 = 1; i3 <= ifp1; i3 += ip1) {
216 for (i1 = i3; i1 <= i3 + ip1
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXNameConstraintValidator.java377 byte ip1[] = temp[0];
382 byte minMax[][] = minMaxIPs(ip1, subnetmask1, ip2, subnetmask2);
428 byte ip1[] = new byte[ipLength];
430 System.arraycopy(ipWithSubmask1, 0, ip1, 0, ipLength);
438 {ip1, subnetmask1, ip2, subnetmask2};
446 * @param ip1 The first IP address.
455 byte[] ip1,
460 int ipLength = ip1.length;
469 min1[i] = (byte)(ip1[i] & subnetmask1[i]);
470 max1[i] = (byte)(ip1[
454 minMaxIPs( byte[] ip1, byte[] subnetmask1, byte[] ip2, byte[] subnetmask2) argument
1646 max(byte[] ip1, byte[] ip2) argument
1665 min(byte[] ip1, byte[] ip2) argument
1686 compareTo(byte[] ip1, byte[] ip2) argument
1707 or(byte[] ip1, byte[] ip2) argument
[all...]
/external/chromium-libpac/src/
H A Dproxy_resolver_v8.cc238 const IPAddressNumber& ip1 = this->ip_address_number; local
240 if (ip1.size() != ip2.size())
241 return ip1.size() > ip2.size(); // IPv6 before IPv4.
242 return memcmp(&ip1[0], &ip2[0], ip1.size()) < 0; // Ascending order.
/external/chromium_org/net/proxy/
H A Dproxy_resolver_v8.cc256 const IPAddressNumber& ip1 = this->ip_address_number; local
258 if (ip1.size() != ip2.size())
259 return ip1.size() > ip2.size(); // IPv6 before IPv4.
260 DCHECK(ip1.size() == ip2.size());
261 return memcmp(&ip1[0], &ip2[0], ip1.size()) < 0; // Ascending order.
/external/mdnsresponder/mDNSCore/
H A DDNSCommon.c303 mDNSexport mDNSBool mDNSSameAddress(const mDNSAddr *ip1, const mDNSAddr *ip2) argument
305 if (ip1->type == ip2->type)
307 switch (ip1->type)
310 case mDNSAddrType_IPv4 : return(mDNSBool)(mDNSSameIPv4Address(ip1->ip.v4, ip2->ip.v4));
311 case mDNSAddrType_IPv6 : return(mDNSBool)(mDNSSameIPv6Address(ip1->ip.v6, ip2->ip.v6));

Completed in 2779 milliseconds