Home
last modified time | relevance | path

Searched refs:ip2 (Results 1 – 25 of 65) sorted by relevance

123

/external/linux-kselftest/tools/testing/selftests/net/forwarding/
Dmirror_lib.sh64 local ip2=$1; shift
67 mirror_test v$h1 $ip1 $ip2 $dev 100 $expect
68 mirror_test v$h2 $ip2 $ip1 $dev 100 $expect
89 local ip2=$1; shift
91 quick_test_span_dir_ips "$dev" "$direction" "$ip1" "$ip2"
94 mirror_test v$h1 $ip1 $ip2 $dev 100 10
98 mirror_test v$h2 $ip2 $ip1 $dev 100 10
120 local ip2=$1; shift
126 mirror_test v$h1 $ip1 $ip2 $dev 100 $expect
127 mirror_test v$h2 $ip2 $ip1 $dev 100 $expect
Dmirror_gre_lib.sh34 local ip2=$1; shift
40 "$backward_type" "$ip1" "$ip2"
55 local ip2=$1; shift
62 "$backward_type" "$ip1" "$ip2"
67 mirror_test v$h1 $ip1 $ip2 $h3 77 10
106 local ip2=$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/linux-kselftest/tools/testing/selftests/wireguard/
Dnetns.sh40 ip2() { pretty 2 "ip $*"; ip -n $netns2 "$@"; } function
54 ip2 link del dev wg0
55 ip2 link del dev wg1
95 ip2 addr add 192.168.241.2/24 dev wg0
96 ip2 addr add fd00::2/112 dev wg0
112 ip2 link set up dev wg0
167 { read _; read _; read _; read rx_bytes _; read _; read tx_bytes _; } < <(ip2 -stats link show dev …
180 ip2 link set wg0 mtu $big_mtu
184 ip2 link set wg0 mtu $orig_mtu
191 ip2 link set wg0 mtu $big_mtu
[all …]
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DZoneInflections.java157 InflectionPoint ip2 = that.get(i); in compareTo() local
158 if (ip1.offset == ip2.offset && ip1.utcDateTime == ip2.utcDateTime) in compareTo()
160 if (ip1.offset != ip2.offset) { in compareTo()
162 mostRecentDateTime.value = Math.max(ip1.utcDateTime, ip2.utcDateTime) in compareTo()
164 } else if (ip1.utcDateTime > ip2.utcDateTime) { in compareTo()
171 mostRecentDateTime.value = ip2.utcDateTime - EPSILON; in compareTo()
172 ip2 = that.get(i + 1); in compareTo()
174 return ip1.offset > ip2.offset ? 1 : ip1.offset < ip2.offset ? -1 : 0; in compareTo()
/external/zstd/lib/decompress/
Dhuf_decompress_amd64.S56 #define ip2 r10 macro
121 movq 16(%rax), %ip2
194 cmpq %ip1, %ip2
198 cmpq %ip2, %ip3
252 movq %ip2, 8(%rsp)
275 movq 8(%rsp), %ip2
289 movq %ip2, 8(%rsp)
302 movq 8(%rsp), %ip2
324 movq %ip2, 16(%rax)
375 movq 16(%rax), %ip2
[all …]
/external/python/ipaddress/
Dtest_ipaddress.py1007 ip2 = ipaddress.IPv4Address('10.10.10.11')
1013 self.assertEqual(list(ipaddress._find_address_range([ip1, ip2, ip3])),
1423 ip2 = ipaddress.IPv4Address('1.1.1.1')
1430 [ip1, ip2, ip3, ip4, ip5, ip6])
1438 ip2 = ipaddress.IPv4Address('1.1.1.1')
1442 collapsed = ipaddress.collapse_addresses([ip1, ip2, ip3, ip4])
1448 ip2 = ipaddress.IPv4Network('1.1.1.0/24')
1458 [ip1, ip2, ip3, ip4, ip5, ip6])
1465 collapsed = ipaddress.collapse_addresses([ip1, ip2])
1481 ip2 = ipaddress.IPv6Network('2001::/120')
[all …]
/external/python/cpython3/Lib/test/
Dtest_ipaddress.py1220 ip2 = ipaddress.IPv4Address('10.10.10.11')
1226 self.assertEqual(list(ipaddress._find_address_range([ip1, ip2, ip3])),
1751 ip2 = ipaddress.IPv4Address('1.1.1.1')
1758 [ip1, ip2, ip3, ip4, ip5, ip6])
1765 ip2 = ipaddress.IPv4Address('1.1.1.1')
1771 collapsed = ipaddress.collapse_addresses([ip1, ip2, ip3, ip4])
1777 ip2 = ipaddress.IPv4Network('1.1.1.0/24')
1785 collapsed = ipaddress.collapse_addresses([ip1, ip2, ip3, ip4, ip5,
1792 collapsed = ipaddress.collapse_addresses([ip1, ip2])
1808 ip2 = ipaddress.IPv6Network('2001::/120')
[all …]
/external/zstd/lib/compress/
Dzstd_fast.c114 const BYTE* ip2; in ZSTD_compressBlock_fast_noDict_generic() local
156 ip2 = ip0 + step; in ZSTD_compressBlock_fast_noDict_generic()
157 ip3 = ip2 + 1; in ZSTD_compressBlock_fast_noDict_generic()
170 const U32 rval = MEM_read32(ip2 - rep_offset1); in ZSTD_compressBlock_fast_noDict_generic()
177 if ((MEM_read32(ip2) == rval) & (rep_offset1 > 0)) { in ZSTD_compressBlock_fast_noDict_generic()
178 ip0 = ip2; in ZSTD_compressBlock_fast_noDict_generic()
206 hash1 = ZSTD_hashPtr(ip2, hlog, mls); in ZSTD_compressBlock_fast_noDict_generic()
210 ip1 = ip2; in ZSTD_compressBlock_fast_noDict_generic()
211 ip2 = ip3; in ZSTD_compressBlock_fast_noDict_generic()
235 hash1 = ZSTD_hashPtr(ip2, hlog, mls); in ZSTD_compressBlock_fast_noDict_generic()
[all …]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
Dp1-0x.cpp37 int *ip2 = first_arg(ip, fp); in test_simple_deduction() local
50 int *ip2 = first_arg_ref(ip, fp); in test_simple_ref_deduction() local
65 int *ip2 = first_arg_pair(make_pair(ip, 17), make_pair(fp, 17)); in test_pair_deduction() local
/external/clang/test/SemaCXX/
Ddelete-and-function-templates.cpp63 …int *ip2 = g(3.14); // this is OK - because the non-int specializations are deleted and sfinae's o… in foo() local
79 …int *ip2 = g(3.14); // this is OK - because the non-int specializations are deleted and sfinae's o… in foo() local
101 …int *ip2 = g1(3.14, 3); // this is OK - because the non-int specializations are deleted and sfinae… in foo() local
Daddress-space-conversion.cpp25 void test_const_cast(int_ptr ip, int_ptr_1 ip1, int_ptr_2 ip2, in test_const_cast() argument
32 (void)const_cast<int_ptr>(ip2); // expected-error{{is not allowed}} in test_const_cast()
34 (void)const_cast<int_ptr_1>(ip2); // expected-error{{is not allowed}} in test_const_cast()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/x509/
DPKIXNameConstraintValidator.java722 byte ip2[] = temp[2]; in intersectIPRange()
725 byte minMax[][] = minMaxIPs(ip1, subnetmask1, ip2, subnetmask2); in intersectIPRange()
776 byte ip2[] = new byte[ipLength]; in extractIPsAndSubnetMasks()
778 System.arraycopy(ipWithSubmask2, 0, ip2, 0, ipLength); in extractIPsAndSubnetMasks()
781 {ip1, subnetmask1, ip2, subnetmask2}; in extractIPsAndSubnetMasks()
800 byte[] ip2, in minMaxIPs() argument
815 min2[i] = (byte)(ip2[i] & subnetmask2[i]); in minMaxIPs()
816 max2[i] = (byte)(ip2[i] & subnetmask2[i] | ~subnetmask2[i]); in minMaxIPs()
1864 private static byte[] max(byte[] ip1, byte[] ip2) in max() argument
1868 if ((ip1[i] & 0xFFFF) > (ip2[i] & 0xFFFF)) in max()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/
DPKIXNameConstraintValidator.java722 byte ip2[] = temp[2]; in intersectIPRange()
725 byte minMax[][] = minMaxIPs(ip1, subnetmask1, ip2, subnetmask2); in intersectIPRange()
776 byte ip2[] = new byte[ipLength]; in extractIPsAndSubnetMasks()
778 System.arraycopy(ipWithSubmask2, 0, ip2, 0, ipLength); in extractIPsAndSubnetMasks()
781 {ip1, subnetmask1, ip2, subnetmask2}; in extractIPsAndSubnetMasks()
800 byte[] ip2, in minMaxIPs() argument
815 min2[i] = (byte)(ip2[i] & subnetmask2[i]); in minMaxIPs()
816 max2[i] = (byte)(ip2[i] & subnetmask2[i] | ~subnetmask2[i]); in minMaxIPs()
1864 private static byte[] max(byte[] ip1, byte[] ip2) in max() argument
1868 if ((ip1[i] & 0xFFFF) > (ip2[i] & 0xFFFF)) in max()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DPKIXNameConstraintValidator.java718 byte ip2[] = temp[2]; in intersectIPRange()
721 byte minMax[][] = minMaxIPs(ip1, subnetmask1, ip2, subnetmask2); in intersectIPRange()
772 byte ip2[] = new byte[ipLength]; in extractIPsAndSubnetMasks()
774 System.arraycopy(ipWithSubmask2, 0, ip2, 0, ipLength); in extractIPsAndSubnetMasks()
777 {ip1, subnetmask1, ip2, subnetmask2}; in extractIPsAndSubnetMasks()
796 byte[] ip2, in minMaxIPs() argument
811 min2[i] = (byte)(ip2[i] & subnetmask2[i]); in minMaxIPs()
812 max2[i] = (byte)(ip2[i] & subnetmask2[i] | ~subnetmask2[i]); in minMaxIPs()
1860 private static byte[] max(byte[] ip1, byte[] ip2) in max() argument
1864 if ((ip1[i] & 0xFFFF) > (ip2[i] & 0xFFFF)) in max()
[all …]
/external/autotest/client/cros/cellular/
Dbase_station_8960.py120 def SetBsIpV4(self, ip1, ip2): argument
123 'SYSTem:COMMunicate:LAN:SELF:ADDRess2:IP4 "%s"' % ip2,])
170 def SetUeIpV4(self, ip1, ip2=None): argument
175 if ip2:
176 stanza.append('CALL:MS:IP:ADDRess2 "%s"' % ip2)
Dbase_station_interface.py25 def SetBsIpV4(self, ip1, ip2): argument
60 def SetUeIpV4(self, ip1, ip2=None): argument
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
Dp9-0x.cpp32 int *ip2 = first_arg<int *, float*>(0, 0); in test_explicit_spec_simple() local
41 int *ip2 = first_arg<int *, float*>(0, 0, 0, 0); in test_explicit_spec_extension() local
/external/llvm/test/CodeGen/X86/
Dextractelement-legalization-store-ordering.ll40 %ip2 = or i32 %ip0, 2
48 %vecext11 = extractelement <4 x i32> %am, i32 %ip2
49 %arrayidx14 = getelementptr inbounds i32, i32* %x, i32 %ip2
/external/clang/test/Index/
Dcomplete-objc-message-id.m45 void message_qualified_id(id<P2> ip2) {
46 [ip2 P1_method];
47 ip2 P1_method];
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
Dp1-11.cpp8 IP<ip> *ip2; member
23 IP<nullptr> ip2; variable
/external/clang/test/SemaObjCXX/Inputs/
Dnullability-pragmas-1.h76 int_ptr_2 ip2; in f30() local
77 …float *fp2 = ip2; // expected-error{{cannot initialize a variable of type 'float *' with an lvalue… in f30()
/external/llvm/test/Transforms/LoopRotate/
Dnosimplifylatch.ll12 %coerce.val.ip2 = inttoptr i64 %__last.coerce to i32*
17 %lnot.i = icmp eq i32* %coerce.val.ip9, %coerce.val.ip2
/external/cronet/net/dns/public/
Ddns_over_https_server_config_unittest.cc19 const IPAddress ip2(0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); variable
22 const DnsOverHttpsServerConfig::Endpoints endpoints{{ip1, ip2}, {ip3, ip4}};
/external/openscreen/third_party/abseil/src/absl/memory/
Dmemory_test.cc115 MoveOnly(int i1, int i2) : ip1{new int{i1}}, ip2{new int{i2}} {} in MoveOnly()
117 std::unique_ptr<int> ip2; member
132 EXPECT_TRUE(!p->ip2); in TEST()
139 EXPECT_TRUE(!p->ip2); in TEST()
146 EXPECT_TRUE(p->ip2 && *p->ip2 == 2); in TEST()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/memory/
Dmemory_test.cc115 MoveOnly(int i1, int i2) : ip1{new int{i1}}, ip2{new int{i2}} {} in MoveOnly()
117 std::unique_ptr<int> ip2; member
132 EXPECT_TRUE(!p->ip2); in TEST()
139 EXPECT_TRUE(!p->ip2); in TEST()
146 EXPECT_TRUE(p->ip2 && *p->ip2 == 2); in TEST()

123