Lines Matching defs:vbl
98 size_t vbl; /* Whitespace to prepend to the output. */
112 vbl = (p->flags & TERMP_NOPAD) || p->tcol->offset < p->viscol ?
114 if (p->minbl > 0 && vbl < term_len(p, p->minbl))
115 vbl = term_len(p, p->minbl);
123 vfield = p->tcol->rmargin > p->viscol + vbl ?
124 p->tcol->rmargin - p->viscol - vbl : 0;
134 p->maxrmargin > p->viscol + vbl ?
135 p->maxrmargin - p->viscol - vbl : 0;
155 vbl += (vtarget - vbr) / 2;
157 vbl += vtarget - vbr;
162 term_field(p, vbl, nbr);
228 vbl = p->flags & TERMP_BRIND ?
370 * with an indentation of vbl basic units
374 term_field(struct termp *p, size_t vbl, size_t nbr)
412 vbl += dv;
424 if (vbl > 0) {
425 (*p->advance)(p, vbl);
426 vbl = 0;