Home
last modified time | relevance | path

Searched refs:bufptr (Results 1 – 13 of 13) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xv/
DXvlibint.h58 if ((dpy->bufptr + SIZEOF(xv##name##Req)) > dpy->bufmax)\
60 req = (xv##name##Req *)(dpy->last_req = dpy->bufptr);\
64 dpy->bufptr += SIZEOF(xv##name##Req);\
70 if ((dpy->bufptr + SIZEOF(xv/**/name/**/Req)) > dpy->bufmax)\
72 req = (xv/**/name/**/Req *)(dpy->last_req = dpy->bufptr);\
76 dpy->bufptr += SIZEOF(xv/**/name/**/Req);\
/external/libvpx/libvpx/vp8/decoder/
Ddboolhuff.c39 const unsigned char *bufptr = br->user_buffer; in vp8dx_bool_decoder_fill() local
43 size_t bytes_left = br->user_buffer_end - bufptr; in vp8dx_bool_decoder_fill()
51 br->decrypt_cb(br->decrypt_state, bufptr, decrypted, (int)n); in vp8dx_bool_decoder_fill()
52 bufptr = decrypted; in vp8dx_bool_decoder_fill()
66 value |= (VP8_BD_VALUE)*bufptr << shift; in vp8dx_bool_decoder_fill()
67 ++bufptr; in vp8dx_bool_decoder_fill()
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
Ddboolhuff.c40 const unsigned char *bufptr = br->user_buffer; in vp8dx_bool_decoder_fill() local
44 size_t bytes_left = br->user_buffer_end - bufptr; in vp8dx_bool_decoder_fill()
52 br->decrypt_cb(br->decrypt_state, bufptr, decrypted, (int)n); in vp8dx_bool_decoder_fill()
53 bufptr = decrypted; in vp8dx_bool_decoder_fill()
67 value |= (VP8_BD_VALUE)*bufptr << shift; in vp8dx_bool_decoder_fill()
68 ++bufptr; in vp8dx_bool_decoder_fill()
/external/llvm/test/CodeGen/X86/
D2008-09-29-ReMatBug.ll32 %bufptr.0.lcssa = phi i8* [ null, %bb6 ], [ null, %bb37 ] ; <i8*> [#uses=2]
42 %8 = getelementptr i8* %bufptr.0.lcssa, i32 %totalLength.0.ph ; <i8*> [#uses=1]
62 %bufptr.1.ph = phi i8* [ null, %bb4 ], [ %bufptr.0.lcssa, %bb35 ] ; <i8*> [#uses=2]
71 %12 = icmp eq i8* null, %bufptr.1.ph ; <i1> [#uses=1]
75 call void @quux(i8* %bufptr.1.ph) nounwind nounwind
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
DSDL_x11dyn.c119 if (dpy->bufptr + len > dpy->bufmax) in SDL_XGetRequest_workaround()
121 dpy->last_req = dpy->bufptr; in SDL_XGetRequest_workaround()
122 req = (xReq*)dpy->bufptr; in SDL_XGetRequest_workaround()
125 dpy->bufptr += len; in SDL_XGetRequest_workaround()
/external/clang/test/CodeGen/
Dglobalinit.c24 static char *bufptr = buf; in test() local
26 return c ? buf : bufptr; in test()
/external/valgrind/main/coregrind/
Dm_debugger.c428 HChar *bufptr; in VG_() local
434 bufptr = buf; in VG_()
441 vg_assert(bufptr - buf < N_BUF-15-50-10/*paranoia*/); in VG_()
446 VG_(memcpy)(bufptr, file, VG_(strlen)(file)); in VG_()
447 bufptr += VG_(strlen)(file); in VG_()
451 VG_(memcpy)(bufptr, pidbuf, VG_(strlen)(pidbuf)); in VG_()
452 bufptr += VG_(strlen)(pidbuf); in VG_()
456 *bufptr++ = *cmdptr++; in VG_()
461 *bufptr++ = *cmdptr++; in VG_()
464 vg_assert(bufptr - buf < N_BUF-15-50-10/*paranoia*/); in VG_()
[all …]
/external/mksh/src/
Dmain.c116 } *bufptr; in rndsetup() local
119 cp = alloc(sizeof(*bufptr) - ALLOC_SIZE, APERM); in rndsetup()
122 memset(cp, 0, sizeof(*bufptr) - ALLOC_SIZE); in rndsetup()
125 bufptr = (void *)(cp - ALLOC_SIZE); in rndsetup()
127 bufptr->dataptr = &rndsetupstate; in rndsetup()
129 bufptr->stkptr = &bufptr; in rndsetup()
131 bufptr->mallocptr = bufptr; in rndsetup()
134 sigsetjmp(bufptr->jbuf, 1); in rndsetup()
137 mksh_TIME(bufptr->tv); in rndsetup()
139 h = chvt_rndsetup(bufptr, sizeof(*bufptr)); in rndsetup()
/external/clang/test/Analysis/
Dmisc-ps-64.m19 unsigned char buf[10], *bufptr = buf;
22 shazam(x, &bufptr);
/external/libpcap/
Dpcap-linux.c1010 char * bufptr; local
1031 if ((bufptr = strstr(buffer, if_name)) &&
1032 (bufptr == buffer || *(bufptr-1) == ' ') &&
1033 *(bufptr + if_name_sz) == ':')
1035 bufptr = bufptr + if_name_sz + 1;
1038 while( --field_to_convert && *bufptr != '\0')
1040 while (*bufptr != '\0' && *(bufptr++) == ' ');
1041 while (*bufptr != '\0' && *(bufptr++) != ' ');
1045 while (*bufptr != '\0' && *bufptr == ' ') bufptr++;
1047 if (*bufptr != '\0')
[all …]
/external/qemu/
Dqemu-char.c1871 int bufptr; member
1892 while (s->max_size > 0 && s->bufptr < s->bufcnt) { in udp_chr_read_poll()
1893 qemu_chr_read(chr, &s->buf[s->bufptr], 1); in udp_chr_read_poll()
1894 s->bufptr++; in udp_chr_read_poll()
1908 s->bufptr = s->bufcnt; in udp_chr_read()
1912 s->bufptr = 0; in udp_chr_read()
1913 while (s->max_size > 0 && s->bufptr < s->bufcnt) { in udp_chr_read()
1914 qemu_chr_read(chr, &s->buf[s->bufptr], 1); in udp_chr_read()
1915 s->bufptr++; in udp_chr_read()
1957 s->bufptr = 0; in qemu_chr_open_udp()
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xxf86vm/
DXF86VMode.c438 if ((dpy->bufptr + SIZEOF(x##oldname##Req)) > dpy->bufmax)\
440 req = (x##oldname##Req *)(dpy->last_req = dpy->bufptr);\
443 dpy->bufptr += SIZEOF(x##oldname##Req);\
449 if ((dpy->bufptr + SIZEOF(x/**/oldname/**/Req)) > dpy->bufmax)\
451 req = (x/**/oldname/**/Req *)(dpy->last_req = dpy->bufptr);\
454 dpy->bufptr += SIZEOF(x/**/oldname/**/Req);\
/external/netperf/
Dnetlib.c1281 char *bufptr = temp_link->buffer_ptr; in allocate_buffer_ring() local
1284 if (((bytes_read = (int)fread(bufptr, in allocate_buffer_ring()
1291 bufptr += bytes_read; in allocate_buffer_ring()
1299 char *bufptr = temp_link->buffer_ptr; in allocate_buffer_ring() local
1301 bufptr[j] = default_fill[fill_cursor]; in allocate_buffer_ring()