Lines Matching refs:bufmax
213 static size_t bufmax; variable
225 if (buflen >= bufmax) in comment_add()
227 bufmax = 2 * bufmax + 10; in comment_add()
228 buffer = xrealloc (buffer, bufmax); in comment_add()
240 if (chars_to_remove == 0 && buflen >= bufmax) in comment_line_end()
242 bufmax = 2 * bufmax + 10; in comment_line_end()
243 buffer = xrealloc (buffer, bufmax); in comment_line_end()
632 static int bufmax; in phase3_get() local
639 if (bufpos >= bufmax) \ in phase3_get()
641 bufmax = 2 * bufmax + 10; \ in phase3_get()
642 buffer = xrealloc (buffer, bufmax); \ in phase3_get()