Symbol: O_VAL
usr.bin/vi/cl/cl_screen.c
112
0, O_VAL(sp, O_LINES) - 1), 1, cl_putchar);
usr.bin/vi/cl/cl_screen.c
223
cl_putenv("LINES", NULL, (u_long)O_VAL(sp, O_LINES));
usr.bin/vi/cl/cl_screen.c
225
cl_putenv("COLUMNS", NULL, (u_long)O_VAL(sp, O_COLUMNS));
usr.bin/vi/cl/cl_screen.c
56
resizeterm(O_VAL(sp, O_LINES), O_VAL(sp, O_COLUMNS))) &&
usr.bin/vi/cl/cl_term.c
348
row == O_VAL(sp, O_LINES) && col == O_VAL(sp, O_COLUMNS)) {
usr.bin/vi/common/key.c
623
O_VAL(sp, O_ESCAPETIME) :
usr.bin/vi/common/key.c
624
O_VAL(sp, O_KEYTIME)) * 100;
usr.bin/vi/common/main.c
290
sp->rows = O_VAL(sp, O_LINES); /* Make ex formatting work. */
usr.bin/vi/common/main.c
291
sp->cols = O_VAL(sp, O_COLUMNS);
usr.bin/vi/common/main.c
325
sp->defscroll = (O_VAL(sp, O_WINDOW) + 1) / 2;
usr.bin/vi/common/msg.c
280
rptval = O_VAL(sp, O_REPORT);
usr.bin/vi/common/options.c
332
if ((v = (O_VAL(sp, O_LINES) - 1) / 2) == 0)
usr.bin/vi/common/options.c
353
v = O_VAL(sp, O_LINES) - 1;
usr.bin/vi/common/options.c
370
o_set(sp, optindx, OS_DEF, NULL, O_VAL(sp, optindx));
usr.bin/vi/common/options.c
608
O_VAL(sp, offset) == value)
usr.bin/vi/common/options.c
807
if (O_VAL(sp, cnt) == O_D_VAL(sp, cnt))
usr.bin/vi/common/options.c
837
sizeof(nbuf), "%ld", O_VAL(sp, cnt));
usr.bin/vi/common/options.c
902
curlen += ex_printf(sp, "%s=%ld", op->name, O_VAL(sp, offset));
usr.bin/vi/common/options.c
939
"set %s=%-3ld\n", op->name, O_VAL(sp, cnt));
usr.bin/vi/common/options.h
62
#define O_ISSET(sp, o) O_VAL((sp), (o))
usr.bin/vi/common/options_f.c
106
if (O_VAL(sp, O_WINDOW) == O_D_VAL(sp, O_WINDOW) ||
usr.bin/vi/common/options_f.c
107
O_VAL(sp, O_WINDOW) > *valp) {
usr.bin/vi/common/options_f.c
114
if (O_VAL(sp, O_WINDOW) == O_D_VAL(sp, O_WINDOW) ||
usr.bin/vi/common/options_f.c
115
O_VAL(sp, O_WINDOW) > *valp) {
usr.bin/vi/common/options_f.c
290
if (*valp >= O_VAL(sp, O_LINES) - 1 &&
usr.bin/vi/common/options_f.c
291
(*valp = O_VAL(sp, O_LINES) - 1) == 0)
usr.bin/vi/ex/ex.c
928
ecp->addr2.lno = sp->lno + O_VAL(sp, O_SCROLL);
usr.bin/vi/ex/ex_print.c
204
ts = O_VAL(sp, O_TABSTOP);
usr.bin/vi/ex/ex_shift.c
100
sw += O_VAL(sp, O_SHIFTWIDTH);
usr.bin/vi/ex/ex_shift.c
122
oldcol += O_VAL(sp, O_TABSTOP) -
usr.bin/vi/ex/ex_shift.c
123
oldcol % O_VAL(sp, O_TABSTOP);
usr.bin/vi/ex/ex_shift.c
151
for (; newcol >= O_VAL(sp, O_TABSTOP); ++newidx) {
usr.bin/vi/ex/ex_shift.c
153
newcol -= O_VAL(sp, O_TABSTOP);
usr.bin/vi/ex/ex_shift.c
76
if (O_VAL(sp, O_SHIFTWIDTH) == 0) {
usr.bin/vi/ex/ex_tag.c
114
O_VAL(sp, O_TAGLENGTH)) != 0 && strlen(exp->tag_last) > tl)
usr.bin/vi/ex/ex_txt.c
379
ts = O_VAL(sp, O_TABSTOP);
usr.bin/vi/ex/ex_txt.c
380
sw = O_VAL(sp, O_SHIFTWIDTH);
usr.bin/vi/ex/ex_util.c
152
sp->rows = O_VAL(sp, O_LINES);
usr.bin/vi/ex/ex_util.c
153
sp->cols = O_VAL(sp, O_COLUMNS);
usr.bin/vi/ex/ex_z.c
54
cnt = O_VAL(sp, O_WINDOW) - 1;
usr.bin/vi/vi/v_scroll.c
349
MINIMUM(sp->t_maxrows, O_VAL(sp, O_WINDOW)) : O_VAL(sp, O_WINDOW));
usr.bin/vi/vi/v_scroll.c
400
MINIMUM(sp->t_maxrows, O_VAL(sp, O_WINDOW)) : O_VAL(sp, O_WINDOW));
usr.bin/vi/vi/v_txt.c
1677
ts = O_VAL(sp, O_TABSTOP);
usr.bin/vi/vi/v_txt.c
1870
ts = O_VAL(sp, O_TABSTOP);
usr.bin/vi/vi/v_txt.c
1871
sw = O_VAL(sp, swopt);
usr.bin/vi/vi/v_txt.c
2730
NULL, O_VAL(sp, O_MATCHTIME) * 100, EC_TIMEOUT));
usr.bin/vi/vi/v_txt.c
410
if ((margin = O_VAL(sp, O_WRAPMARGIN)) != 0)
usr.bin/vi/vi/v_txt.c
413
margin = O_VAL(sp, O_WRAPLEN);
usr.bin/vi/vi/v_z.c
63
if (vp->count2 > O_VAL(sp, O_WINDOW))
usr.bin/vi/vi/v_z.c
64
vp->count2 = O_VAL(sp, O_WINDOW);
usr.bin/vi/vi/vi.c
955
sp->rows = vip->srows = O_VAL(sp, O_LINES);
usr.bin/vi/vi/vi.c
956
sp->cols = O_VAL(sp, O_COLUMNS);
usr.bin/vi/vi/vi.c
957
sp->t_rows = sp->t_minrows = O_VAL(sp, O_WINDOW);
usr.bin/vi/vi/vi.h
354
#define TAB_OFF(c) COL_OFF((c), O_VAL(sp, O_TABSTOP))
usr.bin/vi/vi/vs_refresh.c
608
if (off >= O_VAL(sp, O_SIDESCROLL))
usr.bin/vi/vi/vs_refresh.c
609
off -= O_VAL(sp, O_SIDESCROLL);
usr.bin/vi/vi/vs_refresh.c
622
off += O_VAL(sp, O_SIDESCROLL);
usr.bin/vi/vi/vs_split.c
141
new->t_minrows = new->t_rows = O_VAL(sp, O_WINDOW);
usr.bin/vi/vi/vs_split.c
155
new->t_minrows = new->t_rows = O_VAL(sp, O_WINDOW);
usr.bin/vi/vi/vs_split.c
419
nsp->t_minrows = nsp->t_rows = O_VAL(nsp, O_WINDOW);