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

12

/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/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/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/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 Dif.c49 writen(fd, bptr, n)
51 char *bptr;
58 ret = send(fd, bptr, n,0);
65 ret = send(fd, bptr+total, n-total,0);
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/qemu/slirp-android/
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...]
H A Dif.c49 writen(fd, bptr, n)
51 char *bptr;
58 ret = socket_send(fd, bptr, n);
65 ret = socket_send(fd, bptr+total, n-total);
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...]
/external/clang/test/Sema/
H A Dblock-return.c88 typedef void (^bptr)(void);
90 bptr foo5(int j) {
/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/chromium_org/third_party/leveldatabase/src/db/
H A Dmemtable.cc33 int MemTable::KeyComparator::operator()(const char* aptr, const char* bptr)
37 Slice b = GetLengthPrefixedSlice(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/libxml2/
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/grub/netboot/
H A Di82586.c431 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
[all...]
/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/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/mesa/src/src/mesa/tnl/
H A Dt_draw.c253 GLboolean *bptr = space; local
257 *bptr++ = ((GLfloat *)ptr)[0] == 1.0;
/external/mesa3d/src/mesa/tnl/
H A Dt_draw.c253 GLboolean *bptr = space; local
257 *bptr++ = ((GLfloat *)ptr)[0] == 1.0;
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
H A Dia64-mont.pl93 rptr=r8; aptr=r9; bptr=r14; nptr=r15;
115 $ADDP bptr=0,in2
123 { .mmi; ldf8 bi=[bptr],8 // (*bp++)
205 { .mmi; ldf8 bi=[bptr],8 // (*bp++)
339 andcm bptr=rptr,topbit
341 { .mii; or nptr=aptr,bptr
417 $ADDP bptr=0,in2 }
421 { .mmi; ldf8 bj[7]=[bptr],16 // bp[0]
434 { .mfi; (p4)ldf8 bj[5]=[bptr],16 // bp[2]
457 { .mfi; (p8)ldf8 bj[3]=[bptr],1
[all...]
/external/openssl/crypto/bn/asm/
H A Dia64-mont.pl93 rptr=r8; aptr=r9; bptr=r14; nptr=r15;
115 $ADDP bptr=0,in2
123 { .mmi; ldf8 bi=[bptr],8 // (*bp++)
205 { .mmi; ldf8 bi=[bptr],8 // (*bp++)
339 andcm bptr=rptr,topbit
341 { .mii; or nptr=aptr,bptr
417 $ADDP bptr=0,in2 }
421 { .mmi; ldf8 bj[7]=[bptr],16 // bp[0]
434 { .mfi; (p4)ldf8 bj[5]=[bptr],16 // bp[2]
457 { .mfi; (p8)ldf8 bj[3]=[bptr],1
[all...]
/external/openssh/
H A Dauthfile.c180 const u_char *bptr; local
208 if ((blen = BIO_get_mem_data(bio, &bptr)) <= 0)
211 buffer_append(blob, bptr, blen);

Completed in 670 milliseconds

12