/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xv/ |
D | Xvlibint.h | 58 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/ |
D | dboolhuff.c | 38 const unsigned char *bufptr; in vp8dx_bool_decoder_fill() local 43 bufptr = br->user_buffer; in vp8dx_bool_decoder_fill() 47 VP8DX_BOOL_DECODER_FILL(count, value, bufptr, bufend); in vp8dx_bool_decoder_fill() 49 br->user_buffer = bufptr; in vp8dx_bool_decoder_fill()
|
/external/llvm/test/CodeGen/X86/ |
D | 2008-09-29-ReMatBug.ll | 32 %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/ |
D | SDL_x11dyn.c | 119 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/ |
D | globalinit.c | 24 static char *bufptr = buf; in test() local 26 return c ? buf : bufptr; in test()
|
/external/valgrind/main/coregrind/ |
D | m_debugger.c | 385 Char *bufptr; in VG_() local 391 bufptr = buf; in VG_() 398 vg_assert(bufptr - buf < N_BUF-15-50-10/*paranoia*/); in VG_() 403 VG_(memcpy)(bufptr, file, VG_(strlen)(file)); in VG_() 404 bufptr += VG_(strlen)(file); in VG_() 408 VG_(memcpy)(bufptr, pidbuf, VG_(strlen)(pidbuf)); in VG_() 409 bufptr += VG_(strlen)(pidbuf); in VG_() 413 *bufptr++ = *cmdptr++; in VG_() 418 *bufptr++ = *cmdptr++; in VG_() 421 vg_assert(bufptr - buf < N_BUF-15-50-10/*paranoia*/); in VG_() [all …]
|
/external/grub/netboot/ |
D | natsemi.c | 170 u32 bufptr; member 511 txd.bufptr = (u32) &txb[0]; in natsemi_init_txd() 540 rxd[i].bufptr = (u32) &rxb[i*RX_BUF_SIZE]; in natsemi_init_rxd() 543 i, &rxd[i], rxd[i].link, rxd[i].cmdsts, rxd[i].bufptr); in natsemi_init_rxd() 639 txd.bufptr = (u32) &txb[0]; in natsemi_transmit() 707 rxd[cur_rx].bufptr = (u32) &rxb[cur_rx*RX_BUF_SIZE]; in natsemi_poll()
|
D | sis900.c | 590 txd.bufptr = (u32) &txb[0]; in sis900_init_txd() 620 rxd[i].bufptr = (u32) &rxb[i*RX_BUF_SIZE]; in sis900_init_rxd() 623 i, &rxd[i], rxd[i].link, rxd[i].cmdsts, rxd[i].bufptr); in sis900_init_rxd() 932 txd.bufptr = (u32) &txb[0]; in sis900_transmit() 1004 rxd[cur_rx].bufptr = (u32) &rxb[cur_rx*RX_BUF_SIZE]; in sis900_poll()
|
D | sis900.h | 362 u32 bufptr; member
|
/external/mksh/src/ |
D | main.c | 117 } *bufptr; in rndsetup() local 120 cp = alloc(sizeof(*bufptr) - ALLOC_SIZE, APERM); in rndsetup() 123 memset(cp, 0, sizeof(*bufptr) - ALLOC_SIZE); in rndsetup() 126 bufptr = (void *)(cp - ALLOC_SIZE); in rndsetup() 128 bufptr->dataptr = &rndsetupstate; in rndsetup() 130 bufptr->stkptr = &bufptr; in rndsetup() 132 bufptr->mallocptr = bufptr; in rndsetup() 135 sigsetjmp(bufptr->jbuf, 1); in rndsetup() 138 mksh_TIME(bufptr->tv); in rndsetup() 144 NZATUpdateMem(h, bufptr, sizeof(*bufptr)); in rndsetup()
|
/external/clang/test/Analysis/ |
D | misc-ps-64.m | 19 unsigned char buf[10], *bufptr = buf; 22 shazam(x, &bufptr);
|
/external/quake/quake/src/WinQuake/ |
D | d_copy.s | 18 #define bufptr 4+16 macro 45 movl bufptr(%esp),%esi
|
/external/quake/quake/src/QW/client/ |
D | d_copy.s | 18 #define bufptr 4+16 macro 45 movl bufptr(%esp),%esi
|
/external/qemu/ |
D | qemu-char.c | 1871 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/ |
D | XF86VMode.c | 438 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/ |
D | netlib.c | 1281 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()
|
/external/kernel-headers/original/linux/ |
D | netdevice.h | 597 typedef int gifconf_func_t(struct net_device * dev, char __user * bufptr, int len);
|