Searched refs:linebufmax (Results 1 – 1 of 1) sorted by relevance
44 static size_t linebufpos, linebufmax; variable165 if (linebufpos + len > linebufmax) { in output()166 oldmax = linebufmax; in output()167 if (linebufmax == 0) { in output()168 linebufmax = 64; in output()170 while (linebufpos + len > linebufmax) { in output()171 linebufmax *= 2; in output()173 linebuf = dorealloc(linebuf, oldmax, linebufmax); in output()