Home
last modified time | relevance | path

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

12345678910>>...41

/external/libvpx/libvpx/vp8/common/mips/dspr2/
Didctllm_dspr2.c49 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/
Dlzf_d.c59 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 …]
Dlzf_c.c109 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/libvpx/libvpx/vp8/encoder/
Ddct.c20 short *ip = input; in vp8_short_fdct4x4_c() local
25 a1 = ((ip[0] + ip[3]) * 8); in vp8_short_fdct4x4_c()
26 b1 = ((ip[1] + ip[2]) * 8); in vp8_short_fdct4x4_c()
27 c1 = ((ip[1] - ip[2]) * 8); in vp8_short_fdct4x4_c()
28 d1 = ((ip[0] - ip[3]) * 8); in vp8_short_fdct4x4_c()
36 ip += pitch / 2; in vp8_short_fdct4x4_c()
40 ip = output; in vp8_short_fdct4x4_c()
44 a1 = ip[0] + ip[12]; in vp8_short_fdct4x4_c()
45 b1 = ip[4] + ip[8]; in vp8_short_fdct4x4_c()
46 c1 = ip[4] - ip[8]; in vp8_short_fdct4x4_c()
[all …]
/external/libvpx/libvpx/vp8/common/
Didctllm.c37 short *ip = input; in vp8_short_idct4x4llm_c() local
44 a1 = ip[0] + ip[8]; in vp8_short_idct4x4llm_c()
45 b1 = ip[0] - ip[8]; in vp8_short_idct4x4llm_c()
47 temp1 = (ip[4] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_c()
48 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_c()
51 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_c()
52 temp2 = (ip[12] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_c()
61 ip++; in vp8_short_idct4x4llm_c()
65 ip = output; in vp8_short_idct4x4llm_c()
70 a1 = ip[0] + ip[2]; in vp8_short_idct4x4llm_c()
[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/iproute2/man/man8/
DMakefile1 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 rtpr.8 ss.8 \
10 ip-addrlabel.8 ip-fou.8 ip-gue.8 ip-l2tp.8 \
11 ip-maddress.8 ip-monitor.8 ip-mroute.8 ip-neighbour.8 \
12 ip-netns.8 ip-ntable.8 ip-rule.8 ip-tunnel.8 ip-xfrm.8 \
13 ip-tcp_metrics.8 ip-netconf.8 ip-token.8 \
21 ip-address.8: ip-address.8.in
24 ip-link.8: ip-link.8.in
27 ip-route.8: ip-route.8.in
/external/tcpdump/
Dprint-ip.c89 const struct ip *ip) in ip_finddst() argument
96 cp = (const u_char *)(ip + 1); in ip_finddst()
97 length = (IP_HL(ip) << 2) - sizeof(struct ip); in ip_finddst()
126 UNALIGNED_MEMCPY(&retval, &ip->ip_dst.s_addr, sizeof(uint32_t)); in ip_finddst()
135 const struct ip *ip, const uint8_t *data, in nextproto4_cksum() argument
151 UNALIGNED_MEMCPY(&ph.src, &ip->ip_src.s_addr, sizeof(uint32_t)); in nextproto4_cksum()
152 if (IP_HL(ip) == 5) in nextproto4_cksum()
153 UNALIGNED_MEMCPY(&ph.dst, &ip->ip_dst.s_addr, sizeof(uint32_t)); in nextproto4_cksum()
155 ph.dst = ip_finddst(ndo, ip); in nextproto4_cksum()
315 const struct ip *ip; member
[all …]
Dprint-sl.c54 static void sliplink_print(netdissect_options *, const u_char *, const struct ip *, u_int);
55 static void compressed_sl_print(netdissect_options *, const u_char *, const struct ip *, u_int, int…
63 register const struct ip *ip; in sl_if_print() local
72 ip = (struct ip *)(p + SLIP_HDRLEN); in sl_if_print()
75 sliplink_print(ndo, p, ip, length); in sl_if_print()
77 switch (IP_V(ip)) { in sl_if_print()
79 ip_print(ndo, (u_char *)ip, length); in sl_if_print()
82 ip6_print(ndo, (u_char *)ip, length); in sl_if_print()
85 ND_PRINT((ndo, "ip v%d", IP_V(ip))); in sl_if_print()
97 register const struct ip *ip; in sl_bsdos_if_print() local
[all …]
/external/iproute2/examples/diffserv/
DEdge32-ca-u3216 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 …]
DEdge31-ca-u3216 IP=$IPROUTE/ip/ip
33 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 handle 1: u32 \
53 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 u32 \
54 match ip tos 0x88 0xfc \
62 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 u32 \
63 match ip tos 0x88 0xfc \
70 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 u32 \
71 match ip tos 0x88 0xfc \
82 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 u32 \
83 match ip tos 0x90 0xfc \
[all …]
/external/guava/guava/src/com/google/common/net/
DInetAddresses.java354 public static String toAddrString(InetAddress ip) { in toAddrString() argument
355 Preconditions.checkNotNull(ip); in toAddrString()
356 if (ip instanceof Inet4Address) { in toAddrString()
358 return ip.getHostAddress(); in toAddrString()
360 Preconditions.checkArgument(ip instanceof Inet6Address); in toAddrString()
361 byte[] bytes = ip.getAddress(); in toAddrString()
462 public static String toUriString(InetAddress ip) { in toUriString() argument
463 if (ip instanceof Inet6Address) { in toUriString()
464 return "[" + toAddrString(ip) + "]"; in toUriString()
466 return toAddrString(ip); in toUriString()
[all …]
/external/lz4/lib/
Dlz4hc.c130 FORCE_INLINE void LZ4HC_Insert (LZ4HC_Data_Structure* hc4, const BYTE* ip) in LZ4HC_Insert() argument
135 const U32 target = (U32)(ip - base); in LZ4HC_Insert()
153 const BYTE* ip, const BYTE* const iLimit, in LZ4HC_InsertAndFindBestMatch() argument
162 …const U32 lowLimit = (hc4->lowLimit + 64 KB > (U32)(ip-base)) ? hc4->lowLimit : (U32)(ip - base) -… in LZ4HC_InsertAndFindBestMatch()
169 LZ4HC_Insert(hc4, ip); in LZ4HC_InsertAndFindBestMatch()
170 matchIndex = HashTable[LZ4HC_hashPtr(ip)]; in LZ4HC_InsertAndFindBestMatch()
178 if (*(match+ml) == *(ip+ml) in LZ4HC_InsertAndFindBestMatch()
179 && (LZ4_read32(match) == LZ4_read32(ip))) in LZ4HC_InsertAndFindBestMatch()
181 size_t mlt = LZ4_count(ip+MINMATCH, match+MINMATCH, iLimit) + MINMATCH; in LZ4HC_InsertAndFindBestMatch()
188 if (LZ4_read32(match) == LZ4_read32(ip)) in LZ4HC_InsertAndFindBestMatch()
[all …]
/external/libvpx/libvpx/test/
Dvp8_fdct4x4_test.cc30 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/compiler-rt/lib/builtins/arm/
Dudivsi3.S66 clz ip, r0
69 sub r3, r3, ip
71 adr ip, LOCAL_LABEL(div0block) + 1
72 sub ip, ip, r3, lsl #1
74 adr ip, LOCAL_LABEL(div0block)
76 sub ip, ip, r3, lsl #2
77 sub ip, ip, r3, lsl #3
79 bx ip
85 adr ip, LOCAL_LABEL(div0block)
90 subhs ip, ip, #(16 * 12)
[all …]
Dumodsi3.S64 clz ip, r0
67 sub r3, r3, ip
69 adr ip, LOCAL_LABEL(div0block) + 1
70 sub ip, ip, r3, lsl #1
72 adr ip, LOCAL_LABEL(div0block)
74 sub ip, ip, r3, lsl #3
75 bx ip
81 adr ip, LOCAL_LABEL(div0block)
86 subhs ip, ip, #(16 * 8)
91 subhs ip, ip, #(8 * 8)
[all …]
Dudivmodsi4.S66 clz ip, r0
69 sub r3, r3, ip
71 adr ip, LOCAL_LABEL(div0block) + 1
72 sub ip, ip, r3, lsl #1
74 adr ip, LOCAL_LABEL(div0block)
76 sub ip, ip, r3, lsl #2
77 sub ip, ip, r3, lsl #3
79 bx ip
87 adr ip, LOCAL_LABEL(div0block)
92 subhs ip, ip, #(16 * 12)
[all …]
/external/clang/test/SemaObjC/
Dparameterized_classes_subst.m152 int *ip;
153 ip = [stringSet firstObject]; // expected-warning{{from 'NSString *'}}
154 ip = [mutStringSet firstObject]; // expected-warning{{from 'NSString *'}}
155 ip = [widgetSet firstObject]; // expected-warning{{from 'Widget *'}}
156 ip = [untypedMutSet firstObject]; // expected-warning{{from 'id'}}
157 ip = [mutStringArraySet firstObject]; // expected-warning{{from 'NSArray<NSString *> *'}}
158 ip = [set firstObject]; // expected-warning{{from 'id'}}
159 ip = [mutSet firstObject]; // expected-warning{{from 'id'}}
160 ip = [mutArraySet firstObject]; // expected-warning{{from 'id'}}
161 ip = [block firstObject]; // expected-warning{{from 'id'}}
[all …]
/external/libunwind/src/ptrace/
D_UPT_find_proc_info.c36 get_unwind_info (struct elf_dyn_info *edi, pid_t pid, unw_addr_space_t as, unw_word_t ip, void *as_… in get_unwind_info() argument
49 if (edi->ktab.format != -1 && ip >= edi->ktab.start_ip && ip < edi->ktab.end_ip) in get_unwind_info()
54 && ip >= edi->di_cache.start_ip && ip < edi->di_cache.end_ip) in get_unwind_info()
57 && ip >= edi->di_arm.start_ip && ip < edi->di_arm.end_ip) in get_unwind_info()
60 && ip >= edi->di_debug.start_ip && ip < edi->di_debug.end_ip)) in get_unwind_info()
66 if (tdep_get_elf_image (as, &ei, pid, ip, &segbase, &mapoff, &path, as_arg) < 0) in get_unwind_info()
69 ret = tdep_find_unwind_table (edi, &ei, as, path, segbase, mapoff, ip); in get_unwind_info()
80 && (ip < edi->di_cache.start_ip || ip >= edi->di_cache.end_ip)) in get_unwind_info()
84 && (ip < edi->di_debug.start_ip || ip >= edi->di_debug.end_ip)) in get_unwind_info()
98 _UPT_find_proc_info (unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, in _UPT_find_proc_info() argument
[all …]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/
DBase64Coder.java110 int ip = 0; in encodeLines() local
111 while (ip < iLen) { in encodeLines()
112 int l = Math.min(iLen - ip, blockLen); in encodeLines()
113 buf.append(encode(in, iOff + ip, l)); in encodeLines()
115 ip += l; in encodeLines()
163 int ip = iOff; in encode() local
166 while (ip < iEnd) { in encode()
167 int i0 = in[ip++] & 0xff; in encode()
168 int i1 = ip < iEnd ? in[ip++] & 0xff : 0; in encode()
169 int i2 = ip < iEnd ? in[ip++] & 0xff : 0; in encode()
[all …]
/external/libvpx/libvpx/vp8/common/x86/
Diwalsh_sse2.asm26 movdqa xmm0, [rcx + 0] ;ip[4] ip[0]
27 movdqa xmm1, [rcx + 16] ;ip[12] ip[8]
30 pshufd xmm2, xmm1, 4eh ;ip[8] ip[12]
31 movdqa xmm3, xmm0 ;ip[4] ip[0]
33 paddw xmm0, xmm2 ;ip[4]+ip[8] ip[0]+ip[12] aka b1 a1
34 psubw xmm3, xmm2 ;ip[4]-ip[8] ip[0]-ip[12] aka c1 d1
57 pshufd xmm2, xmm1, 4eh ;ip[8] ip[12]
58 movdqa xmm3, xmm4 ;ip[4] ip[0]
62 paddw xmm4, xmm2 ;ip[4]+ip[8] ip[0]+ip[12] aka b1 a1
63 psubw xmm3, xmm2 ;ip[4]-ip[8] ip[0]-ip[12] aka c1 d1
/external/libunwind/src/coredump/
D_UCD_find_proc_info.c30 get_unwind_info(struct UCD_info *ui, unw_addr_space_t as, unw_word_t ip) in get_unwind_info() argument
38 if (ui->edi.ktab.format != -1 && ip >= ui->edi.ktab.start_ip && ip < ui->edi.ktab.end_ip) in get_unwind_info()
43 && ip >= ui->edi.di_cache.start_ip && ip < ui->edi.di_cache.end_ip) in get_unwind_info()
46 && ip >= ui->edi.di_arm.start_ip && ip < ui->edi.di_arm.end_ip) in get_unwind_info()
49 && ip >= ui->edi.di_debug.start_ip && ip < ui->edi.di_debug.end_ip)) in get_unwind_info()
55 coredump_phdr_t *phdr = _UCD_get_elf_image(ui, ip); in get_unwind_info()
71 if (tdep_find_unwind_table(&ui->edi, as, phdr->backing_filename, segbase, mapoff, ip) < 0) in get_unwind_info()
82 && (ip < ui->edi.di_cache.start_ip || ip >= ui->edi.di_cache.end_ip)) in get_unwind_info()
86 && (ip < ui->edi.di_debug.start_ip || ip >= ui->edi.di_debug.end_ip)) in get_unwind_info()
104 _UCD_find_proc_info (unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, in _UCD_find_proc_info() argument
[all …]
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dr500_fragprog_emit.c223 static void alu_nop(struct r300_fragment_program_compiler *c, int ip) in alu_nop() argument
227 if ((code->inst[ip].inst0 & 0x3) != R500_INST_TYPE_TEX) { in alu_nop()
228 code->inst[ip].inst0 |= R500_INST_NOP; in alu_nop()
237 int ip; in emit_paired() local
245 ip = ++code->inst_end; in emit_paired()
250 if (ip > 0) { in emit_paired()
251 alu_nop(c, ip - 1); in emit_paired()
255 code->inst[ip].inst5 = translate_rgb_op(c, inst->RGB.Opcode); in emit_paired()
256 code->inst[ip].inst4 = translate_alpha_op(c, inst->Alpha.Opcode); in emit_paired()
259 code->inst[ip].inst0 = R500_INST_TYPE_OUT; in emit_paired()
[all …]
/external/clang/test/SemaCXX/
Dscope-check.cpp45 int f(void **ip) { in f() argument
49 goto *ip; in f()
60 int f(void **ip) { in f() argument
63 goto *ip; in f()
77 int f(void **ip) { in f() argument
82 goto *ip; // expected-error {{cannot jump}} in f()
95 int f(void **ip) { in f() argument
99 goto *ip; in f()
103 if (ip[1]) { in f()
105 ip += 2; in f()
[all …]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
Dp1-0x.cpp35 void test_simple_deduction(int *ip, float *fp, double *dp) { in test_simple_deduction() argument
36 int *ip1 = first_arg(ip); in test_simple_deduction()
37 int *ip2 = first_arg(ip, fp); in test_simple_deduction()
38 int *ip3 = first_arg(ip, fp, dp); in test_simple_deduction()
48 void test_simple_ref_deduction(int *ip, float *fp, double *dp) { in test_simple_ref_deduction() argument
49 int *ip1 = first_arg_ref(ip); in test_simple_ref_deduction()
50 int *ip2 = first_arg_ref(ip, fp); in test_simple_ref_deduction()
51 int *ip3 = first_arg_ref(ip, fp, dp); in test_simple_ref_deduction()
63 void test_pair_deduction(int *ip, float *fp, double *dp) { in test_pair_deduction() argument
64 int *ip1 = first_arg_pair(make_pair(ip, 17)); in test_pair_deduction()
[all …]

12345678910>>...41