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

12

/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/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_draw.c253 GLboolean *bptr = space; local
257 *bptr++ = ((GLfloat *)ptr)[0] == 1.0;
/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/mesa3d/src/mesa/tnl/
H A Dt_draw.c253 GLboolean *bptr = space; local
257 *bptr++ = ((GLfloat *)ptr)[0] == 1.0;
/external/qemu/slirp/
H A Dtcp_subr.c616 char *bptr; local
965 if ((bptr = (char *)strstr(m->m_data, "ORT")) != NULL) {
969 x = sscanf(bptr, "ORT %u,%u,%u,%u,%u,%u\r\n%256[^\177]",
992 m->m_len = bptr - m->m_data; /* Adjust length */
993 m->m_len += snprintf(bptr, m->m_hdr.mh_size - m->m_len,
997 } else if ((bptr = (char *)strstr(m->m_data, "27 Entering")) != NULL) {
1001 x = sscanf(bptr, "27 Entering Passive Mode (%u,%u,%u,%u,%u,%u)\r\n%256[^\177]",
1024 m->m_len = bptr - m->m_data; /* Adjust length */
1025 m->m_len += snprintf(bptr, m->m_hdr.mh_size - m->m_len,
1059 if ((bptr
[all...]
H A Dmisc.c260 char *bptr; local
341 bptr = strdup(ex); /* No need to free() this */
346 argv[i++] = bptr;
350 curarg = bptr;
351 while (*bptr != ' ' && *bptr != (char)0)
352 bptr++;
353 c = *bptr;
354 *bptr++ = (char)0;
412 char *bptr; local
[all...]
/external/chromium_org/third_party/skia/tests/
H A DAAClipTest.cpp48 const char* bptr = (const char*)b.fImage; local
50 if (memcmp(aptr, bptr, wbytes)) {
54 bptr += wbytes;
/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/qemu/slirp-android/
H A Dmisc.c237 char *bptr; local
307 bptr = strdup(ex); /* No need to free() this */
312 argv[i++] = bptr;
316 curarg = bptr;
317 while (*bptr != ' ' && *bptr != (char)0)
318 bptr++;
319 c = *bptr;
320 *bptr++ = (char)0;
375 char *bptr; local
[all...]
H A Dtcp_subr.c771 char *bptr; local
820 if ((bptr = (char *)strstr(m->m_data, "ORT")) != NULL) {
824 x = sscanf(bptr, "ORT %u,%u,%u,%u,%u,%u\r\n%256[^\177]",
847 m->m_len = bptr - m->m_data; /* Adjust length */
848 m->m_len += snprintf(bptr, m->m_hdr.mh_size - m->m_len,
852 } else if ((bptr = (char *)strstr(m->m_data, "27 Entering")) != NULL) {
856 x = sscanf(bptr, "27 Entering Passive Mode (%u,%u,%u,%u,%u,%u)\r\n%256[^\177]",
879 m->m_len = bptr - m->m_data; /* Adjust length */
880 m->m_len += snprintf(bptr, m->m_hdr.mh_size - m->m_len,
914 if ((bptr
[all...]
/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/chromium_org/third_party/libjpeg_turbo/
H A Djmemmgr.c623 jvirt_barray_ptr bptr; local
639 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
640 if (bptr->mem_buffer == NULL) { /* if not realized yet */
641 space_per_minheight += (long) bptr->maxaccess *
642 (long) bptr->blocksperrow * SIZEOF(JBLOCK);
643 maximum_space += (long) bptr->rows_in_array *
644 (long) bptr
981 jvirt_barray_ptr bptr; local
[all...]
H A Djquant2.c770 register INT32 * bptr; /* pointer into bestdist[] array */ local
781 bptr = bestdist;
783 *bptr++ = 0x7FFFFFFFL;
809 bptr = bestdist;
819 if (dist2 < *bptr) {
820 *bptr = dist2;
825 bptr++;
/external/chromium_org/third_party/libxml/src/
H A Duri.c2249 xmlChar *bptr, *uptr, *vptr; local
2326 bptr = (xmlChar *)bas->path;
2328 for (ix = 0; bptr[ix] != 0; ix++) {
2329 if (bptr[ix] == '/')
2340 if ((*bptr == '.') && (bptr[1] == '/'))
2341 bptr += 2;
2342 else if ((*bptr == '/') && (ref->path[pos] != '/'))
2343 bptr++;
2344 while ((bptr[po
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/cng/
H A Dwebrtc_cng.c247 int32_t* bptr; local
303 bptr = corrVector;
309 negate = *bptr < 0;
311 *bptr = -*bptr;
313 blo = (int32_t) * aptr * (*bptr & 0xffff);
315 + ((int32_t)(*aptr++) * ((*bptr >> 16) & 0xffff));
318 *bptr = (((bhi >> 16) & 0x7fff) << 17) | ((uint32_t) blo >> 15);
320 *bptr = -*bptr;
[all...]
/external/jpeg/
H A Djmemmgr.c590 jvirt_barray_ptr bptr; local
606 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
607 if (bptr->mem_buffer == NULL) { /* if not realized yet */
608 space_per_minheight += (long) bptr->maxaccess *
609 (long) bptr->blocksperrow * SIZEOF(JBLOCK);
610 maximum_space += (long) bptr->rows_in_array *
611 (long) bptr
948 jvirt_barray_ptr bptr; local
[all...]
H A Djquant2.c786 register INT32 * bptr; /* pointer into bestdist[] array */ local
797 bptr = bestdist;
799 *bptr++ = 0x7FFFFFFFL;
825 bptr = bestdist;
835 if (dist2 < *bptr) {
836 *bptr = dist2;
841 bptr++;
/external/libxml2/
H A Duri.c2168 xmlChar *bptr, *uptr, *vptr; local
2245 bptr = (xmlChar *)bas->path;
2247 for (ix = 0; bptr[ix] != 0; ix++) {
2248 if (bptr[ix] == '/')
2259 if ((*bptr == '.') && (bptr[1] == '/'))
2260 bptr += 2;
2261 else if ((*bptr == '/') && (ref->path[pos] != '/'))
2262 bptr++;
2263 while ((bptr[po
[all...]
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jmemmgr.c593 jvirt_barray_ptr bptr; local
609 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
610 if (bptr->mem_buffer == NULL) { /* if not realized yet */
611 space_per_minheight += (long) bptr->maxaccess *
612 (long) bptr->blocksperrow * SIZEOF(JBLOCK);
613 maximum_space += (long) bptr->rows_in_array *
614 (long) bptr
951 jvirt_barray_ptr bptr; local
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djmemmgr.c590 jvirt_barray_ptr bptr; local
606 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
607 if (bptr->mem_buffer == NULL) { /* if not realized yet */
608 space_per_minheight += (long) bptr->maxaccess *
609 (long) bptr->blocksperrow * SIZEOF(JBLOCK);
610 maximum_space += (long) bptr->rows_in_array *
611 (long) bptr
948 jvirt_barray_ptr bptr; local
[all...]
H A Djquant2.c786 register INT32 * bptr; /* pointer into bestdist[] array */ local
797 bptr = bestdist;
799 *bptr++ = 0x7FFFFFFFL;
825 bptr = bestdist;
835 if (dist2 < *bptr) {
836 *bptr = dist2;
841 bptr++;
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Devent-parse.c3734 void *bptr; local
3775 for (ptr = fmt + 6, bptr = data + field->offset;
3776 bptr < data + size && *ptr; ptr++) {
3822 bptr = (void *)(((unsigned long)bptr + 3) &
3824 val = pevent_read_number(pevent, bptr, vsize);
3825 bptr += vsize;
3857 arg->string.string = strdup(bptr);
3860 bptr += strlen(bptr)
[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
2792 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
4477 pcre_uint8 *bptr; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Ddlist.c842 GLbyte *bptr; local
852 bptr = (GLbyte *) list;
853 return (GLint) bptr[n];

Completed in 8965 milliseconds

12