Lines Matching refs:bufcol
1013 if (h->col + h->bufcol < sizeof(h->buf)) { in print_byte()
1014 h->buf[h->bufcol++] = c; in print_byte()
1023 fwrite(h->buf, h->bufcol, 1, stdout); in print_byte()
1025 h->col = (h->indent + 1) * 2 + h->bufcol + 1; in print_byte()
1026 h->bufcol = 0; in print_byte()
1040 if (h->bufcol) { in print_endline()
1042 fwrite(h->buf, h->bufcol, 1, stdout); in print_endline()
1043 h->bufcol = 0; in print_endline()
1066 } else if (h->bufcol) { in print_endword()
1068 fwrite(h->buf, h->bufcol, 1, stdout); in print_endword()
1069 h->col += h->bufcol + 1; in print_endword()
1071 h->bufcol = 0; in print_endword()