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

/freebsd-10.2-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-10.2-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.c210 .vb_mark_start = {.tp_row = 0, .tp_col = 0,},
211 .vb_mark_end = {.tp_row = 0, .tp_col = 0,},
213 .tp_row = _VTDEFH,
551 size->tp_row = vd->vd_height;
554 size->tp_row /= vf->vf_height;
581 vw->vw_draw_area.tr_begin.tp_row = 0;
583 vw->vw_draw_area.tr_end.tp_row = vd->vd_height;
595 vw->vw_draw_area.tr_begin.tp_row = (vd->vd_height % vf->vf_height) / 2;
598 vw->vw_draw_area.tr_end.tp_row = vw->vw_draw_area.tr_begin.tp_row
[all...]
/freebsd-10.2-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.c82 teken_assert(t->t_cursor.tp_row < t->t_winsize.tp_row);
93 teken_assert(p->tp_row < t->t_winsize.tp_row);
104 teken_assert(r->tr_end.tp_row > r->tr_begin.tp_row);
105 teken_assert(r->tr_end.tp_row <= t->t_winsize.tp_row);
116 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:__anon11822
/freebsd-10.2-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-10.2-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-10.2-release/sys/dev/vt/hw/fb/
H A Dvt_fb.c265 if (y + height > vw->vw_draw_area.tr_end.tp_row) {
266 if (y >= vw->vw_draw_area.tr_end.tp_row)
268 height = vw->vw_draw_area.tr_end.tp_row - y;
321 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) {
327 vw->vw_draw_area.tr_begin.tp_row;
347 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height;
349 drawn_area.tr_end.tp_row = area->tr_end.tp_row * v
[all...]
/freebsd-10.2-release/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c164 l < height && y + l < vw->vw_draw_area.tr_end.tp_row;
213 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) {
219 vw->vw_draw_area.tr_begin.tp_row;
239 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height;
241 drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height;
248 vd->vd_my_drawn + vw->vw_draw_area.tr_begin.tp_row,
/freebsd-10.2-release/sys/dev/vt/hw/vga/
H A Dvt_vga.c648 row = (y - vw->vw_draw_area.tr_begin.tp_row) / vf->vf_height;
712 drawn_area.tr_begin.tp_row = y;
714 drawn_area.tr_end.tp_row = y + vf->vf_height;
722 my = vd->vd_my_drawn + vw->vw_draw_area.tr_begin.tp_row;
804 row = area->tr_begin.tp_row;
808 y1 = row * vf->vf_height + vw->vw_draw_area.tr_begin.tp_row;
819 row = area->tr_end.tp_row;
824 y2 = row * vf->vf_height + vw->vw_draw_area.tr_begin.tp_row;
828 y2 = min(y2, vw->vw_draw_area.tr_end.tp_row);
866 for (row = area->tr_begin.tp_row; ro
[all...]
/freebsd-10.2-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 126 milliseconds