Lines Matching refs:fontqueue
295 } fontqueue; variable
353 if (fontqueue.head + fontqueue.size <= ++fontqueue.tail) { in font_push()
354 fontqueue.size += 8; in font_push()
355 fontqueue.head = mandoc_realloc(fontqueue.head, in font_push()
356 fontqueue.size); in font_push()
358 *fontqueue.tail = newfont; in font_push()
369 if (fontqueue.tail > fontqueue.head) in font_pop()
370 fontqueue.tail--; in font_pop()
374 putchar(*fontqueue.tail); in font_pop()
629 if (0 == fontqueue.size) { in man_mdoc()
630 fontqueue.size = 8; in man_mdoc()
631 fontqueue.head = fontqueue.tail = mandoc_malloc(8); in man_mdoc()
632 *fontqueue.tail = 'R'; in man_mdoc()