HomeSort by relevance Sort by last modified time
    Searched refs:bptr (Results 1 - 25 of 39) sorted by null

1 2

  /external/clang/test/Analysis/
stack-block-returned.cpp 3 typedef void (^bptr)(void);
5 bptr bf(int j) {
7 const bptr &qq = ^{ i=0; }; // expected-note {{binding reference variable 'qq' here}}
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh38.cpp 16 } catch (const B* bptr) {
17 if (bptr->data == 42)
21 } catch (void *bptr) {
22 if (((B*)bptr)->data == 42)
  /ndk/tests/device/test-stlport_static-exception/jni/
eh38.cpp 16 } catch (const B* bptr) {
17 if (bptr->data == 42)
21 } catch (void *bptr) {
22 if (((B*)bptr)->data == 42)
  /external/chromium_org/third_party/libjpeg_turbo/
jmemmgr.c 623 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->blocksperrow * SIZEOF(JBLOCK)
981 jvirt_barray_ptr bptr; local
    [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...]
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jmemmgr.c 593 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->blocksperrow * SIZEOF(JBLOCK);
951 jvirt_barray_ptr bptr; 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...]
  /external/qemu/slirp/
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...]
if.c 49 writen(fd, bptr, n)
51 char *bptr;
58 ret = send(fd, bptr, n,0);
65 ret = send(fd, bptr+total, n-total,0);
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...]
  /external/qemu/slirp-android/
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...]
if.c 49 writen(fd, bptr, n)
51 char *bptr;
58 ret = socket_send(fd, bptr, n);
65 ret = socket_send(fd, bptr+total, n-total);
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...]
  /external/pcre/dist/
pcretest.c 245 #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, offsets, count,
4477 pcre_uint8 *bptr; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/cng/
webrtc_cng.c 247 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/clang/test/Sema/
block-return.c 88 typedef void (^bptr)(void);
90 bptr foo5(int j) {
  /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/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/chromium_org/third_party/leveldatabase/src/db/
memtable.cc 33 int MemTable::KeyComparator::operator()(const char* aptr, const char* bptr)
37 Slice b = GetLengthPrefixedSlice(bptr);
  /external/chromium_org/third_party/libxml/src/
uri.c 2249 xmlChar *bptr, *uptr, *vptr; local
    [all...]
  /external/libxml2/
uri.c 2168 xmlChar *bptr, *uptr, *vptr; local
    [all...]
  /external/openssl/crypto/bn/asm/
ia64-mont.pl 93 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],16 // bp[4
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
x86_64-mont.pl 735 my $bptr="%rdx"; # not used
932 my ($aptr, $bptr, $nptr, $tptr, $mi, $bi, $zero, $num)=
934 my $rptr=$bptr;
936 lea 8($bp),$bptr
944 mov $bptr,8(%rsp) # off-load &b[i]
949 mov $mi,$bptr # borrow $bptr
960 adcx %rax,$bptr # discarded
966 mov 48(%rsp),$bptr # counter value
1017 dec $bptr # of=0, pass c
    [all...]
x86_64-mont5.pl 909 my $bptr="%rdx"; # const void *table,
996 movq $bptr,%xmm4
1005 movq %xmm4,$bptr
    [all...]

Completed in 1114 milliseconds

1 2