Searched refs:optr (Results 1 - 12 of 12) sorted by relevance

/external/pcre/dist/
H A Dpcre16_utf16_utils.c92 pcre_uchar *optr = (pcre_uchar *)output; local
111 *optr++ = 0xfeff;
116 *optr++ = host_bo ? c : ((c >> 8) | (c << 8)); /* Flip bytes if needed. */
H A Dpcre32_utf32_utils.c104 pcre_uchar *optr = (pcre_uchar *)output; local
124 *optr++ = 0x0000feffu;
127 *optr++ = host_bo ? c : swap_uint32(c);
H A Dpcre_jit_test.c977 PCRE_UCHAR16 *optr = output; local
1002 *optr++ = c;
1005 *optr = '\0';
1006 return (int)(optr - output);
1009 *optr++ = 0xd800 | ((c >> 10) & 0x3ff);
1010 *optr++ = 0xdc00 | (c & 0x3ff);
1018 *optr = '\0';
1019 return (int)(optr - output);
1025 PCRE_UCHAR16 *optr = output; local
1031 *optr
1049 PCRE_UCHAR32 *optr = output; local
1085 PCRE_UCHAR32 *optr = output; local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DRetainPtr.h153 PtrType optr = o.get(); local
154 if (optr)
155 CFRetain(optr);
157 m_ptr = optr;
165 PtrType optr = o.get(); local
166 if (optr)
167 CFRetain(optr);
169 m_ptr = optr;
175 template<typename T> inline RetainPtr<T>& RetainPtr<T>::operator=(PtrType optr) argument
177 if (optr)
186 operator =(U* optr) argument
211 adoptCF(PtrType optr) argument
219 adoptNS(PtrType optr) argument
[all...]
H A DRefPtr.h129 template<typename T> inline RefPtr<T>& RefPtr<T>::operator=(T* optr) argument
131 RefPtr ptr = optr;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_resize.c235 uint8_t *optr = output; local
269 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS));
283 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS));
294 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS));
307 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS));
318 uint8_t *optr = output; local
333 *optr++ = clip_pixel(sum);
343 *optr++ = clip_pixel(sum);
352 *optr++ = clip_pixel(sum);
363 *optr
374 uint8_t *optr = output; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_resize.c235 uint8_t *optr = output; local
269 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS));
283 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS));
294 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS));
307 *optr++ = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS));
318 uint8_t *optr = output; local
333 *optr++ = clip_pixel(sum);
343 *optr++ = clip_pixel(sum);
352 *optr++ = clip_pixel(sum);
363 *optr
374 uint8_t *optr = output; local
[all...]
/external/openssl/crypto/comp/
H A Dc_zlib.c435 unsigned char *optr; /* Position in output buffer */ member in struct:__anon28196
616 ctx->optr = ctx->obuf;
629 ret = BIO_write(b->next_bio, ctx->optr, ctx->ocount);
638 ctx->optr += ret;
649 ctx->optr = ctx->obuf;
683 ret = BIO_write(b->next_bio, ctx->optr, ctx->ocount);
689 ctx->optr += ret;
697 ctx->optr = ctx->obuf;
/external/speex/libspeex/
H A Dfftwrap.c210 float *optr = t->out; local
217 out[0] = optr[0];
219 out[i] = optr[i+1];
228 float *optr = t->out; local
239 out[i] = optr[i];
/external/tcpdump/
H A Dprint-isoclns.c775 const u_int8_t *optr,*source_address,*dest_address; local
785 optr = pptr;
837 osi_print_cksum(optr, EXTRACT_16BITS(clnp_header->cksum), 7,
991 if (length-(pptr-optr) > 0) {
993 print_unknown_data(pptr,"\n\t ",length-(pptr-optr));
1030 const u_int8_t *optr; local
1048 optr = pptr;
1099 print_unknown_data(optr,"\n\t",sizeof(struct esis_header_t));
2095 const u_int8_t *optr, *pptr, *tptr; local
2101 optr
[all...]
/external/libvpx/libvpx/vp8/
H A Dvp8_cx_iface.c579 struct VP8_COMP *optr; local
645 optr = vp8_create_compressor(&ctx->priv->alg_priv->oxcf);
647 if (!optr)
650 ctx->priv->alg_priv->cpi = optr;
/external/ppp/pppd/
H A 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,

Completed in 230 milliseconds