/third_party/ffmpeg/libavfilter/ |
H A D | phase_template.c | 74 const pixel *optr = (pixel *)old->data[0]; in analyze_plane() local 86 optr += os; in analyze_plane() 93 for (rend = nptr + w; nptr < rend; nptr++, optr++) { in analyze_plane() 95 tdif += DIFF(nptr, ns, optr, os); in analyze_plane() 98 for (rend = nptr + w; nptr < rend; nptr++, optr++) { in analyze_plane() 100 tdif += DIFF(optr, os, nptr, ns); in analyze_plane() 106 for (rend = nptr + w; nptr < rend; nptr++, optr++) { in analyze_plane() 108 bdif += DIFF(optr, os, nptr, ns); in analyze_plane() 111 for (rend = nptr + w; nptr < rend; nptr++, optr++) { in analyze_plane() 113 bdif += DIFF(nptr, ns, optr, o in analyze_plane() [all...] |
/third_party/curl/lib/ |
H A D | mprintf.c | 244 struct outsegment *optr; in parsefmt() local 261 optr = &out[ocount++]; in parsefmt() 264 optr->input = 0; in parsefmt() 265 optr->flags = FLAGS_SUBSTR; in parsefmt() 266 optr->start = start; in parsefmt() 267 optr->outlen = outlen; in parsefmt() 558 optr = &out[ocount++]; in parsefmt() 561 optr->input = param; in parsefmt() 562 optr->flags = flags; in parsefmt() 563 optr in parsefmt() 689 struct outsegment *optr = &output[i]; formatf() local [all...] |
H A D | sendf.c | 277 char *optr, in chop_write() 283 char *ptr = optr; in chop_write() 350 CURLcode result = Curl_headers_push(data, optr, htype); in chop_write() 360 wrote = writeheader(optr, 1, olen, data->set.writeheader); in chop_write() 364 return pausewrite(data, type, FALSE, optr, olen); in chop_write() 274 chop_write(struct Curl_easy *data, int type, bool skip_body_write, char *optr, size_t olen) chop_write() argument
|
H A D | http.c | 1900 char *optr; in Curl_add_custom_headers() local 1904 optr = ptr; in Curl_add_custom_headers() 1911 optr = NULL; in Curl_add_custom_headers() 1926 optr = &semicolonp [ptr - headers->data]; in Curl_add_custom_headers() 1929 ptr = optr; in Curl_add_custom_headers()
|
/third_party/node/deps/openssl/openssl/crypto/comp/ |
H A D | c_zlib.c | 277 unsigned char *optr; /* Position in output buffer */ member 448 ctx->optr = ctx->obuf; in bio_zlib_write() 464 ret = BIO_write(next, ctx->optr, ctx->ocount); in bio_zlib_write() 473 ctx->optr += ret; in bio_zlib_write() 484 ctx->optr = ctx->obuf; in bio_zlib_write() 517 ret = BIO_write(next, ctx->optr, ctx->ocount); in bio_zlib_flush() 522 ctx->optr += ret; in bio_zlib_flush() 531 ctx->optr = ctx->obuf; in bio_zlib_flush()
|
/third_party/openssl/crypto/comp/ |
H A D | c_zlib.c | 277 unsigned char *optr; /* Position in output buffer */ member 448 ctx->optr = ctx->obuf; in bio_zlib_write() 464 ret = BIO_write(next, ctx->optr, ctx->ocount); in bio_zlib_write() 473 ctx->optr += ret; in bio_zlib_write() 484 ctx->optr = ctx->obuf; in bio_zlib_write() 517 ret = BIO_write(next, ctx->optr, ctx->ocount); in bio_zlib_flush() 522 ctx->optr += ret; in bio_zlib_flush() 531 ctx->optr = ctx->obuf; in bio_zlib_flush()
|
/third_party/mesa3d/src/util/ |
H A D | reallocarray.h | 44 reallocarray(void *optr, size_t nmemb, size_t size) in reallocarray() argument 51 return realloc(optr, size * nmemb); in reallocarray()
|
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | fftwrap.c | 261 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()
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_jit_test.c | 1008 PCRE2_UCHAR16 *optr = output; in convert_utf8_to_utf16() local 1033 *optr++ = c; in convert_utf8_to_utf16() 1036 *optr = '\0'; in convert_utf8_to_utf16() 1037 return (int)(optr - output); in convert_utf8_to_utf16() 1040 *optr++ = 0xd800 | ((c >> 10) & 0x3ff); in convert_utf8_to_utf16() 1041 *optr++ = 0xdc00 | (c & 0x3ff); in convert_utf8_to_utf16() 1049 *optr = '\0'; in convert_utf8_to_utf16() 1050 return (int)(optr - output); in convert_utf8_to_utf16() 1056 PCRE2_UCHAR16 *optr = output; in copy_char8_to_char16() local 1062 *optr in copy_char8_to_char16() 1080 PCRE2_UCHAR32 *optr = output; convert_utf8_to_utf32() local 1116 PCRE2_UCHAR32 *optr = output; copy_char8_to_char32() local [all...] |
/third_party/curl/tests/server/ |
H A D | util.c | 68 char *optr = buf; in data_to_hex() local 76 *optr++ = *iptr++; in data_to_hex() 78 msnprintf(optr, 4, "%%%02x", *iptr++); in data_to_hex() 79 optr += 3; in data_to_hex() 82 *optr = 0; /* in case no sprintf was used */ in data_to_hex()
|
H A D | mqttd.c | 194 char *optr = data; in loghex() local 199 msnprintf(optr, left, "%02x", ptr[i]); in loghex() 201 optr += 2; in loghex() 221 char *optr = data; in logprotocol() local 225 msnprintf(optr, left, "%02x", ptr[i]); in logprotocol() 226 optr += 2; in logprotocol()
|
H A D | sockfilt.c | 355 char *optr = data; in lograw() local 362 msnprintf(optr, left, "\\n"); in lograw() 364 optr += 2; in lograw() 368 msnprintf(optr, left, "\\r"); in lograw() 370 optr += 2; in lograw() 374 msnprintf(optr, left, "%c", (ISGRAPH(ptr[i]) || in lograw() 377 optr++; in lograw() 385 optr = data; in lograw()
|
H A D | socksd.c | 250 char *optr = data; in loghex() local 255 msnprintf(optr, left, "%02x", ptr[i]); in loghex() 257 optr += 2; in loghex()
|
/third_party/backends/backend/ |
H A D | xerox_mfp.c | 827 SANE_Char *optr, *xptr; in dev_inquiry() local 838 dev->sane.vendor = optr = (SANE_Char *) malloc(33); in dev_inquiry() 840 *optr++ = *ptr++; in dev_inquiry() 841 *optr++ = 0; in dev_inquiry() 846 dev->sane.model = optr = (SANE_Char *) malloc(33); in dev_inquiry() 847 xptr = optr; /* is last non space character + 1 */ in dev_inquiry() 850 xptr = optr + 1; in dev_inquiry() 851 *optr++ = *ptr++; in dev_inquiry() 853 *optr++ = 0; in dev_inquiry()
|
/third_party/libsnd/src/ |
H A D | ogg_opus.c | 1281 float *optr ; in ogg_opus_write_s() local 1295 { optr = oopus->buffer + oopus->loc * psf->sf.channels ; in ogg_opus_write_s() 1299 { *optr++ = (float) (ptr [i]) / 32767.0f ; in ogg_opus_write_s() 1313 float *optr ; in ogg_opus_write_i() local 1327 { optr = oopus->buffer + oopus->loc * psf->sf.channels ; in ogg_opus_write_i() 1331 { *optr++ = (float) (ptr [i]) / 2147483647.0f ; in ogg_opus_write_i() 1372 float *optr ; in ogg_opus_write_d() local 1386 { optr = oopus->buffer + oopus->loc * psf->sf.channels ; in ogg_opus_write_d() 1390 { *optr++ = (float) (ptr [i]) ; in ogg_opus_write_d()
|
/third_party/lz4/lib/ |
H A D | lz4hc.c | 573 BYTE* optr = (BYTE*) dest; in LZ4HC_compress_hashChain() local 609 optr = op; in LZ4HC_compress_hashChain() 657 optr = op; in LZ4HC_compress_hashChain() 660 optr = op; in LZ4HC_compress_hashChain() 683 optr = op; in LZ4HC_compress_hashChain() 721 optr = op; in LZ4HC_compress_hashChain() 774 op = optr; /* restore correct out pointer */ in LZ4HC_compress_hashChain()
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfsrecover.c | 155 BOOL optr; /* show a range of blocks */ variable 3882 if ((nextblk >= (logfilesz >> blockbits)) && (optr || optf)) in walk() 3951 if (!optr && (log_major >= 2) && (nextblk == RSTBLKS)) { in walk() 3959 if (optr) { /* Only selected range */ in walk() 4176 optr = FALSE; in getoptions() 4239 optr = TRUE; in getoptions() 4292 if (!(optb || optf || optp || optr || opts || optt || optu || optV)) in getoptions() 4294 if (optb && (optf || optr || opts)) { in getoptions() 4302 if (optp && (optr || opts || optt || optu)) { in getoptions() 4306 if (optr in getoptions() [all...] |
/third_party/lwip/src/netif/ppp/ |
H A D | eap.c | 647 u_char clear[8], cipher[8], dig[SHA_DIGESTSIZE], *optr, *cp; in eap_send_request() local 779 optr = outp; in eap_send_request() 813 i = outp - optr - 1; in eap_send_request() 814 *optr = i; in eap_send_request() 828 while (optr < outp) { in eap_send_request() 832 *optr++ ^= *cp++; in eap_send_request() 837 SHA1Update(&ctxt, optr - SHA_DIGESTSIZE, in eap_send_request()
|