Lines Matching defs:vbl
97 size_t vbl; /* Number of blanks to prepend to the output. */
109 vbl = (p->flags & TERMP_NOPAD) || p->tcol->offset < p->viscol ?
111 if (p->minbl && vbl < p->minbl)
112 vbl = p->minbl;
120 vfield = p->tcol->rmargin > p->viscol + vbl ?
121 p->tcol->rmargin - p->viscol - vbl : 0;
131 p->maxrmargin > p->viscol + vbl ?
132 p->maxrmargin - p->viscol - vbl : 0;
152 vbl += (vtarget - vbr) / 2;
154 vbl += vtarget - vbr;
159 term_field(p, vbl, nbr);
225 vbl = p->flags & TERMP_BRIND ?
362 * with an indentation of vbl visual columns,
366 term_field(struct termp *p, size_t vbl, size_t nbr)
402 vbl += dv;
414 if (vbl > 0) {
415 (*p->advance)(p, vbl);
416 p->viscol += vbl;
417 vbl = 0;