Lines Matching refs:tp_col
92 teken_assert(t->t_cursor.tp_col < t->t_winsize.tp_col); in teken_funcs_cursor()
104 teken_assert(p->tp_col < t->t_winsize.tp_col); in teken_funcs_putchar()
117 teken_assert(r->tr_end.tp_col > r->tr_begin.tp_col); in teken_funcs_fill()
118 teken_assert(r->tr_end.tp_col <= t->t_winsize.tp_col); in teken_funcs_fill()
130 teken_assert(r->tr_end.tp_col > r->tr_begin.tp_col); in teken_funcs_copy()
131 teken_assert(r->tr_end.tp_col <= t->t_winsize.tp_col); in teken_funcs_copy()
133 teken_assert(p->tp_col + (r->tr_end.tp_col - r->tr_begin.tp_col) <= t->t_winsize.tp_col); in teken_funcs_copy()
181 teken_pos_t tp = { .tp_row = 24, .tp_col = 80 }; in teken_init()
263 teken_assert(t->t_cursor.tp_col < t->t_winsize.tp_col); in teken_input_char()
265 teken_assert(t->t_saved_cursor.tp_col < t->t_winsize.tp_col); in teken_input_char()
334 teken_assert(p->tp_col < t->t_winsize.tp_col); in teken_set_cursor()
381 if (cur->tp_row < new->tp_row || cur->tp_col < new->tp_col) in teken_trim_cursor_pos()
385 if (t->t_cursor.tp_col >= new->tp_col) in teken_trim_cursor_pos()
386 t->t_cursor.tp_col = new->tp_col - 1; in teken_trim_cursor_pos()