Lines Matching defs:nextptr
52 unsigned char *nextptr = *readptr;
56 if (nextptr == writeptr)
58 *outbuf++ = *nextptr++;
59 if ((size_t)(nextptr - buf) >= bufsize)
60 nextptr = buf;
61 *readptr = nextptr;
76 unsigned char *nextptr = *writeptr;
81 prevptr = nextptr++;
82 if ((size_t)(nextptr - buf) >= bufsize)
83 nextptr = buf;
84 if (nextptr == readptr)
87 *writeptr = nextptr;