Lines Matching refs:asize
101 size_t asize; member
467 outbytesleft = to->asize - to->len; in conversion_loop()
478 to->len = to->asize - outbytesleft; in conversion_loop()
488 to->asize += OUTBUF_BLOCK_SIZE; in conversion_loop()
489 to->text = XRESIZEVEC (uchar, to->text, to->asize); in conversion_loop()
490 outbuf = to->text + to->asize - outbytesleft; in conversion_loop()
538 if (to->len + flen > to->asize) in convert_no_conversion()
540 to->asize = to->len + flen; in convert_no_conversion()
541 to->text = XRESIZEVEC (uchar, to->text, to->asize); in convert_no_conversion()
566 outbytesleft = to->asize - to->len; in convert_using_iconv()
573 to->len = to->asize - outbytesleft; in convert_using_iconv()
580 to->asize += OUTBUF_BLOCK_SIZE; in convert_using_iconv()
581 to->text = XRESIZEVEC (uchar, to->text, to->asize); in convert_using_iconv()
582 outbuf = (char *)to->text + to->asize - outbytesleft; in convert_using_iconv()
753 tbuf.asize = 1; in cpp_host_to_exec_charset()
754 tbuf.text = XNEWVEC (uchar, tbuf.asize); in cpp_host_to_exec_charset()
1087 if (tbuf->len + nbwc > tbuf->asize) in emit_numeric_escape()
1089 tbuf->asize += OUTBUF_BLOCK_SIZE; in emit_numeric_escape()
1090 tbuf->text = XRESIZEVEC (uchar, tbuf->text, tbuf->asize); in emit_numeric_escape()
1105 if (tbuf->len + 1 > tbuf->asize) in emit_numeric_escape()
1107 tbuf->asize += OUTBUF_BLOCK_SIZE; in emit_numeric_escape()
1108 tbuf->text = XRESIZEVEC (uchar, tbuf->text, tbuf->asize); in emit_numeric_escape()
1314 tbuf.asize = MAX (OUTBUF_BLOCK_SIZE, from->len); in cpp_interpret_string()
1315 tbuf.text = XNEWVEC (uchar, tbuf.asize); in cpp_interpret_string()
1601 to.asize = size; in _cpp_convert_input()
1606 to.asize = MAX (65536, len); in _cpp_convert_input()
1607 to.text = XNEWVEC (uchar, to.asize); in _cpp_convert_input()
1624 if (to.len + 4096 < to.asize || to.len >= to.asize) in _cpp_convert_input()