Home | History | Annotate | Download | only in dist

Lines Matching refs:bufmax

181 	size_t bufend, bufmax, linestart, lineend, nextlinestart, tmp;
195 bufmax = 128;
199 buf = domalloc(bufmax);
212 if (bufend >= bufmax) {
214 buf = dorealloc(buf, bufmax, bufmax*2);
215 bufmax = bufmax*2;
217 if (bufmax > 0xffffffff) {
228 result = read(fd, buf+bufend, bufmax - bufend);
255 assert(bufend < bufmax);
311 dofree(buf, bufmax);