Lines Matching refs:su
292 a2width(const struct man_node *n, struct roffsu *su) in a2width() argument
297 if (a2roffsu(n->string, su, SCALE_BU)) in a2width()
390 struct roffsu su; in man_br_pre() local
393 SCALE_VS_INIT(&su, 1); in man_br_pre()
397 if ( ! a2roffsu(n->string, &su, SCALE_VS)) in man_br_pre()
398 SCALE_VS_INIT(&su, atoi(n->string)); in man_br_pre()
400 su.scale = 0; in man_br_pre()
403 bufcat_su(h, "height", &su); in man_br_pre()
569 struct roffsu su; in man_HP_pre() local
579 if (NULL == np || ! a2width(np, &su)) in man_HP_pre()
580 SCALE_HS_INIT(&su, INDENT); in man_HP_pre()
585 bufcat_su(h, "margin-left", &su); in man_HP_pre()
586 su.scale = -su.scale; in man_HP_pre()
587 bufcat_su(h, "text-indent", &su); in man_HP_pre()
678 struct roffsu su; in man_RS_pre() local
685 SCALE_HS_INIT(&su, INDENT); in man_RS_pre()
687 a2width(n->head->child, &su); in man_RS_pre()
690 bufcat_su(h, "margin-left", &su); in man_RS_pre()