Home
last modified time | relevance | path

Searched refs:ip (Results 1 – 25 of 2153) sorted by relevance

12345678910>>...87

/external/libvpx/libvpx/vp8/common/mips/dspr2/
Didctllm_dspr2.c43 short *ip = input; in vp8_short_idct4x4llm_dspr2() local
53 prefetch_load_short(ip + 8); in vp8_short_idct4x4llm_dspr2()
56 a1 = ip[0] + ip[8]; in vp8_short_idct4x4llm_dspr2()
57 b1 = ip[0] - ip[8]; in vp8_short_idct4x4llm_dspr2()
59 temp1 = (ip[4] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
60 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
63 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
64 temp2 = (ip[12] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
67 temp3 = (ip[5] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
68 temp4 = ip[13] + ((ip[13] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
[all …]
/external/bcc/examples/networking/vlan_filter/
Dtest_setup.sh10 ip netns add netns11
11 ip netns add netns12
12 ip netns add netns21
13 ip netns add netns22
14 ip netns add netns3
15 ip netns add netns4
18 ip link add veth11 type veth peer name veth13
19 ip link add veth21 type veth peer name veth23
20 ip link set veth11 netns netns11
21 ip link set veth21 netns netns21
[all …]
/external/linux-kselftest/tools/testing/selftests/bpf/
Dtest_lwt_seg6local.sh44 ip netns del ns1 2> /dev/null
45 ip netns del ns2 2> /dev/null
46 ip netns del ns3 2> /dev/null
47 ip netns del ns4 2> /dev/null
48 ip netns del ns5 2> /dev/null
49 ip netns del ns6 2> /dev/null
55 ip netns add ns1
56 ip netns add ns2
57 ip netns add ns3
58 ip netns add ns4
[all …]
Dtest_tunnel.sh56 ip netns add at_ns0
57 ip link add veth0 type veth peer name veth1
58 ip link set veth0 netns at_ns0
59 ip netns exec at_ns0 ip addr add 172.16.1.100/24 dev veth0
60 ip netns exec at_ns0 ip link set dev veth0 up
61 ip link set dev veth1 up mtu 1500
62 ip addr add dev veth1 172.16.1.200/24
68 ip netns exec at_ns0 \
69 ip link add dev $DEV_NS type $TYPE seq key 2 \
71 ip netns exec at_ns0 ip link set dev $DEV_NS up
[all …]
Dtest_xdp_vlan.sh33 ip link del veth1 2> /dev/null
34 ip netns del ns1 2> /dev/null
35 ip netns del ns2 2> /dev/null
84 ip link set dev lo xdp off 2>/dev/null > /dev/null
92 ip link del veth1 2> /dev/null
93 ip netns del ns1 2> /dev/null
94 ip netns del ns2 2> /dev/null
101 which ip > /dev/null
111 ip netns add ns1
112 ip netns add ns2
[all …]
/external/linux-kselftest/tools/testing/selftests/net/
Drtnetlink.sh31 ip link add name "$devdummy" type dummy
33 ip link set "$devdummy" up
39 ip link del dev "$devdummy"
48 ip netconf show dev "$dev" > /dev/null
52 ip -$f netconf show dev "$dev" > /dev/null
70 ip link add name "$devbr" type bridge
73 ip link set dev "$devdummy" master "$devbr"
76 ip link set "$devbr" up
79 ip link add link "$devbr" name "$vlandev" type vlan id 1
81 ip addr add dev "$vlandev" 10.200.7.23/30
[all …]
/external/iproute2/testsuite/tests/tc/
Dpedit.t86 do_pedit ip ihl set 0x04
88 do_pedit ip ihl set 0x40
90 do_pedit ip ihl preserve
92 do_pedit ip ihl invert
94 do_pedit ip ihl clear
96 do_pedit ip src set 1.2.3.4
98 do_pedit ip src preserve
100 do_pedit ip src invert
102 do_pedit ip src clear
104 do_pedit ip dst set 1.2.3.4
[all …]
/external/iptables/iptables/
Dnft-ipv4.c36 if (cs->fw.ip.iniface[0] != '\0') { in nft_ipv4_add()
37 op = nft_invflags2cmp(cs->fw.ip.invflags, IPT_INV_VIA_IN); in nft_ipv4_add()
38 add_iniface(r, cs->fw.ip.iniface, op); in nft_ipv4_add()
41 if (cs->fw.ip.outiface[0] != '\0') { in nft_ipv4_add()
42 op = nft_invflags2cmp(cs->fw.ip.invflags, IPT_INV_VIA_OUT); in nft_ipv4_add()
43 add_outiface(r, cs->fw.ip.outiface, op); in nft_ipv4_add()
46 if (cs->fw.ip.proto != 0) { in nft_ipv4_add()
47 op = nft_invflags2cmp(cs->fw.ip.invflags, XT_INV_PROTO); in nft_ipv4_add()
49 cs->fw.ip.proto, op); in nft_ipv4_add()
52 if (cs->fw.ip.src.s_addr != 0) { in nft_ipv4_add()
[all …]
/external/libvpx/libvpx/vp8/encoder/
Ddct.c18 short *ip = input; in vp8_short_fdct4x4_c() local
22 a1 = ((ip[0] + ip[3]) * 8); in vp8_short_fdct4x4_c()
23 b1 = ((ip[1] + ip[2]) * 8); in vp8_short_fdct4x4_c()
24 c1 = ((ip[1] - ip[2]) * 8); in vp8_short_fdct4x4_c()
25 d1 = ((ip[0] - ip[3]) * 8); in vp8_short_fdct4x4_c()
33 ip += pitch / 2; in vp8_short_fdct4x4_c()
36 ip = output; in vp8_short_fdct4x4_c()
39 a1 = ip[0] + ip[12]; in vp8_short_fdct4x4_c()
40 b1 = ip[4] + ip[8]; in vp8_short_fdct4x4_c()
41 c1 = ip[4] - ip[8]; in vp8_short_fdct4x4_c()
[all …]
/external/libvpx/libvpx/vp8/common/
Didctllm.c36 short *ip = input; in vp8_short_idct4x4llm_c() local
42 a1 = ip[0] + ip[8]; in vp8_short_idct4x4llm_c()
43 b1 = ip[0] - ip[8]; in vp8_short_idct4x4llm_c()
45 temp1 = (ip[4] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_c()
46 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_c()
49 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_c()
50 temp2 = (ip[12] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_c()
59 ip++; in vp8_short_idct4x4llm_c()
63 ip = output; in vp8_short_idct4x4llm_c()
67 a1 = ip[0] + ip[2]; in vp8_short_idct4x4llm_c()
[all …]
/external/perf_data_converter/src/quipper/testdata/
Dperf.data.systemwide.5-3.4.serialized.out.pb_text5451 ip: 18446744071580801383
5467 ip: 18446744071579490918
5483 ip: 18446744071580793158
5499 ip: 18446744071579295367
5515 ip: 18446744071580794492
5531 ip: 18446744071579295343
5547 ip: 18446744071579295824
5563 ip: 18446744071579295399
5579 ip: 140390844077945
5595 ip: 18446744071580794457
[all …]
Dperf.data.systemwide.1-3.4.serialized.out.pb_text4807 ip: 18446744071582498440
4823 ip: 140511115032789
4839 ip: 18446744071580792596
4855 ip: 18446744071579358420
4871 ip: 18446744071583476726
4887 ip: 18446744071580792596
4903 ip: 18446744071582498442
4919 ip: 18446744071580792495
4935 ip: 18446744071582498442
4951 ip: 18446744071580793993
[all …]
Dperf.data.throttle-3.8.parse.remap2.out.pb_text42605 ip: 418220
42620 ip: 3837859
42635 ip: 119672
42650 ip: 119643
42665 ip: 475290
42680 ip: 119672
42695 ip: 475290
42710 ip: 3832221
42725 ip: 3837663
42740 ip: 401477
[all …]
Dperf.data.remmap-3.2.serialized.out.pb_text122 ip: 18446744071579088154
137 ip: 18446744071579088154
152 ip: 18446744071579088154
167 ip: 18446744071579088154
182 ip: 18446744071580304061
197 ip: 18446744071579088154
212 ip: 18446744071579088154
227 ip: 18446744071579088154
242 ip: 18446744071579088154
257 ip: 18446744071579223425
[all …]
Dperf.data.systemwide.5-3.4.io.out.pb_text40687 ip: 18446744071580801383
40703 ip: 18446744071579490918
40719 ip: 18446744071580793158
40735 ip: 18446744071579295367
40751 ip: 18446744071580794492
40767 ip: 18446744071579295343
40783 ip: 18446744071579295824
40799 ip: 18446744071579295399
40815 ip: 140390844077945
40831 ip: 18446744071580794457
[all …]
Dperf.data.systemwide.5-3.4.pr.out.pb_text40687 ip: 18446744071580801383
40703 ip: 18446744071579490918
40719 ip: 18446744071580793158
40735 ip: 18446744071579295367
40751 ip: 18446744071580794492
40767 ip: 18446744071579295343
40783 ip: 18446744071579295824
40799 ip: 18446744071579295399
40815 ip: 140390844077945
40831 ip: 18446744071580794457
[all …]
Dperf.data.systemwide.5-3.4.parse.remap.out.pb_text40687 ip: 1956199
40703 ip: 645734
40719 ip: 1947974
40735 ip: 450183
40751 ip: 1949308
40767 ip: 450159
40783 ip: 450640
40799 ip: 450215
40815 ip: 2131142521
40831 ip: 1949273
[all …]
Dperf.data.systemwide.5-3.4.ser.comm.out.pb_text40687 ip: 18446744071580801383
40703 ip: 18446744071579490918
40719 ip: 18446744071580793158
40735 ip: 18446744071579295367
40751 ip: 18446744071580794492
40767 ip: 18446744071579295343
40783 ip: 18446744071579295824
40799 ip: 18446744071579295399
40815 ip: 140390844077945
40831 ip: 18446744071580794457
[all …]
Dperf.data.systemwide.5-3.4.parse.out.pb_text40687 ip: 18446744071580801383
40703 ip: 18446744071579490918
40719 ip: 18446744071580793158
40735 ip: 18446744071579295367
40751 ip: 18446744071580794492
40767 ip: 18446744071579295343
40783 ip: 18446744071579295824
40799 ip: 18446744071579295399
40815 ip: 140390844077945
40831 ip: 18446744071580794457
[all …]
Dperf.data.systemwide.5-3.4.parse.remap2.out.pb_text40687 ip: 1956199
40703 ip: 645734
40719 ip: 1947974
40735 ip: 450183
40751 ip: 1949308
40767 ip: 450159
40783 ip: 450640
40799 ip: 450215
40815 ip: 2131142521
40831 ip: 1949273
[all …]
Dperf.data.throttle-3.8.pr.out.pb_text44483 ip: 18446744072481038764
44499 ip: 18446744072484458403
44515 ip: 18446744072480740216
44531 ip: 18446744072480740187
44547 ip: 18446744072481095834
44563 ip: 18446744072480740216
44579 ip: 18446744072481095834
44595 ip: 18446744072484452765
44611 ip: 18446744072484458207
44627 ip: 18446744072481022021
[all …]
/external/linux-kselftest/tools/testing/selftests/net/forwarding/
Drouter_multipath.sh11 ip link set dev $h1 master vrf-h1
13 ip link set dev vrf-h1 up
14 ip link set dev $h1 up
16 ip address add 192.0.2.2/24 dev $h1
17 ip address add 2001:db8:1::2/64 dev $h1
19 ip route add 198.51.100.0/24 vrf vrf-h1 nexthop via 192.0.2.1
20 ip route add 2001:db8:2::/64 vrf vrf-h1 nexthop via 2001:db8:1::1
25 ip route del 2001:db8:2::/64 vrf vrf-h1
26 ip route del 198.51.100.0/24 vrf vrf-h1
28 ip address del 2001:db8:1::2/64 dev $h1
[all …]
Drouter.sh11 ip link set dev $h1 master vrf-h1
13 ip link set dev vrf-h1 up
14 ip link set dev $h1 up
16 ip address add 192.0.2.2/24 dev $h1
17 ip address add 2001:db8:1::2/64 dev $h1
19 ip route add 198.51.100.0/24 vrf vrf-h1 nexthop via 192.0.2.1
20 ip route add 2001:db8:2::/64 vrf vrf-h1 nexthop via 2001:db8:1::1
25 ip route del 2001:db8:2::/64 vrf vrf-h1
26 ip route del 198.51.100.0/24 vrf vrf-h1
28 ip address del 2001:db8:1::2/64 dev $h1
[all …]
/external/webrtc/webrtc/base/
Dipaddress.cc46 static bool IsPrivateV4(uint32_t ip);
118 std::ostream& operator<<(std::ostream& os, const IPAddress& ip) { in operator <<() argument
119 os << ip.ToString(); in operator <<()
214 std::ostream& operator<<(std::ostream& os, const InterfaceAddress& ip) { in operator <<() argument
215 os << static_cast<const IPAddress&>(ip); in operator <<()
217 if (ip.family() == AF_INET6) in operator <<()
218 os << "|flags:0x" << std::hex << ip.ipv6_flags(); in operator <<()
273 IPAddress ip; in IPFromString() local
274 if (!IPFromString(str, &ip)) { in IPFromString()
278 *out = InterfaceAddress(ip, flags); in IPFromString()
[all …]
/external/u-boot/lib/lzo/
Dlzo1x_decompress.c20 #define HAVE_IP(x, ip_end, ip) ((size_t)(ip_end - ip) < (x)) argument
146 const unsigned char *ip = in, *m_pos; in lzo1x_decompress_safe() local
152 if (*ip > 17) { in lzo1x_decompress_safe()
153 t = *ip++ - 17; in lzo1x_decompress_safe()
158 if (HAVE_IP(t + 1, ip_end, ip)) in lzo1x_decompress_safe()
161 *op++ = *ip++; in lzo1x_decompress_safe()
166 while ((ip < ip_end)) { in lzo1x_decompress_safe()
167 t = *ip++; in lzo1x_decompress_safe()
171 if (HAVE_IP(1, ip_end, ip)) in lzo1x_decompress_safe()
173 while (*ip == 0) { in lzo1x_decompress_safe()
[all …]

12345678910>>...87