Lines Matching refs:bufmax
681 size_t bufpos, bufmax;
701 es->bufmax = 0;
711 dofree(es->buf, es->bufmax);
735 assert(es->bufpos <= es->bufmax);
736 if (es->bufpos + len > es->bufmax) {
737 oldmax = es->bufmax;
738 if (es->bufmax == 0) {
739 es->bufmax = 64;
741 while (es->bufpos + len > es->bufmax) {
742 es->bufmax *= 2;
744 es->buf = dorealloc(es->buf, oldmax, es->bufmax);
748 assert(es->bufpos <= es->bufmax);
1254 es.buf = dorealloc(es.buf, es.bufmax, strlen(es.buf) + 1);
1258 es.bufpos = es.bufmax = 0;