Searched refs:bptr (Results 1 - 25 of 25) sorted by relevance

/external/clang/test/Analysis/
H A Dstack-block-returned.cpp3 typedef void (^bptr)(void);
5 bptr bf(int j) {
7 const bptr &qq = ^{ i=0; }; // expected-note {{binding reference variable 'qq' here}}
/external/libjpeg-turbo/
H A Djmemmgr.c622 jvirt_barray_ptr bptr; local
638 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
639 if (bptr->mem_buffer == NULL) { /* if not realized yet */
640 space_per_minheight += (long) bptr->maxaccess *
641 (long) bptr->blocksperrow * sizeof(JBLOCK);
642 maximum_space += (long) bptr->rows_in_array *
643 (long) bptr
980 jvirt_barray_ptr bptr; local
[all...]
H A Djquant2.c765 register INT32 * bptr; /* pointer into bestdist[] array */ local
776 bptr = bestdist;
778 *bptr++ = 0x7FFFFFFFL;
804 bptr = bestdist;
814 if (dist2 < *bptr) {
815 *bptr = dist2;
820 bptr++;
/external/opencv3/3rdparty/libjpeg/
H A Djmemmgr.c591 jvirt_barray_ptr bptr; local
607 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
608 if (bptr->mem_buffer == NULL) { /* if not realized yet */
609 space_per_minheight += (long) bptr->maxaccess *
610 (long) bptr->blocksperrow * SIZEOF(JBLOCK);
611 maximum_space += (long) bptr->rows_in_array *
612 (long) bptr
949 jvirt_barray_ptr bptr; local
[all...]
H A Djquant2.c787 register INT32 * bptr; /* pointer into bestdist[] array */ local
798 bptr = bestdist;
800 *bptr++ = 0x7FFFFFFFL;
826 bptr = bestdist;
836 if (dist2 < *bptr) {
837 *bptr = dist2;
842 bptr++;
/external/pdfium/third_party/libjpeg/
H A Dfpdfapi_jmemmgr.c592 jvirt_barray_ptr bptr; local
608 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
609 if (bptr->mem_buffer == NULL) { /* if not realized yet */
610 space_per_minheight += (long) bptr->maxaccess *
611 (long) bptr->blocksperrow * SIZEOF(JBLOCK);
612 maximum_space += (long) bptr->rows_in_array *
613 (long) bptr
950 jvirt_barray_ptr bptr; local
[all...]
/external/pcre/dist/
H A Dpcretest.c245 #define PCRE_COPY_NAMED_SUBSTRING8(rc, re, bptr, offsets, count, \
247 rc = pcre_copy_named_substring(re, (char *)bptr, offsets, count, \
250 #define PCRE_COPY_SUBSTRING8(rc, bptr, offsets, count, i, cbuffer, size) \
251 rc = pcre_copy_substring((char *)bptr, offsets, count, i, cbuffer, size)
253 #define PCRE_DFA_EXEC8(count, re, extra, bptr, len, start_offset, options, \
255 count = pcre_dfa_exec(re, extra, (char *)bptr, len, start_offset, options, \
258 #define PCRE_EXEC8(count, re, extra, bptr, len, start_offset, options, \
260 count = pcre_exec(re, extra, (char *)bptr, len, start_offset, options, \
272 #define PCRE_GET_NAMED_SUBSTRING8(rc, re, bptr, offsets, count, \
274 rc = pcre_get_named_substring(re, (char *)bptr, offset
2795 check_match_limit(pcre *re, pcre_extra *extra, pcre_uint8 *bptr, int len, int start_offset, int options, int *use_offsets, int use_size_offsets, int flag, unsigned long int *limit, int errnumber, const char *msg) argument
4480 pcre_uint8 *bptr; local
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/cng/
H A Dwebrtc_cng.c246 int32_t* bptr; local
302 bptr = corrVector;
308 negate = *bptr < 0;
310 *bptr = -*bptr;
312 blo = (int32_t) * aptr * (*bptr & 0xffff);
314 + ((int32_t)(*aptr++) * ((*bptr >> 16) & 0xffff));
317 *bptr = (((bhi >> 16) & 0x7fff) << 17) | ((uint32_t) blo >> 15);
319 *bptr = -*bptr;
[all...]
/external/clang/test/Sema/
H A Dblock-return.c88 typedef void (^bptr)(void);
90 bptr foo5(int j) {
/external/libedit/examples/
H A Dwtc1.c62 char *buf, *bptr; local
76 buf = bptr = malloc(mblen);
81 bptr += wctomb(bptr, ptr[i]);
83 *bptr = 0; /* Terminate multibyte string */
84 mblen = bptr - buf;
/external/mdnsresponder/mDNSPosix/
H A DProxyResponder.c137 unsigned char txtbuffer[1024], *bptr = txtbuffer; local
146 if (len > 255 || bptr + 1 + len >= txtbuffer + sizeof(txtbuffer)) break;
148 bptr[0] = len;
149 strcpy((char*)(bptr+1), argv[0]);
150 bptr += 1 + len;
158 txtbuffer, bptr-txtbuffer, // TXT data, length
/external/aac/libSYS/src/
H A Dwav_file.cpp263 SCHAR *bptr = (SCHAR*)buffer; local
291 *bptr++ = (SCHAR) tmp;
302 result += FDKfread(&(bptr[i<<1]), 1, 1, wav->fp) ;
303 sptr[i] = ulaw2pcm(bptr[i<<1]) ;
467 SCHAR *bptr = (SCHAR*)sampleBuffer; local
489 case 8: tmp = *bptr++; break;
/external/libxml2/
H A Duri.c2171 xmlChar *bptr, *uptr, *vptr; local
2248 bptr = (xmlChar *)bas->path;
2250 for (ix = 0; bptr[ix] != 0; ix++) {
2251 if (bptr[ix] == '/')
2262 if ((*bptr == '.') && (bptr[1] == '/'))
2263 bptr += 2;
2264 else if ((*bptr == '/') && (ref->path[pos] != '/'))
2265 bptr++;
2266 while ((bptr[po
[all...]
/external/boringssl/src/crypto/bn/asm/
H A Dx86_64-mont.pl727 my $bptr="%rdx"; # not used
924 my ($aptr, $bptr, $nptr, $tptr, $mi, $bi, $zero, $num)=
926 my $rptr=$bptr;
928 lea 8($bp),$bptr
936 mov $bptr,8(%rsp) # off-load &b[i]
941 mov $mi,$bptr # borrow $bptr
952 adcx %rax,$bptr # discarded
958 mov 48(%rsp),$bptr # counter value
1009 dec $bptr # o
[all...]
H A Darmv4-mont.pl274 my ($rptr,$aptr,$bptr,$nptr,$n0,$num)=map("r$_",(0..5));
291 vld1.32 {${Bi}[0]}, [$bptr,:32]!
349 vld1.32 {${Bi}[0]}, [$bptr,:32]!
468 vld1.32 {${Bi}[0]}, [$bptr,:32]!
630 add $bptr,sp,$num,lsl#2
639 teq $aptr,$bptr @ preserves carry
645 sub r11,$bptr,sp @ this is num*4
649 mov $nptr,$bptr @ second 3/4th of frame
671 teq $aptr,$bptr @ preserves carry
H A Dx86_64-mont5.pl901 my $bptr="%rdx"; # const void *table,
988 movq $bptr,%xmm4
997 movq %xmm4,$bptr
2131 my ($aptr, $bptr, $nptr, $tptr, $mi, $bi, $zero, $num)=
2133 my $rptr=$bptr;
2143 lea 96($bp,%r11,8),$bptr # pointer within 1st cache line
2151 movq `0*$STRIDE/4-96`($bptr),%xmm0
2152 lea $STRIDE($bptr),$tptr # borrow $tptr
2153 movq `1*$STRIDE/4-96`($bptr),%xmm1
2155 movq `2*$STRIDE/4-96`($bptr),
[all...]
/external/avahi/avahi-compat-howl/include/corby/
H A Dbuffer.h75 sw_uint8 ** bptr,
87 sw_uint8 ** bptr,
/external/opencv/cv/src/
H A Dcvfilter.cpp352 uchar* bptr = can_use_src_as_trow && y1 < y && y+1 < y2 ? (uchar*)(src - bsz1) : trow; local
354 if( bptr != trow )
357 trow[i] = bptr[i];
359 trow[i] = bptr[i + width_n];
361 else if( !(((size_t)(bptr + bsz1)|(size_t)src|width_n) & (sizeof(int)-1)) )
363 *(int*)(bptr + i + bsz1) = *(int*)(src + i);
366 bptr[i + bsz1] = src[i];
373 bptr[i] = bptr[j];
378 bptr[
[all...]
/external/toybox/toys/pending/
H A Dnetstat.c318 char sock_flags[32] = {0,}, *sock_type, *sock_state, *bptr = toybuf, *term; local
364 bptr += path_offset;
365 if ((term = strchr(bptr, '\n'))) *term = '\0';
366 xprintf("%s\n", bptr);
/external/skia/tests/
H A DAAClipTest.cpp48 const char* bptr = (const char*)b.fImage; local
50 if (memcmp(aptr, bptr, wbytes)) {
54 bptr += wbytes;
/external/mesa3d/src/mesa/tnl/
H A Dt_draw.c253 GLboolean *bptr = space; local
257 *bptr++ = ((GLfloat *)ptr)[0] == 1.0;
/external/opencv3/modules/core/test/
H A Dtest_arithm.cpp567 const uchar* bptr = planes[2].ptr();
573 inRange_((const uchar*)sptr, (const uchar*)aptr, (const uchar*)bptr, dptr, total, cn);
576 inRange_((const schar*)sptr, (const schar*)aptr, (const schar*)bptr, dptr, total, cn);
579 inRange_((const ushort*)sptr, (const ushort*)aptr, (const ushort*)bptr, dptr, total, cn);
582 inRange_((const short*)sptr, (const short*)aptr, (const short*)bptr, dptr, total, cn);
585 inRange_((const int*)sptr, (const int*)aptr, (const int*)bptr, dptr, total, cn);
588 inRange_((const float*)sptr, (const float*)aptr, (const float*)bptr, dptr, total, cn);
591 inRange_((const double*)sptr, (const double*)aptr, (const double*)bptr, dptr, total, cn);
/external/opencv3/modules/core/src/
H A Dmatrix.cpp3823 T* bptr;
3836 bptr = (T*)buf;
3851 T* ptr = bptr;
3946 T* bptr;
3962 bptr = (T*)buf;
3978 T* ptr = bptr;
/external/opencv3/modules/ts/src/
H A Dts_func.cpp219 const double* bptr = bpart.ptr<double>(); local
222 aptr[k] += bptr[k] + gptr[k];
/external/mesa3d/src/mesa/main/
H A Ddlist.c842 GLbyte *bptr; local
852 bptr = (GLbyte *) list;
853 return (GLint) bptr[n];

Completed in 1464 milliseconds