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

/freebsd-11.0-release/sys/teken/demo/
H A Dteken_demo.c86 assert(p->tp_row < NROWS);
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;
158 for (p.tp_row = r->tr_begin.tp_row; p.tp_row < r->tr_end.tp_row;
[all...]
/freebsd-11.0-release/sys/dev/vt/
H A Dvt_buf.c54 (d).tp_row = (s).tp_row; \
83 bottom + vb->vb_scr_size.tp_row - vb->vb_history_size :
99 if (roffset >= bottom + vb->vb_scr_size.tp_row)
129 if (vb->vb_curroffset + vb->vb_scr_size.tp_row >= vb->vb_history_size)
175 (vb->vb_cursor.tp_row == row) && (vb->vb_cursor.tp_col == col))
185 sr = vtbuf_htw(vb, vb->vb_mark_start.tp_row);
187 er = vtbuf_htw(vb, vb->vb_mark_end.tp_row);
207 if (vb->vb_dirtyrect.tr_begin.tp_row > area->tr_begin.tp_row)
[all...]
H A Dvt_core.c222 .vb_mark_start = {.tp_row = 0, .tp_col = 0,},
223 .vb_mark_end = {.tp_row = 0, .tp_col = 0,},
225 .tp_row = _VTDEFH,
564 size->tp_row = vd->vd_height;
566 size->tp_row -= vt_logo_sprite_height;
569 size->tp_row /= vf->vf_height;
578 rect->tr_begin.tp_row = rect->tr_begin.tp_col = 0;
580 rect->tr_begin.tp_row = vt_logo_sprite_height;
582 rect->tr_end.tp_row = vd->vd_height;
586 rect->tr_begin.tp_row
[all...]
/freebsd-11.0-release/sys/teken/
H A Dteken_subr.h94 teken_assert(t->t_cursor.tp_row <= t->t_winsize.tp_row);
95 teken_assert(t->t_scrollreg.ts_end <= t->t_winsize.tp_row);
104 tr.tr_begin.tp_row = t->t_scrollreg.ts_begin + amount;
106 tr.tr_end.tp_row = t->t_scrollreg.ts_end;
108 tp.tp_row = t->t_scrollreg.ts_begin;
112 tr.tr_begin.tp_row = t->t_scrollreg.ts_end - amount;
114 tr.tr_begin.tp_row = t->t_scrollreg.ts_begin;
119 tr.tr_end.tp_row = t->t_scrollreg.ts_end;
128 tr.tr_begin.tp_row
[all...]
H A Dteken.c84 teken_assert(t->t_cursor.tp_row < t->t_winsize.tp_row);
95 teken_assert(p->tp_row < t->t_winsize.tp_row);
106 teken_assert(r->tr_end.tp_row > r->tr_begin.tp_row);
107 teken_assert(r->tr_end.tp_row <= t->t_winsize.tp_row);
118 teken_assert(r->tr_end.tp_row > r->tr_begin.tp_row);
[all...]
H A Dteken.h61 teken_unit_t tp_row; member in struct:__anon13442
/freebsd-11.0-release/sys/dev/syscons/
H A Dscterm-teken.c140 tp.tp_row = scp->ysize;
146 tp.tp_row = 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;
603 sc_vtb_erase(&scp->vtb, r->tr_begin.tp_row * scp->xsize,
604 (r->tr_end.tp_row - r->tr_begin.tp_row) * scp->xsize,
610 for (row = r->tr_begin.tp_row; row < r->tr_end.tp_row; row++) {
611 sc_vtb_erase(&scp->vtb, r->tr_begin.tp_row *
[all...]
/freebsd-11.0-release/sys/dev/fb/
H A Dcreator_vt.c198 l < height && y + l < vw->vw_draw_area.tr_end.tp_row;
235 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) {
241 vw->vw_draw_area.tr_begin.tp_row;
261 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height;
263 drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height;
270 vd->vd_my_drawn + vw->vw_draw_area.tr_begin.tp_row,
/freebsd-11.0-release/sys/dev/vt/hw/fb/
H A Dvt_fb.c279 if (y + height > vw->vw_draw_area.tr_end.tp_row) {
280 if (y >= vw->vw_draw_area.tr_end.tp_row)
282 height = vw->vw_draw_area.tr_end.tp_row - y;
336 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) {
342 vw->vw_draw_area.tr_begin.tp_row;
362 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height;
364 drawn_area.tr_end.tp_row = area->tr_end.tp_row * v
[all...]
/freebsd-11.0-release/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c189 l < height && y + l < vw->vw_draw_area.tr_end.tp_row;
238 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) {
244 vw->vw_draw_area.tr_begin.tp_row;
264 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height;
266 drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height;
273 vd->vd_my_drawn + vw->vw_draw_area.tr_begin.tp_row,
/freebsd-11.0-release/sys/dev/vt/hw/vga/
H A Dvt_vga.c646 row = (y - vw->vw_draw_area.tr_begin.tp_row) / vf->vf_height;
710 drawn_area.tr_begin.tp_row = y;
712 drawn_area.tr_end.tp_row = y + vf->vf_height;
720 my = vd->vd_my_drawn + vw->vw_draw_area.tr_begin.tp_row;
802 row = area->tr_begin.tp_row;
806 y1 = row * vf->vf_height + vw->vw_draw_area.tr_begin.tp_row;
817 row = area->tr_end.tp_row;
821 y2 = row * vf->vf_height + vw->vw_draw_area.tr_begin.tp_row;
825 y2 = min(y2, vw->vw_draw_area.tr_end.tp_row);
863 for (row = area->tr_begin.tp_row; ro
[all...]
/freebsd-11.0-release/sys/kern/
H A Dsubr_terminal.c207 r.tr_begin.tp_row = r.tr_begin.tp_col = 0;
208 r.tr_end.tp_row = size->ws_row;
400 vi->mv_row = p->tp_row;
404 vi->mv_rsz = p->tp_row;

Completed in 114 milliseconds