Home
last modified time | relevance | path

Searched refs:tt_col (Results 1 – 4 of 4) sorted by relevance

/dragonfly/usr.bin/window/
HDttgeneric.c232 if (++tt.tt_col == gen_CO) { in gen_putc()
234 tt.tt_col = tt.tt_row = -10; in gen_putc()
236 tt.tt_col = 0, tt.tt_row++; in gen_putc()
238 tt.tt_col--; in gen_putc()
250 tt.tt_col += n; in gen_write()
251 if (tt.tt_col == gen_CO) { in gen_write()
253 tt.tt_col = tt.tt_row = -10; in gen_write()
255 tt.tt_col = 0, tt.tt_row++; in gen_write()
257 tt.tt_col--; in gen_write()
264 if (tt.tt_row == row && tt.tt_col == col) in gen_move()
[all …]
HDtth19.c73 #define ICPAD() PAD((NCOL - tt.tt_col) * 1) /* 0.1 ms per char */
133 if (++tt.tt_col == NCOL) in h19_putc()
134 tt.tt_col = NCOL - 1; in h19_putc()
145 tt.tt_col += n; in h19_write()
146 if (tt.tt_col == NCOL) in h19_write()
147 tt.tt_col = NCOL - 1; in h19_write()
154 if (tt.tt_col == col) in h19_move()
160 if (tt.tt_col == col - 1) { in h19_move()
164 if (tt.tt_col == col + 1) { in h19_move()
169 if (tt.tt_col == col) { in h19_move()
[all …]
HDttzapple.c130 if (++tt.tt_col == NCOL) in zz_putc()
131 tt.tt_col = 0, tt.tt_row++; in zz_putc()
140 tt.tt_col += n; in zz_write()
141 if (tt.tt_col == NCOL) in zz_write()
142 tt.tt_col = 0, tt.tt_row++; in zz_write()
152 if ((x = col - tt.tt_col) == 0) in zz_move()
182 if (tt.tt_col == col) { in zz_move()
241 tt.tt_col = col; in zz_move()
268 tt.tt_col = tt.tt_row = -10; in zz_reset()
297 tt.tt_col = tt.tt_row = 0; in zz_clear()
[all …]
HDtt.h83 int tt_col; /* cursor column */ member