Lines Matching refs:tg_tp
963 idx = p->tp_col + p->tp_row * state->tg_tp.tp_col; in gfx_fb_putchar()
964 if (idx >= state->tg_tp.tp_col * state->tg_tp.tp_row) in gfx_fb_putchar()
1005 row = &screen_buffer[p.tp_row * state->tg_tp.tp_col]; in gfx_fb_fill()
1031 if (p.tp_col >= state->tg_tp.tp_col) in gfx_fb_cursor_draw()
1032 p.tp_col = state->tg_tp.tp_col - 1; in gfx_fb_cursor_draw()
1033 if (p.tp_row >= state->tg_tp.tp_row) in gfx_fb_cursor_draw()
1034 p.tp_row = state->tg_tp.tp_row - 1; in gfx_fb_cursor_draw()
1035 idx = p.tp_col + p.tp_row * state->tg_tp.tp_col; in gfx_fb_cursor_draw()
1036 if (idx >= state->tg_tp.tp_col * state->tg_tp.tp_row) in gfx_fb_cursor_draw()
1182 soffset = s->tp_col + s->tp_row * state->tg_tp.tp_col; in gfx_fb_copy_line()
1183 doffset = d->tp_col + d->tp_row * state->tg_tp.tp_col; in gfx_fb_copy_line()
1230 if (p->tp_row + nrow > state->tg_tp.tp_row || in gfx_fb_copy()
1231 p->tp_col + ncol > state->tg_tp.tp_col) in gfx_fb_copy()
1234 soffset = r->tr_begin.tp_col + r->tr_begin.tp_row * state->tg_tp.tp_col; in gfx_fb_copy()
1235 doffset = p->tp_col + p->tp_row * state->tg_tp.tp_col; in gfx_fb_copy()
2185 teken_pos_t *tp = &state->tg_tp; in setup_font()