Home
last modified time | relevance | path

Searched refs:optr (Results 1 – 22 of 22) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_resize.c163 uint8_t *optr = output; in interpolate() local
197 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS)); in interpolate()
211 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS)); in interpolate()
222 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS)); in interpolate()
235 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS)); in interpolate()
246 uint8_t *optr = output; in down2_symeven() local
261 *optr++ = clip_pixel(sum); in down2_symeven()
271 *optr++ = clip_pixel(sum); in down2_symeven()
280 *optr++ = clip_pixel(sum); in down2_symeven()
291 *optr++ = clip_pixel(sum); in down2_symeven()
[all …]
/external/libaom/libaom/av1/common/
Dresize.c249 uint8_t *optr = output; in interpolate_core() local
279 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS)); in interpolate_core()
290 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS)); in interpolate_core()
300 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS)); in interpolate_core()
311 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS)); in interpolate_core()
333 double *optr = output; in interpolate_core_double_prec() local
364 *optr++ = sum / (1 << FILTER_BITS); in interpolate_core_double_prec()
375 *optr++ = sum / (1 << FILTER_BITS); in interpolate_core_double_prec()
385 *optr++ = sum / (1 << FILTER_BITS); in interpolate_core_double_prec()
396 *optr++ = sum / (1 << FILTER_BITS); in interpolate_core_double_prec()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/
Dv60-vsel1.ll41 %optr.048 = phi <16 x i32>* [ %0, %for.body.lr.ph ], [ %incdec.ptr, %for.body ]
43 %incdec.ptr = getelementptr inbounds <16 x i32>, <16 x i32>* %optr.048, i32 1
44 store <16 x i32> %15, <16 x i32>* %optr.048, align 64
54 %optr.0.lcssa = phi <16 x i32>* [ %scevgep51, %for.cond.for.end_crit_edge ], [ %0, %entry ]
55 %16 = load <16 x i32>, <16 x i32>* %optr.0.lcssa, align 64
57 store <16 x i32> %17, <16 x i32>* %optr.0.lcssa, align 64
Dframe-offset-overflow.ll42 %optr.0102 = phi <16 x i32>* [ %incdec.ptr24.3, %for.body ], [ %5, %entry ]
73 %incdec.ptr24 = getelementptr inbounds <16 x i32>, <16 x i32>* %optr.0102, i32 1
74 store <16 x i32> %28, <16 x i32>* %optr.0102, align 64, !tbaa !1
91 %incdec.ptr24.1 = getelementptr inbounds <16 x i32>, <16 x i32>* %optr.0102, i32 2
113 %incdec.ptr24.2 = getelementptr inbounds <16 x i32>, <16 x i32>* %optr.0102, i32 3
141 %incdec.ptr24.3 = getelementptr inbounds <16 x i32>, <16 x i32>* %optr.0102, i32 4
/external/libcups/cups/
Dtestconflicts.c36 *optr, /* Pointer to first option name */ in main() local
103 for (optr = ptr; *ptr && *ptr != '='; ptr ++); in main()
111 option = strdup(optr); in main()
/external/curl/tests/server/
Dutil.c80 char *optr = buf; in data_to_hex() local
88 *optr++ = *iptr++; in data_to_hex()
90 msnprintf(optr, 4, "%%%02x", *iptr++); in data_to_hex()
91 optr += 3; in data_to_hex()
94 *optr = 0; /* in case no sprintf was used */ in data_to_hex()
Dsockfilt.c482 char *optr = data; in lograw() local
489 msnprintf(optr, left, "\\n"); in lograw()
491 optr += 2; in lograw()
495 msnprintf(optr, left, "\\r"); in lograw()
497 optr += 2; in lograw()
501 msnprintf(optr, left, "%c", (ISGRAPH(ptr[i]) || in lograw()
504 optr++; in lograw()
512 optr = data; in lograw()
/external/giflib/
Dopenbsd-reallocarray.c30 reallocarray(void *optr, size_t nmemb, size_t size) in reallocarray() argument
37 return realloc(optr, size * nmemb); in reallocarray()
Dgif_lib.h248 reallocarray(void *optr, size_t nmemb, size_t size);
/external/openssh/openbsd-compat/
Dreallocarray.c37 reallocarray(void *optr, size_t nmemb, size_t size) in reallocarray() argument
44 return realloc(optr, size * nmemb); in reallocarray()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/NVPTX/
Dlower-kernel-ptr-arg.ll33 ; CHECK: ld.param.u64 %[[optr:rd.*]], [ptr_in_byval_kernel_param_1]
34 ; CHECK: cvta.to.global.u64 %[[optr_g:.*]], %[[optr]];
51 ; CHECK: ld.param.u64 %[[optr:rd.*]], [ptr_in_byval_func_param_1]
58 ; CHECK: st.u32 [%[[optr]]], %[[val]]
/external/pcre/dist2/src/
Dpcre2_jit_test.c971 PCRE2_UCHAR16 *optr = output; in convert_utf8_to_utf16() local
996 *optr++ = c; in convert_utf8_to_utf16()
999 *optr = '\0'; in convert_utf8_to_utf16()
1000 return (int)(optr - output); in convert_utf8_to_utf16()
1003 *optr++ = 0xd800 | ((c >> 10) & 0x3ff); in convert_utf8_to_utf16()
1004 *optr++ = 0xdc00 | (c & 0x3ff); in convert_utf8_to_utf16()
1012 *optr = '\0'; in convert_utf8_to_utf16()
1013 return (int)(optr - output); in convert_utf8_to_utf16()
1019 PCRE2_UCHAR16 *optr = output; in copy_char8_to_char16() local
1025 *optr++ = *iptr++; in copy_char8_to_char16()
[all …]
/external/curl/lib/
Durlapi.c185 char *optr = output; in strcpy_url() local
196 *optr++ = *iptr; in strcpy_url()
206 msnprintf(optr, 4, "%%%02x", *iptr); in strcpy_url()
207 optr += 3; in strcpy_url()
210 *optr++=*iptr; in strcpy_url()
214 *optr++='%'; /* add a '%' */ in strcpy_url()
215 *optr++='2'; /* add a '2' */ in strcpy_url()
216 *optr++='0'; /* add a '0' */ in strcpy_url()
219 *optr++='+'; /* add a '+' here */ in strcpy_url()
223 *optr = 0; /* zero terminate output buffer */ in strcpy_url()
Dsendf.c563 char *optr, in chop_write() argument
569 char *ptr = optr; in chop_write()
622 ptr = optr; in chop_write()
Dhttp.c1772 char *optr; in Curl_add_custom_headers() local
1776 optr = ptr; in Curl_add_custom_headers()
1783 optr = NULL; in Curl_add_custom_headers()
1796 optr = &semicolonp [ptr - headers->data]; in Curl_add_custom_headers()
1799 ptr = optr; in Curl_add_custom_headers()
/external/speex/libspeexdsp/
Dfftwrap.c261 float *optr = t->out; in spx_fft() local
268 out[0] = optr[0]; in spx_fft()
270 out[i] = optr[i+1]; in spx_fft()
279 float *optr = t->out; in spx_ifft() local
290 out[i] = optr[i]; in spx_ifft()
/external/tcpdump/
Dprint-isoclns.c769 const uint8_t *optr,*source_address,*dest_address; in clnp_print() local
779 optr = pptr; in clnp_print()
867 osi_print_cksum(ndo, optr, EXTRACT_16BITS(clnp_header->cksum), 7, in clnp_print()
1053 if (length-(pptr-optr) > 0) { in clnp_print()
1055 print_unknown_data(ndo, pptr, "\n\t ", length - (pptr - optr)); in clnp_print()
1093 const uint8_t *optr; in esis_print() local
1108 optr = pptr; in esis_print()
1160 print_unknown_data(ndo, optr, "\n\t", sizeof(struct esis_header_t)); in esis_print()
2190 const uint8_t *optr, *pptr, *tptr; in isis_print() local
2196 optr = p; /* initialize the _o_riginal pointer to the packet start - in isis_print()
[all …]
/external/lz4/lib/
Dlz4hc.c499 BYTE* optr = (BYTE*) dest; in LZ4HC_compress_hashChain() local
535 optr = op; in LZ4HC_compress_hashChain()
583 optr = op; in LZ4HC_compress_hashChain()
586 optr = op; in LZ4HC_compress_hashChain()
605 optr = op; in LZ4HC_compress_hashChain()
643 optr = op; in LZ4HC_compress_hashChain()
689 op = optr; /* restore correct out pointer */ in LZ4HC_compress_hashChain()
/external/ppp/pppd/
Deap.c651 u_char clear[8], cipher[8], dig[SHA_DIGESTSIZE], *optr, *cp; local
772 optr = outp;
806 i = outp - optr - 1;
807 *optr = i;
823 while (optr < outp) {
827 *optr++ ^= *cp++;
832 SHA1Update(&ctxt, optr - SHA_DIGESTSIZE,
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/
Dreg_sequence.ll169 define void @t7(i32* %iptr, i32* %optr) nounwind {
183 %2 = bitcast i32* %optr to i8* ; <i8*> [#uses=2]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/
Dreg_sequence.ll170 define void @t7(i32* %iptr, i32* %optr) nounwind {
184 %2 = bitcast i32* %optr to i8* ; <i8*> [#uses=2]
/external/llvm/test/CodeGen/ARM/
Dreg_sequence.ll170 define void @t7(i32* %iptr, i32* %optr) nounwind {
184 %2 = bitcast i32* %optr to i8* ; <i8*> [#uses=2]