/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/ |
D | TricubicSplineInterpolatingFunction.java | 227 final int ip1 = i + 1; in TricubicSplineInterpolatingFunction() local 259 f[i][j][k], f[ip1][j][k], in TricubicSplineInterpolatingFunction() 260 f[i][jp1][k], f[ip1][jp1][k], in TricubicSplineInterpolatingFunction() 261 f[i][j][kp1], f[ip1][j][kp1], in TricubicSplineInterpolatingFunction() 262 f[i][jp1][kp1], f[ip1][jp1][kp1], in TricubicSplineInterpolatingFunction() 264 dFdX[i][j][k], dFdX[ip1][j][k], in TricubicSplineInterpolatingFunction() 265 dFdX[i][jp1][k], dFdX[ip1][jp1][k], in TricubicSplineInterpolatingFunction() 266 dFdX[i][j][kp1], dFdX[ip1][j][kp1], in TricubicSplineInterpolatingFunction() 267 dFdX[i][jp1][kp1], dFdX[ip1][jp1][kp1], in TricubicSplineInterpolatingFunction() 269 dFdY[i][j][k], dFdY[ip1][j][k], in TricubicSplineInterpolatingFunction() [all …]
|
D | BicubicSplineInterpolatingFunction.java | 141 final int ip1 = i + 1; in BicubicSplineInterpolatingFunction() local 145 f[i][j], f[ip1][j], f[i][jp1], f[ip1][jp1], in BicubicSplineInterpolatingFunction() 146 dFdX[i][j], dFdX[ip1][j], dFdX[i][jp1], dFdX[ip1][jp1], in BicubicSplineInterpolatingFunction() 147 dFdY[i][j], dFdY[ip1][j], dFdY[i][jp1], dFdY[ip1][jp1], in BicubicSplineInterpolatingFunction() 148 d2FdXdY[i][j], d2FdXdY[ip1][j], d2FdXdY[i][jp1], d2FdXdY[ip1][jp1] in BicubicSplineInterpolatingFunction()
|
/external/linux-kselftest/tools/testing/selftests/net/forwarding/ |
D | mirror_lib.sh | 47 local ip1=$1; shift 51 mirror_test v$h1 $ip1 $ip2 $dev 100 $expect 52 mirror_test v$h2 $ip2 $ip1 $dev 100 $expect 72 local ip1=$1; shift 75 quick_test_span_dir_ips "$dev" "$direction" "$ip1" "$ip2" 78 mirror_test v$h1 $ip1 $ip2 $dev 100 10 82 mirror_test v$h2 $ip2 $ip1 $dev 100 10 102 local ip1=$1; shift 109 mirror_test v$h1 $ip1 $ip2 $dev 100 $expect 110 mirror_test v$h2 $ip2 $ip1 $dev 100 $expect
|
D | mirror_gre_lib.sh | 33 local ip1=$1; shift 40 "$backward_type" "$ip1" "$ip2" 54 local ip1=$1; shift 62 "$backward_type" "$ip1" "$ip2" 67 mirror_test v$h1 $ip1 $ip2 $h3 77 10 105 local ip1=$1; shift 112 quick_test_span_gre_dir_ips $tundev ingress $ip1 $ip2 116 fail_test_span_gre_dir_ips $tundev ingress $ip1 $ip2 120 quick_test_span_gre_dir_ips $tundev ingress $ip1 $ip2
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | ZoneInflections.java | 155 InflectionPoint ip1 = get(i); in compareTo() local 157 if (ip1.offset == ip2.offset && ip1.utcDateTime == ip2.utcDateTime) in compareTo() 159 if (ip1.offset != ip2.offset) { in compareTo() 161 mostRecentDateTime.value = Math.max(ip1.utcDateTime, ip2.utcDateTime) in compareTo() 163 } else if (ip1.utcDateTime > ip2.utcDateTime) { in compareTo() 166 mostRecentDateTime.value = ip1.utcDateTime - EPSILON; in compareTo() 167 ip1 = get(i + 1); in compareTo() 173 return ip1.offset > ip2.offset ? 1 : ip1.offset < ip2.offset ? -1 : 0; in compareTo()
|
/external/python/cpython3/Lib/test/ |
D | test_ipaddress.py | 958 ip1 = ipaddress.IPv4Address('10.10.10.10') 961 self.assertEqual(list(ipaddress._find_address_range([ip1])), 962 [(ip1, ip1)]) 963 self.assertEqual(list(ipaddress._find_address_range([ip1, ip3])), 964 [(ip1, ip1), (ip3, ip3)]) 965 self.assertEqual(list(ipaddress._find_address_range([ip1, ip2, ip3])), 966 [(ip1, ip3)]) 1368 ip1 = ipaddress.IPv4Address('1.1.1.0') 1376 [ip1, ip2, ip3, ip4, ip5, ip6]) 1382 ip1 = ipaddress.IPv4Address('1.1.1.0') [all …]
|
D | test_generators.py | 1294 ip1 = i+1 1296 for x in gen(ip1): 1309 ip1, ip2, ip3 = i+1, i+2, i+3 1315 for values[ip1] in g1(): 1323 for values[ip1] in g1():
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | PKIXNameConstraintValidator.java | 377 byte ip1[] = temp[0]; in intersectIPRange() 382 byte minMax[][] = minMaxIPs(ip1, subnetmask1, ip2, subnetmask2); in intersectIPRange() 428 byte ip1[] = new byte[ipLength]; in extractIPsAndSubnetMasks() 430 System.arraycopy(ipWithSubmask1, 0, ip1, 0, ipLength); in extractIPsAndSubnetMasks() 438 {ip1, subnetmask1, ip2, subnetmask2}; in extractIPsAndSubnetMasks() 455 byte[] ip1, in minMaxIPs() argument 460 int ipLength = ip1.length; in minMaxIPs() 469 min1[i] = (byte)(ip1[i] & subnetmask1[i]); in minMaxIPs() 470 max1[i] = (byte)(ip1[i] & subnetmask1[i] | ~subnetmask1[i]); in minMaxIPs() 1650 private static byte[] max(byte[] ip1, byte[] ip2) in max() argument [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/ |
D | PKIXNameConstraintValidator.java | 381 byte ip1[] = temp[0]; in intersectIPRange() 386 byte minMax[][] = minMaxIPs(ip1, subnetmask1, ip2, subnetmask2); in intersectIPRange() 432 byte ip1[] = new byte[ipLength]; in extractIPsAndSubnetMasks() 434 System.arraycopy(ipWithSubmask1, 0, ip1, 0, ipLength); in extractIPsAndSubnetMasks() 442 {ip1, subnetmask1, ip2, subnetmask2}; in extractIPsAndSubnetMasks() 459 byte[] ip1, in minMaxIPs() argument 464 int ipLength = ip1.length; in minMaxIPs() 473 min1[i] = (byte)(ip1[i] & subnetmask1[i]); in minMaxIPs() 474 max1[i] = (byte)(ip1[i] & subnetmask1[i] | ~subnetmask1[i]); in minMaxIPs() 1654 private static byte[] max(byte[] ip1, byte[] ip2) in max() argument [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
D | PKIXNameConstraintValidator.java | 717 byte ip1[] = temp[0]; in intersectIPRange() 722 byte minMax[][] = minMaxIPs(ip1, subnetmask1, ip2, subnetmask2); in intersectIPRange() 768 byte ip1[] = new byte[ipLength]; in extractIPsAndSubnetMasks() 770 System.arraycopy(ipWithSubmask1, 0, ip1, 0, ipLength); in extractIPsAndSubnetMasks() 778 {ip1, subnetmask1, ip2, subnetmask2}; in extractIPsAndSubnetMasks() 795 byte[] ip1, in minMaxIPs() argument 800 int ipLength = ip1.length; in minMaxIPs() 809 min1[i] = (byte)(ip1[i] & subnetmask1[i]); in minMaxIPs() 810 max1[i] = (byte)(ip1[i] & subnetmask1[i] | ~subnetmask1[i]); in minMaxIPs() 1857 private static byte[] max(byte[] ip1, byte[] ip2) in max() argument [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/ |
D | PKIXNameConstraintValidator.java | 721 byte ip1[] = temp[0]; in intersectIPRange() 726 byte minMax[][] = minMaxIPs(ip1, subnetmask1, ip2, subnetmask2); in intersectIPRange() 772 byte ip1[] = new byte[ipLength]; in extractIPsAndSubnetMasks() 774 System.arraycopy(ipWithSubmask1, 0, ip1, 0, ipLength); in extractIPsAndSubnetMasks() 782 {ip1, subnetmask1, ip2, subnetmask2}; in extractIPsAndSubnetMasks() 799 byte[] ip1, in minMaxIPs() argument 804 int ipLength = ip1.length; in minMaxIPs() 813 min1[i] = (byte)(ip1[i] & subnetmask1[i]); in minMaxIPs() 814 max1[i] = (byte)(ip1[i] & subnetmask1[i] | ~subnetmask1[i]); in minMaxIPs() 1861 private static byte[] max(byte[] ip1, byte[] ip2) in max() argument [all …]
|
/external/clang/test/SemaCXX/ |
D | address-space-newdelete.cpp | 21 void test_delete(int_1 *ip1) { in test_delete() argument 22 delete ip1; // expected-error{{'delete' cannot delete objects of type 'int' in address space '1'}} in test_delete() 23 …delete [] ip1; // expected-error{{'delete' cannot delete objects of type 'int' in address space '1… in test_delete()
|
D | overload-call.cpp | 21 int* ip1 = g(iv, fv, 0); in test_g() local 42 int* ip1 = i(sv); in test_i() local 52 int* ip1 = j(ip); in test_j() local 59 int* ip1 = k("foo"); in test_k() local 79 int* ip1 = l(L"foo"); in test_l() local 101 int* ip1 = n(ca); in test_n() local 127 int* ip1 = o(PromotesToIntValue); in test_o() local 157 int* ip1 = multiparm(lv, iv, lv); in test_multiparm() local
|
D | address-space-conversion.cpp | 25 void test_const_cast(int_ptr ip, int_ptr_1 ip1, int_ptr_2 ip2, in test_const_cast() argument 31 (void)const_cast<int_ptr>(ip1); // expected-error{{is not allowed}} in test_const_cast() 36 (void)const_cast<int_ptr_2>(ip1); // expected-error{{is not allowed}} in test_const_cast()
|
D | nullability-declspec.cpp | 5 _Nullable int *ip1; // expected-error{{nullability specifier '_Nullable' cannot be applied to non-p… variable
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
D | p1-0x.cpp | 36 int *ip1 = first_arg(ip); in test_simple_deduction() local 49 int *ip1 = first_arg_ref(ip); in test_simple_ref_deduction() local 64 int *ip1 = first_arg_pair(make_pair(ip, 17)); in test_pair_deduction() local
|
/external/python/cpython2/Lib/test/ |
D | test_generators.py | 998 ip1 = i+1 1000 for x in gen(ip1): 1013 ip1, ip2, ip3 = i+1, i+2, i+3 1019 for values[ip1] in g1(): 1027 for values[ip1] in g1():
|
/external/autotest/client/cros/cellular/ |
D | base_station_interface.py | 25 def SetBsIpV4(self, ip1, ip2): argument 60 def SetUeIpV4(self, ip1, ip2=None): argument
|
D | base_station_8960.py | 109 def SetBsIpV4(self, ip1, ip2): argument 111 'SYSTem:COMMunicate:LAN:SELF:ADDRess:IP4 "%s"' % ip1, 159 def SetUeIpV4(self, ip1, ip2=None): argument 163 stanza = ['CALL:MS:IP:ADDRess1 "%s"' % ip1]
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/ |
D | p9-0x.cpp | 31 int *ip1 = first_arg<int *>(0); in test_explicit_spec_simple() local 40 int *ip1 = first_arg<int *>(0, 0); in test_explicit_spec_extension() local
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | extractelement-legalization-store-ordering.ll | 40 %ip1 = or i32 %ip0, 1 46 %vecext5 = extractelement <4 x i32> %am, i32 %ip1 53 %arrayidx20 = getelementptr inbounds i32, i32* %x, i32 %ip1
|
/external/llvm/test/CodeGen/X86/ |
D | extractelement-legalization-store-ordering.ll | 39 %ip1 = or i32 %ip0, 1 45 %vecext5 = extractelement <4 x i32> %am, i32 %ip1 52 %arrayidx20 = getelementptr inbounds i32, i32* %x, i32 %ip1
|
/external/clang/test/SemaTemplate/ |
D | address-spaces.cpp | 57 void test_accept_any_pointer(int_1_ptr ip1, int_2_ptr ip2) { in test_accept_any_pointer() argument 59 accept_any_pointer(ip1); // expected-note{{in instantiation of}} in test_accept_any_pointer()
|
/external/lz4/tests/ |
D | roundTripTest.c | 63 const char* const ip1 = (const char*)buff1; in checkBuffers() local 68 if (ip1[pos]!=ip2[pos]) in checkBuffers()
|
/external/clang/test/FixIt/ |
D | fixit-nullability-declspec.cpp | 7 _Nullable int *ip1; // expected-error{{nullability specifier '_Nullable' cannot be applied to non-p… variable
|