Lines Matching refs:tp_col
87 assert(p->tp_col < NCOLS); 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()
159 for (p.tp_col = r->tr_begin.tp_col; p.tp_col < r->tr_end.tp_col; p.tp_col++) in test_fill()
175 ncol = r->tr_end.tp_col - r->tr_begin.tp_col; in test_copy()
179 if (p->tp_col < r->tr_begin.tp_col) { in test_copy()
184 d.tp_col = p->tp_col + x; 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()
195 d.tp_col = p->tp_col + x; 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()
204 if (p->tp_col < r->tr_begin.tp_col) { in test_copy()
209 d.tp_col = p->tp_col + x; 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()
220 d.tp_col = p->tp_col + x; 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()
270 for (tp.tp_col = 0; tp.tp_col < NCOLS; tp.tp_col++) in redraw_all()
294 tp.tp_col = ws.ws_col = NCOLS; in main()