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

  /external/aac/libSYS/src/
wav_file.cpp 264 SCHAR *bptr = (SCHAR*)buffer; local
292 *bptr++ = (SCHAR) tmp;
303 result += FDKfread(&(bptr[i<<1]), 1, 1, wav->fp) ;
304 sptr[i] = ulaw2pcm(bptr[i<<1]) ;
461 SCHAR *bptr = (SCHAR*)sampleBuffer; local
483 case 8: tmp = *bptr++; break;
  /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/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/openssh/
authfile.c 180 const u_char *bptr; local
208 if ((blen = BIO_get_mem_data(bio, &bptr)) <= 0)
211 buffer_append(blob, bptr, blen);
  /external/qemu/slirp/
misc.c 260 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...]
tcp_subr.c 616 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 = (char *)strstr(m->m_data, "DCC")) == NULL
    [all...]
  /external/skia/tests/
AAClipTest.cpp 48 const char* bptr = (const char*)b.fImage; local
50 if (memcmp(aptr, bptr, wbytes)) {
54 bptr += wbytes;
  /external/qemu/slirp-android/
misc.c 237 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...]
tcp_subr.c 771 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 = (char *)strstr(m->m_data, "DCC")) == NULL
    [all...]
  /external/grub/netboot/
i82586.c 431 Address bptr; local
455 bptr = mem_start + TX_BUF_START;
456 memcpy((char *)bptr, (char *)tx_cmd, sizeof(tx_cmd));
457 bptr += sizeof(tx_cmd);
458 memcpy((char *)bptr, d, ETH_ALEN);
459 bptr += ETH_ALEN;
460 memcpy((char *)bptr, nic->node_addr, ETH_ALEN);
461 bptr += ETH_ALEN;
462 memcpy((char *)bptr, (char *)&type, sizeof(type));
463 bptr += sizeof(type)
    [all...]
  /external/jpeg/
jmemmgr.c 590 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->blocksperrow * SIZEOF(JBLOCK)
948 jvirt_barray_ptr bptr; local
    [all...]
jquant2.c 786 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++;
    [all...]
  /external/libxml2/
uri.c 2249 xmlChar *bptr, *uptr, *vptr; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
jmemmgr.c 590 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->blocksperrow * SIZEOF(JBLOCK)
948 jvirt_barray_ptr bptr; local
    [all...]
jquant2.c 786 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++;
    [all...]
  /external/linux-tools-perf/util/
trace-event-parse.c 2312 void *bptr; local
    [all...]

Completed in 335 milliseconds