Lines Matching refs:Buffer
207 * PARAMETERS: None. Updates global line buffer pointers.
211 * DESCRIPTION: Called if the current line buffer becomes filled. Reallocates
214 * all of the buffer pointers are NULL. Initial allocations are
232 "Increasing line buffer size from %u to %u\n",
250 * PARAMETERS: Buffer - Buffer to realloc
251 * OldSize - Old size of Buffer
252 * NewSize - New size of Buffer
256 * DESCRIPTION: Reallocate and initialize Buffer
262 char **Buffer,
267 *Buffer = realloc (*Buffer, NewSize);
268 if (*Buffer)
270 memset (*Buffer + OldSize, 0, NewSize - OldSize);
274 printf ("Could not increase line buffer size from %u to %u\n",