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