Lines Matching refs:bufptr
97 char *bufptr; /* Output buffer index pointer. */ member
410 #define WORD64ALIGN if ((long)dpy->bufptr >> 61) {\
411 dpy->last_req = dpy->bufptr;\
412 *(dpy->bufptr) = X_NoOperation;\
413 *(dpy->bufptr+1) = 0;\
414 *(dpy->bufptr+2) = 0;\
415 *(dpy->bufptr+3) = 1;\
417 dpy->bufptr += 4;\
574 if (dpy->bufptr + (len) <= dpy->bufmax) {\
575 memcpy(dpy->bufptr, data, (int)len);\
576 dpy->bufptr += ((len) + 3) & ~3;\
598 if (dpy->bufptr + (n) > dpy->bufmax) \
600 ptr = (type) dpy->bufptr; \
602 dpy->bufptr += (n);
700 { dpy->bufptr -= 4; Data32 (dpy, (char *) &(srcvar), 4); }