Searched refs:ip1 (Results 1 - 25 of 29) sorted by relevance

12

/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 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
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}}
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
H A DTricubicSplineInterpolatingFunction.java227 final int ip1 = i + 1;
259 f[i][j][k], f[ip1][j][k],
260 f[i][jp1][k], f[ip1][jp1][k],
261 f[i][j][kp1], f[ip1][j][kp1],
262 f[i][jp1][kp1], f[ip1][jp1][kp1],
264 dFdX[i][j][k], dFdX[ip1][j][k],
265 dFdX[i][jp1][k], dFdX[ip1][jp1][k],
266 dFdX[i][j][kp1], dFdX[ip1][j][kp1],
267 dFdX[i][jp1][kp1], dFdX[ip1][jp1][kp1],
269 dFdY[i][j][k], dFdY[ip1][
[all...]
H A DBicubicSplineInterpolatingFunction.java141 final int ip1 = i + 1;
145 f[i][j], f[ip1][j], f[i][jp1], f[ip1][jp1],
146 dFdX[i][j], dFdX[ip1][j], dFdX[i][jp1], dFdX[ip1][jp1],
147 dFdY[i][j], dFdY[ip1][j], dFdY[i][jp1], dFdY[ip1][jp1],
148 d2FdXdY[i][j], d2FdXdY[ip1][j], d2FdXdY[i][jp1], d2FdXdY[ip1][jp1]
/external/valgrind/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/clang/test/PCH/
H A Dnamespaces.cpp9 N1::t1 *ip1 = &int_val; variable
/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/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/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/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
1650 max(byte[] ip1, byte[] ip2) argument
1669 min(byte[] ip1, byte[] ip2) argument
1690 compareTo(byte[] ip1, byte[] ip2) argument
1711 or(byte[] ip1, byte[] ip2) argument
[all...]
/external/clang/test/Analysis/
H A Dmalloc-sizeof.c14 int *ip1 = malloc(sizeof(1)); local
/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/chromium-libpac/src/
H A Dproxy_resolver_v8.cc234 const IPAddressNumber& ip1 = this->ip_address_number; local
236 if (ip1.size() != ip2.size())
237 return ip1.size() > ip2.size(); // IPv6 before IPv4.
238 return memcmp(&ip1[0], &ip2[0], ip1.size()) < 0; // Ascending order.
/external/libvpx/libvpx/vp8/common/x86/
H A Ddequantize_mmx.asm104 paddw mm5, mm1 ; ip1 * sin(pi/8) * sqrt(2)
159 paddw mm5, mm1 ; ip1 * sin(pi/8) * sqrt(2)
H A Didctllm_sse2.asm170 paddw xmm5, xmm1 ; ip1 * sin(pi/8) * sqrt(2)
239 paddw xmm5, xmm1 ; ip1 * sin(pi/8) * sqrt(2)
507 paddw xmm5, xmm1 ; ip1 * sin(pi/8) * sqrt(2)
576 paddw xmm5, xmm1 ; ip1 * sin(pi/8) * sqrt(2)
H A Didctllm_mmx.asm74 paddw mm5, mm1 ; ip1 * sin(pi/8) * sqrt(2)
129 paddw mm5, mm1 ; ip1 * sin(pi/8) * sqrt(2)
/external/vixl/examples/
H A Dcustom-disassembler.cc46 AppendToOutput(reg.Is64Bits() ? "ip1" : "wip1");
124 __ Add(x11, ip0, ip1);
/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));
/external/vixl/src/vixl/a64/
H A Dmacro-assembler-a64.cc278 tmp_list_(ip0, ip1),
295 tmp_list_(ip0, ip1),
/external/v8/src/arm64/
H A Dassembler-arm64.h378 ALIAS_REGISTER(Register, ip1, x17);

Completed in 5844 milliseconds

12