/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/mips/dspr2/ |
D | idctllm_dspr2.c | 49 short *ip = input; in vp8_short_idct4x4llm_dspr2() local 59 prefetch_load_short(ip + 8); in vp8_short_idct4x4llm_dspr2() 62 a1 = ip[0] + ip[8]; in vp8_short_idct4x4llm_dspr2() 63 b1 = ip[0] - ip[8]; in vp8_short_idct4x4llm_dspr2() 65 temp1 = (ip[4] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2() 66 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2() 69 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2() 70 temp2 = (ip[12] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2() 73 temp3 = (ip[5] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2() 74 temp4 = ip[13] + ((ip[13] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2() [all …]
|
/external/libvpx/libvpx/vp8/common/mips/dspr2/ |
D | idctllm_dspr2.c | 49 short *ip = input; in vp8_short_idct4x4llm_dspr2() local 59 prefetch_load_short(ip + 8); in vp8_short_idct4x4llm_dspr2() 62 a1 = ip[0] + ip[8]; in vp8_short_idct4x4llm_dspr2() 63 b1 = ip[0] - ip[8]; in vp8_short_idct4x4llm_dspr2() 65 temp1 = (ip[4] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2() 66 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2() 69 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2() 70 temp2 = (ip[12] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2() 73 temp3 = (ip[5] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2() 74 temp4 = ip[13] + ((ip[13] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2() [all …]
|
/external/liblzf/ |
D | lzf_d.c | 59 u8 const *ip = (const u8 *)in_data; in lzf_decompress() local 61 u8 const *const in_end = ip + in_len; in lzf_decompress() 66 unsigned int ctrl = *ip++; in lzf_decompress() 79 if (ip + ctrl > in_end) in lzf_decompress() 87 lzf_movsb (op, ip, ctrl); in lzf_decompress() 91 … case 32: *op++ = *ip++; case 31: *op++ = *ip++; case 30: *op++ = *ip++; case 29: *op++ = *ip++; in lzf_decompress() 92 … case 28: *op++ = *ip++; case 27: *op++ = *ip++; case 26: *op++ = *ip++; case 25: *op++ = *ip++; in lzf_decompress() 93 … case 24: *op++ = *ip++; case 23: *op++ = *ip++; case 22: *op++ = *ip++; case 21: *op++ = *ip++; in lzf_decompress() 94 … case 20: *op++ = *ip++; case 19: *op++ = *ip++; case 18: *op++ = *ip++; case 17: *op++ = *ip++; in lzf_decompress() 95 … case 16: *op++ = *ip++; case 15: *op++ = *ip++; case 14: *op++ = *ip++; case 13: *op++ = *ip++; in lzf_decompress() [all …]
|
D | lzf_c.c | 109 const u8 *ip = (const u8 *)in_data; in lzf_compress() local 111 const u8 *in_end = ip + in_len; in lzf_compress() 139 hval = FRST (ip); in lzf_compress() 140 while (ip < in_end - 2) in lzf_compress() 144 hval = NEXT (hval, ip); in lzf_compress() 146 ref = *hslot + LZF_HSLOT_BIAS; *hslot = ip - LZF_HSLOT_BIAS; in lzf_compress() 150 && ref < ip /* the next test will actually take care of this, but this is faster */ in lzf_compress() 152 && (off = ip - ref - 1) < MAX_OFF in lzf_compress() 154 && ref[2] == ip[2] in lzf_compress() 156 && ((ref[1] << 8) | ref[0]) == ((ip[1] << 8) | ip[0]) in lzf_compress() [all …]
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ |
D | dct.c | 18 short *ip = input; in vp8_short_fdct4x4_c() local 23 a1 = ((ip[0] + ip[3]) * 8); in vp8_short_fdct4x4_c() 24 b1 = ((ip[1] + ip[2]) * 8); in vp8_short_fdct4x4_c() 25 c1 = ((ip[1] - ip[2]) * 8); in vp8_short_fdct4x4_c() 26 d1 = ((ip[0] - ip[3]) * 8); in vp8_short_fdct4x4_c() 34 ip += pitch / 2; in vp8_short_fdct4x4_c() 38 ip = output; in vp8_short_fdct4x4_c() 42 a1 = ip[0] + ip[12]; in vp8_short_fdct4x4_c() 43 b1 = ip[4] + ip[8]; in vp8_short_fdct4x4_c() 44 c1 = ip[4] - ip[8]; in vp8_short_fdct4x4_c() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | dct.c | 18 short *ip = input; in vp8_short_fdct4x4_c() local 23 a1 = ((ip[0] + ip[3]) * 8); in vp8_short_fdct4x4_c() 24 b1 = ((ip[1] + ip[2]) * 8); in vp8_short_fdct4x4_c() 25 c1 = ((ip[1] - ip[2]) * 8); in vp8_short_fdct4x4_c() 26 d1 = ((ip[0] - ip[3]) * 8); in vp8_short_fdct4x4_c() 34 ip += pitch / 2; in vp8_short_fdct4x4_c() 38 ip = output; in vp8_short_fdct4x4_c() 42 a1 = ip[0] + ip[12]; in vp8_short_fdct4x4_c() 43 b1 = ip[4] + ip[8]; in vp8_short_fdct4x4_c() 44 c1 = ip[4] - ip[8]; in vp8_short_fdct4x4_c() [all …]
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ |
D | idctllm.c | 36 short *ip = input; in vp8_short_idct4x4llm_c() local 43 a1 = ip[0] + ip[8]; in vp8_short_idct4x4llm_c() 44 b1 = ip[0] - ip[8]; in vp8_short_idct4x4llm_c() 46 temp1 = (ip[4] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_c() 47 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_c() 50 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_c() 51 temp2 = (ip[12] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_c() 60 ip++; in vp8_short_idct4x4llm_c() 64 ip = output; in vp8_short_idct4x4llm_c() 69 a1 = ip[0] + ip[2]; in vp8_short_idct4x4llm_c() [all …]
|
/external/libvpx/libvpx/vp8/common/ |
D | idctllm.c | 36 short *ip = input; in vp8_short_idct4x4llm_c() local 43 a1 = ip[0] + ip[8]; in vp8_short_idct4x4llm_c() 44 b1 = ip[0] - ip[8]; in vp8_short_idct4x4llm_c() 46 temp1 = (ip[4] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_c() 47 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_c() 50 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_c() 51 temp2 = (ip[12] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_c() 60 ip++; in vp8_short_idct4x4llm_c() 64 ip = output; in vp8_short_idct4x4llm_c() 69 a1 = ip[0] + ip[2]; in vp8_short_idct4x4llm_c() [all …]
|
/external/qemu/slirp-android/ |
D | ip_input.c | 51 static struct ip *ip_reass(register struct ip *ip, 78 register struct ip *ip; in ip_input() local 87 if (m->m_len < sizeof (struct ip)) { in ip_input() 92 ip = mtod(m, struct ip *); in ip_input() 94 if (ip->ip_v != IPVERSION) { in ip_input() 99 hlen = ip->ip_hl << 2; in ip_input() 100 if (hlen<sizeof(struct ip ) || hlen>m->m_len) {/* min header length */ in ip_input() 117 NTOHS(ip->ip_len); in ip_input() 118 if (ip->ip_len < hlen) { in ip_input() 122 NTOHS(ip->ip_id); in ip_input() [all …]
|
D | ip_output.c | 58 register struct ip *ip; in ip_output() local 60 register int hlen = sizeof(struct ip ); in ip_output() 73 ip = mtod(m, struct ip *); in ip_output() 77 ip->ip_v = IPVERSION; in ip_output() 78 ip->ip_off &= IP_DF; in ip_output() 79 ip->ip_id = htons(ip_id++); in ip_output() 80 ip->ip_hl = hlen >> 2; in ip_output() 97 if ((u_int16_t)ip->ip_len <= IF_MTU) { in ip_output() 98 ip->ip_len = htons((u_int16_t)ip->ip_len); in ip_output() 99 ip->ip_off = htons((u_int16_t)ip->ip_off); in ip_output() [all …]
|
D | ip_icmp.c | 75 register struct ip *ip=mtod(m, struct ip *); in icmp_input() local 76 int icmplen=ip->ip_len; in icmp_input() 113 ip->ip_len += hlen; /* since ip_input subtracts this */ in icmp_input() 114 if (ip_geth(ip->ip_dst) == alias_addr_ip) { in icmp_input() 131 so->so_faddr_ip = ip_geth(ip->ip_dst); in icmp_input() 133 so->so_laddr_ip = ip_geth(ip->ip_src); in icmp_input() 135 so->so_iptos = ip->ip_tos; in icmp_input() 210 register struct ip *ip; in icmp_error() local 222 ip = mtod(msrc, struct ip *); in icmp_error() 225 strcpy(bufa, inet_iptostr(ip_geth(ip->ip_src))); in icmp_error() [all …]
|
D | helper.h | 46 ip_getn( ipaddr_t ip ) in ip_getn() argument 48 return ip.addr; in ip_getn() 53 ip_geth( ipaddr_t ip ) in ip_geth() argument 55 return ntohl(ip.addr); in ip_geth() 62 ipaddr_t ip; in ip_setn() local 63 ip.addr = val; in ip_setn() 64 return ip; in ip_setn() 71 ipaddr_t ip; in ip_seth() local 72 ip.addr = htonl(val); in ip_seth() 73 return ip; in ip_seth() [all …]
|
/external/qemu/slirp/ |
D | ip_input.c | 51 static struct ip *ip_reass(register struct ip *ip, 78 register struct ip *ip; in ip_input() local 87 if (m->m_len < sizeof (struct ip)) { in ip_input() 92 ip = mtod(m, struct ip *); in ip_input() 94 if (ip->ip_v != IPVERSION) { in ip_input() 99 hlen = ip->ip_hl << 2; in ip_input() 100 if (hlen<sizeof(struct ip ) || hlen>m->m_len) {/* min header length */ in ip_input() 117 NTOHS(ip->ip_len); in ip_input() 118 if (ip->ip_len < hlen) { in ip_input() 122 NTOHS(ip->ip_id); in ip_input() [all …]
|
D | ip_output.c | 58 register struct ip *ip; in ip_output() local 60 register int hlen = sizeof(struct ip ); in ip_output() 73 ip = mtod(m, struct ip *); in ip_output() 77 ip->ip_v = IPVERSION; in ip_output() 78 ip->ip_off &= IP_DF; in ip_output() 79 ip->ip_id = htons(ip_id++); in ip_output() 80 ip->ip_hl = hlen >> 2; in ip_output() 97 if ((u_int16_t)ip->ip_len <= IF_MTU) { in ip_output() 98 ip->ip_len = htons((u_int16_t)ip->ip_len); in ip_output() 99 ip->ip_off = htons((u_int16_t)ip->ip_off); in ip_output() [all …]
|
D | ip_icmp.c | 74 register struct ip *ip=mtod(m, struct ip *); in icmp_input() local 75 int icmplen=ip->ip_len; in icmp_input() 112 ip->ip_len += hlen; /* since ip_input subtracts this */ in icmp_input() 113 if (ip->ip_dst.s_addr == alias_addr.s_addr) { in icmp_input() 127 so->so_faddr = ip->ip_dst; in icmp_input() 129 so->so_laddr = ip->ip_src; in icmp_input() 131 so->so_iptos = ip->ip_tos; in icmp_input() 208 register struct ip *ip; in icmp_error() local 220 ip = mtod(msrc, struct ip *); in icmp_error() 223 strcpy(bufa, inet_ntoa(ip->ip_src)); in icmp_error() [all …]
|
/external/chromium_org/third_party/webrtc/base/ |
D | ipaddress.cc | 46 static bool IsPrivateV4(uint32 ip); 114 std::ostream& operator<<(std::ostream& os, const IPAddress& ip) { in operator <<() argument 115 os << ip.ToString(); in operator <<() 205 std::ostream& operator<<(std::ostream& os, const InterfaceAddress& ip) { in operator <<() argument 206 os << static_cast<const IPAddress&>(ip); in operator <<() 208 if (ip.family() == AF_INET6) in operator <<() 209 os << "|flags:0x" << std::hex << ip.ipv6_flags(); in operator <<() 264 IPAddress ip; in IPFromString() local 265 if (!IPFromString(str, &ip)) { in IPFromString() 269 *out = InterfaceAddress(ip, flags); in IPFromString() [all …]
|
/external/iproute2/man/man8/ |
D | Makefile | 1 TARGETS = ip-address.8 ip-link.8 ip-route.8 3 MAN8PAGES = $(TARGETS) ip.8 arpd.8 lnstat.8 routel.8 rtacct.8 rtmon.8 ss.8 \ 7 tc-sfb.8 tc-netem.8 tc-choke.8 ip-tunnel.8 ip-rule.8 ip-ntable.8 \ 8 ip-monitor.8 tc-stab.8 tc-hfsc.8 ip-xfrm.8 ip-netns.8 \ 9 ip-neighbour.8 ip-mroute.8 ip-maddress.8 ip-addrlabel.8 14 ip-address.8: ip-address.8.in 17 ip-link.8: ip-link.8.in 20 ip-route.8: ip-route.8.in
|
/external/tcpdump/ |
D | print-ip.c | 91 ip_finddst(const struct ip *ip) in ip_finddst() argument 98 cp = (const u_char *)(ip + 1); in ip_finddst() 99 length = (IP_HL(ip) << 2) - sizeof(struct ip); in ip_finddst() 128 UNALIGNED_MEMCPY(&retval, &ip->ip_dst.s_addr, sizeof(u_int32_t)); in ip_finddst() 136 nextproto4_cksum(const struct ip *ip, const u_int8_t *data, in nextproto4_cksum() argument 152 UNALIGNED_MEMCPY(&ph.src, &ip->ip_src.s_addr, sizeof(u_int32_t)); in nextproto4_cksum() 153 if (IP_HL(ip) == 5) in nextproto4_cksum() 154 UNALIGNED_MEMCPY(&ph.dst, &ip->ip_dst.s_addr, sizeof(u_int32_t)); in nextproto4_cksum() 156 ph.dst = ip_finddst(ip); in nextproto4_cksum() 314 const struct ip *ip; member [all …]
|
D | print-sl.c | 48 static void sliplink_print(const u_char *, const struct ip *, u_int); 49 static void compressed_sl_print(const u_char *, const struct ip *, u_int, int); 56 register const struct ip *ip; in sl_if_print() local 65 ip = (struct ip *)(p + SLIP_HDRLEN); in sl_if_print() 68 sliplink_print(p, ip, length); in sl_if_print() 70 switch (IP_V(ip)) { in sl_if_print() 72 ip_print(gndo, (u_char *)ip, length); in sl_if_print() 76 ip6_print(gndo, (u_char *)ip, length); in sl_if_print() 80 printf ("ip v%d", IP_V(ip)); in sl_if_print() 91 register const struct ip *ip; in sl_bsdos_if_print() local [all …]
|
/external/iproute2/examples/diffserv/ |
D | Edge32-ca-u32 | 16 IP=$IPROUTE/ip/ip 57 $TC filter add dev $INDEV parent ffff: protocol ip prio 1 u32 \ 58 match ip tos 0x88 0xfc \ 61 $TC filter add dev $INDEV parent ffff: protocol ip prio 2 u32 \ 62 match ip tos 0x88 0xfc \ 70 $TC filter add dev $INDEV parent ffff: protocol ip prio 3 u32 \ 71 match ip tos 0x88 0xfc \ 74 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 u32 \ 75 match ip tos 0x88 0xfc \ 82 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 u32 \ [all …]
|
/external/linux-tools-perf/perf-3.12.0/arch/arm/lib/ |
D | memset.S | 20 mov ip, r0 @ preserve r0 as return value 41 stmgeia ip!, {r1, r3, r8, lr} @ 64 bytes at a time. 42 stmgeia ip!, {r1, r3, r8, lr} 43 stmgeia ip!, {r1, r3, r8, lr} 44 stmgeia ip!, {r1, r3, r8, lr} 51 stmneia ip!, {r1, r3, r8, lr} 52 stmneia ip!, {r1, r3, r8, lr} 54 stmneia ip!, {r1, r3, r8, lr} 73 tstgt ip, #31 76 and r8, ip, #31 [all …]
|
/external/libvpx/libvpx/vp8/encoder/arm/neon/ |
D | vp8_shortwalsh4x4_neon.asm | 31 ;transpose d0, d1, d2, d3. Then, d0=ip[0], d1=ip[1], d2=ip[2], d3=ip[3] 40 vadd.s16 d4, d0, d2 ; ip[0] + ip[2] 41 vadd.s16 d5, d1, d3 ; ip[1] + ip[3] 42 vsub.s16 d6, d1, d3 ; ip[1] - ip[3] 43 vsub.s16 d7, d0, d2 ; ip[0] - ip[2] 45 vshl.s16 d4, d4, #2 ; a1 = (ip[0] + ip[2]) << 2 46 vshl.s16 d5, d5, #2 ; d1 = (ip[1] + ip[3]) << 2 47 vshl.s16 d6, d6, #2 ; c1 = (ip[1] - ip[3]) << 2 49 vshl.s16 d7, d7, #2 ; b1 = (ip[0] - ip[2]) << 2 59 ;transpose d0, d1, d2, d3, Then, d0=ip[0], d1=ip[4], d2=ip[8], d3=ip[12] [all …]
|
/external/chromium_org/third_party/libvpx/source/libvpx/test/ |
D | vp8_fdct4x4_test.cc | 30 const int16_t *ip = input; in reference_idct4x4() local 34 const int a1 = ip[0] + ip[8]; in reference_idct4x4() 35 const int b1 = ip[0] - ip[8]; in reference_idct4x4() 36 const int temp1 = (ip[4] * sinpi8sqrt2) >> 16; in reference_idct4x4() 37 const int temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in reference_idct4x4() 39 const int temp3 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in reference_idct4x4() 40 const int temp4 = (ip[12] * sinpi8sqrt2) >> 16; in reference_idct4x4() 46 ++ip; in reference_idct4x4() 49 ip = output; in reference_idct4x4() 52 const int a1 = ip[0] + ip[2]; in reference_idct4x4() [all …]
|
/external/libvpx/libvpx/test/ |
D | vp8_fdct4x4_test.cc | 30 const int16_t *ip = input; in reference_idct4x4() local 34 const int a1 = ip[0] + ip[8]; in reference_idct4x4() 35 const int b1 = ip[0] - ip[8]; in reference_idct4x4() 36 const int temp1 = (ip[4] * sinpi8sqrt2) >> 16; in reference_idct4x4() 37 const int temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in reference_idct4x4() 39 const int temp3 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in reference_idct4x4() 40 const int temp4 = (ip[12] * sinpi8sqrt2) >> 16; in reference_idct4x4() 46 ++ip; in reference_idct4x4() 49 ip = output; in reference_idct4x4() 52 const int a1 = ip[0] + ip[2]; in reference_idct4x4() [all …]
|
/external/guava/guava/src/com/google/common/net/ |
D | InetAddresses.java | 390 public static String toAddrString(InetAddress ip) { in toAddrString() argument 391 Preconditions.checkNotNull(ip); in toAddrString() 392 if (ip instanceof Inet4Address) { in toAddrString() 394 return ip.getHostAddress(); in toAddrString() 396 Preconditions.checkArgument(ip instanceof Inet6Address); in toAddrString() 397 byte[] bytes = ip.getAddress(); in toAddrString() 498 public static String toUriString(InetAddress ip) { in toUriString() argument 499 if (ip instanceof Inet6Address) { in toUriString() 500 return "[" + toAddrString(ip) + "]"; in toUriString() 502 return toAddrString(ip); in toUriString() [all …]
|