Lines Matching defs:bufptr
1160 *bufptr, /* Pointer into input buffer */
1281 for (bufptr = http->buffer, bufend = http->buffer + http->used;
1282 lineptr < lineend && bufptr < bufend;)
1284 if (*bufptr == 0x0a)
1287 bufptr ++;
1290 else if (*bufptr == 0x0d)
1291 bufptr ++;
1293 *lineptr++ = *bufptr++;
1296 http->used -= (int)(bufptr - http->buffer);
1298 memmove(http->buffer, bufptr, (size_t)http->used);