HomeSort by relevance Sort by last modified time
    Searched defs:bptr (Results 1 - 14 of 14) sorted by null

  /external/aac/libSYS/src/
wav_file.cpp 263 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/libedit/examples/
wtc1.c 62 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/
ProxyResponder.c 137 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/mesa3d/src/mesa/tnl/
t_draw.c 253 GLboolean *bptr = space; local
257 *bptr++ = ((GLfloat *)ptr)[0] == 1.0;
  /external/opencv/cv/src/
cvfilter.cpp 352 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[i + width_n] = bptr[j]
    [all...]
  /external/skia/tests/
AAClipTest.cpp 49 const char* bptr = (const char*)b.fImage; local
51 if (memcmp(aptr, bptr, wbytes)) {
55 bptr += wbytes;
  /external/webrtc/webrtc/modules/audio_coding/codecs/cng/
webrtc_cng.c 246 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/libjpeg-turbo/
jmemmgr.c 645 jvirt_barray_ptr bptr; local
665 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
666 if (bptr->mem_buffer == NULL) { /* if not realized yet */
667 size_t new_space = (long) bptr->rows_in_array *
668 (long) bptr->blocksperrow * sizeof(JBLOCK);
670 space_per_minheight += (long) bptr->maxaccess *
671 (long) bptr->blocksperrow * sizeof(JBLOCK)
1011 jvirt_barray_ptr bptr; local
    [all...]
jquant2.c 766 register JLONG *bptr; /* pointer into bestdist[] array */ local
777 bptr = bestdist;
779 *bptr++ = 0x7FFFFFFFL;
805 bptr = bestdist;
815 if (dist2 < *bptr) {
816 *bptr = dist2;
821 bptr++;
    [all...]
  /external/libxml2/
uri.c 2172 xmlChar *bptr, *uptr, *vptr; local
    [all...]
  /external/mdnsresponder/mDNSWindows/
mDNSWin32.h 65 uint8_t * bptr; member in struct:TCPSocket_struct
  /external/pdfium/third_party/libjpeg/
fpdfapi_jmemmgr.c 592 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->blocksperrow * SIZEOF(JBLOCK)
950 jvirt_barray_ptr bptr; local
    [all...]
  /external/openssh/
sshkey.c 3480 const u_char *bptr; local
    [all...]
  /external/mesa3d/src/mesa/main/
dlist.c 842 GLbyte *bptr; local
852 bptr = (GLbyte *) list;
853 return (GLint) bptr[n];
    [all...]

Completed in 1481 milliseconds