Searched refs:tp_col (Results 1 - 12 of 12) sorted by relevance

/freebsd-10.1-release/sys/teken/demo/
H A Dteken_demo.c87 assert(p->tp_col < NCOLS);
89 px = &buffer[p->tp_col][p->tp_row];
123 mvaddstr(p->tp_row, p->tp_col, str);
138 move(p->tp_row, p->tp_col);
146 buffer[p->tp_col][p->tp_row].c = c;
147 buffer[p->tp_col][p->tp_row].a = *a;
159 for (p.tp_col = r->tr_begin.tp_col; p.tp_col < r->tr_end.tp_col;
[all...]
/freebsd-10.1-release/sys/dev/vt/
H A Dvt_buf.c53 (d).tp_col = (s).tp_col; \
175 (vb->vb_cursor.tp_row == row) && (vb->vb_cursor.tp_col == col))
184 sc = vb->vb_mark_start.tp_col;
186 ec = vb->vb_mark_end.tp_col;
209 if (vb->vb_dirtyrect.tr_begin.tp_col > area->tr_begin.tp_col)
210 vb->vb_dirtyrect.tr_begin.tp_col = area->tr_begin.tp_col;
213 if (vb->vb_dirtyrect.tr_end.tp_col < are
[all...]
H A Dvt_core.c207 .vb_mark_start = {.tp_row = 0, .tp_col = 0,},
208 .vb_mark_end = {.tp_row = 0, .tp_col = 0,},
211 .tp_col = _VTDEFW,
520 size->tp_col = vd->vd_width;
523 size->tp_col /= vf->vf_width;
548 vw->vw_draw_area.tr_begin.tp_col = 0;
550 vw->vw_draw_area.tr_end.tp_col = vd->vd_width;
562 vw->vw_draw_area.tr_begin.tp_col = (vd->vd_width % vf->vf_width) / 2;
564 vw->vw_draw_area.tr_end.tp_col = vw->vw_draw_area.tr_begin.tp_col
[all...]
/freebsd-10.1-release/sys/teken/
H A Dteken_subr.h105 tr.tr_begin.tp_col = 0;
107 tr.tr_end.tp_col = t->t_winsize.tp_col;
109 tp.tp_col = 0;
118 tr.tr_begin.tp_col = 0;
120 tr.tr_end.tp_col = t->t_winsize.tp_col;
129 tr.tr_begin.tp_col = 0;
131 tr.tr_end.tp_col = t->t_winsize.tp_col;
[all...]
H A Dteken.c83 teken_assert(t->t_cursor.tp_col < t->t_winsize.tp_col);
94 teken_assert(p->tp_col < t->t_winsize.tp_col);
106 teken_assert(r->tr_end.tp_col > r->tr_begin.tp_col);
107 teken_assert(r->tr_end.tp_col <= t->t_winsize.tp_col);
118 teken_assert(r->tr_end.tp_col > r->tr_begin.tp_col);
[all...]
H A Dteken.h62 teken_unit_t tp_col; member in struct:__anon11452
/freebsd-10.1-release/sys/dev/fb/
H A Dcreator_vt.c201 c < width && x + c < vw->vw_draw_area.tr_end.tp_col;
236 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col;
239 vw->vw_draw_area.tr_begin.tp_col;
260 drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width;
262 drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width;
269 vd->vd_mx_drawn + vw->vw_draw_area.tr_begin.tp_col,
/freebsd-10.1-release/sys/dev/syscons/
H A Dscterm-teken.c141 tp.tp_col = scp->xsize;
147 tp.tp_col = scp->cursor_pos % scp->xsize;
407 sc_move_cursor(scp, p->tp_col, p->tp_row);
571 cursor = tp->tp_row * scp->xsize + tp->tp_col;
601 if (r->tr_begin.tp_col == 0 && r->tr_end.tp_col == scp->xsize) {
608 width = r->tr_end.tp_col - r->tr_begin.tp_col;
612 scp->xsize + r->tr_begin.tp_col,
619 r->tr_begin.tp_row * scp->xsize + r->tr_begin.tp_col);
[all...]
/freebsd-10.1-release/sys/dev/vt/hw/fb/
H A Dvt_fb.c271 c < width && x + c < vw->vw_draw_area.tr_end.tp_col;
328 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col;
331 vw->vw_draw_area.tr_begin.tp_col;
352 drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width;
354 drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width;
361 vd->vd_mx_drawn + vw->vw_draw_area.tr_begin.tp_col,
/freebsd-10.1-release/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c167 c < width && x + c < vw->vw_draw_area.tr_end.tp_col;
214 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col;
217 vw->vw_draw_area.tr_begin.tp_col;
238 drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width;
240 drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width;
247 vd->vd_mx_drawn + vw->vw_draw_area.tr_begin.tp_col,
/freebsd-10.1-release/sys/dev/vt/hw/vga/
H A Dvt_vga.c629 if (i < vw->vw_draw_area.tr_begin.tp_col) {
635 i = vw->vw_draw_area.tr_begin.tp_col;
639 i < vw->vw_draw_area.tr_end.tp_col) {
647 col = (i - vw->vw_draw_area.tr_begin.tp_col) / vf->vf_width;
680 (col * vf->vf_width + vw->vw_draw_area.tr_begin.tp_col);
683 vw->vw_draw_area.tr_begin.tp_col,
685 vw->vw_draw_area.tr_end.tp_col);
687 vw->vw_draw_area.tr_begin.tp_col;
711 drawn_area.tr_begin.tp_col = x;
713 drawn_area.tr_end.tp_col
[all...]
/freebsd-10.1-release/sys/kern/
H A Dsubr_terminal.c200 r.tr_begin.tp_row = r.tr_begin.tp_col = 0;
202 r.tr_end.tp_col = size->ws_col;
394 vi->mv_col = p->tp_col;
398 vi->mv_csz = p->tp_col;

Completed in 140 milliseconds