Lines Matching refs:tp_row
86 assert(p->tp_row < NROWS); in printchar()
89 px = &buffer[p->tp_col][p->tp_row]; in printchar()
123 mvaddstr(p->tp_row, p->tp_col, str); in printchar()
138 move(p->tp_row, p->tp_col); in test_cursor()
146 buffer[p->tp_col][p->tp_row].c = c; in test_putchar()
147 buffer[p->tp_col][p->tp_row].a = *a; in test_putchar()
158 for (p.tp_row = r->tr_begin.tp_row; p.tp_row < r->tr_end.tp_row; p.tp_row++) in test_fill()
174 nrow = r->tr_end.tp_row - r->tr_begin.tp_row; in test_copy()
177 if (p->tp_row < r->tr_begin.tp_row) { in test_copy()
182 d.tp_row = p->tp_row + y; in test_copy()
185 buffer[d.tp_col][d.tp_row] = in test_copy()
186 buffer[r->tr_begin.tp_col + x][r->tr_begin.tp_row + y]; in test_copy()
193 d.tp_row = p->tp_row + y; in test_copy()
196 buffer[d.tp_col][d.tp_row] = in test_copy()
197 buffer[r->tr_begin.tp_col + x][r->tr_begin.tp_row + y]; in test_copy()
207 d.tp_row = p->tp_row + y; in test_copy()
210 buffer[d.tp_col][d.tp_row] = in test_copy()
211 buffer[r->tr_begin.tp_col + x][r->tr_begin.tp_row + y]; in test_copy()
218 d.tp_row = p->tp_row + y; in test_copy()
221 buffer[d.tp_col][d.tp_row] = in test_copy()
222 buffer[r->tr_begin.tp_col + x][r->tr_begin.tp_row + y]; in test_copy()
269 for (tp.tp_row = 0; tp.tp_row < NROWS; tp.tp_row++) in redraw_all()
293 tp.tp_row = ws.ws_row = NROWS; in main()