Lines Matching full:col

295 			tp->col = 0;  in term_tbl()
433 if (tp->tcol->col < tp->tcol->lastcol) in term_tbl()
435 if (tp->tcol->col < tp->tcol->lastcol) in term_tbl()
502 sp->layout->last->col + 1 == sp->opts->cols) in term_tbl()
506 sp->next->layout->last->col + 1 == sp->opts->cols) in term_tbl()
510 sp->prev->layout->last->col + 1 == sp->opts->cols && in term_tbl()
517 sp->last->layout->col + 1 == sp->opts->cols) || in term_tbl()
519 sp->layout->last->col + 1 == sp->opts->cols) ? 2 : in term_tbl()
523 sp->last->layout->col + 1 == sp->opts->cols) || in term_tbl()
525 sp->layout->last->col + 1 == sp->opts->cols) ? 1 : 0; in term_tbl()
529 sp->layout->last->col + 1 < sp->opts->cols)) { in term_tbl()
577 const struct roffcol *col; /* Contains width and spacing. */ in tbl_hrule() local
613 col = tp->tbl.cols; in tbl_hrule()
616 col++; in tbl_hrule()
618 col = tp->tbl.cols + cp->col; in tbl_hrule()
628 col->width + col->spacing / 2); in tbl_hrule()
659 if (col + 1 == tp->tbl.cols + sp->opts->cols) in tbl_hrule()
679 if (col->spacing) in tbl_hrule()
689 if (col->spacing > 2) in tbl_hrule()
695 if (col->spacing > 4) in tbl_hrule()
697 BHORIZ * rw, (col->spacing - 3) / 2); in tbl_hrule()
717 const struct roffcol *col) in tbl_data() argument
721 tbl_fill_border(tp, BHORIZ, col->width); in tbl_data()
724 tbl_fill_border(tp, BHORIZ * 2, col->width); in tbl_data()
738 tbl_fill_border(tp, BHORIZ, col->width); in tbl_data()
742 tbl_fill_border(tp, BHORIZ * 2, col->width); in tbl_data()
753 tbl_literal(tp, dp, col); in tbl_data()
756 tbl_number(tp, opts, dp, col); in tbl_data()
813 const struct roffcol *col) in tbl_literal() argument
820 width = col->width; in tbl_literal()
821 ic = dp->layout->col; in tbl_literal()
859 const struct roffcol *col) in tbl_number() argument
903 if (col->decimal > intsz && col->width > totsz) { in tbl_number()
904 padl = col->decimal - intsz; in tbl_number()
905 if (padl + totsz > col->width) in tbl_number()
906 padl = col->width - totsz; in tbl_number()
911 } else if (col->width > totsz) in tbl_number()
912 padl = (col->width - totsz) / 2; in tbl_number()
919 if (col->width > padl + totsz) in tbl_number()
920 tbl_fill_char(tp, ASCII_NBRSP, col->width - padl - totsz); in tbl_number()