Lines Matching refs:col

122 			int count, screen_pos_t row, screen_pos_t col,
380 tem->tvs_c_cursor.col - 1,
545 int col;
551 col = tem->tvs_c_cursor.col;
568 tem_safe_mv_cursor(tem, row - tem->tvs_params[0], col,
574 tem_safe_mv_cursor(tem, tem->tvs_params[0] - 1, col,
581 tem_safe_mv_cursor(tem, row + tem->tvs_params[0], col,
588 tem_safe_mv_cursor(tem, row, col + tem->tvs_params[0],
600 tem_safe_mv_cursor(tem, row, col - tem->tvs_params[0],
649 tem->tvs_c_cursor.col,
651 tem->tvs_c_cursor.col, credp, called_from);
675 tem->tvs_c_cursor.col + 1,
701 tem->tvs_c_cursor.col),
703 tem->tvs_c_cursor.col,
710 tem->tvs_c_cursor.col + 1,
774 tem->tvs_c_cursor.col,
853 tem->tvs_c_cursor.col++;
854 if (tem->tvs_c_cursor.col >= tems.ts_c_dimension.width) {
871 tem->tvs_c_cursor.col = 0;
910 tem_safe_mv_cursor(tem, row, tem->tvs_c_cursor.col,
917 tem->tvs_c_cursor.col,
919 tem->tvs_c_cursor.col,
945 tem->tvs_s_cursor.row, tem->tvs_s_cursor.col,
954 tem->tvs_s_cursor.row, tem->tvs_s_cursor.col,
974 tem->tvs_s_cursor.col = tem->tvs_c_cursor.col;
1034 * tem->tvs_r_cursor.col = tem->tvs_c_cursor.col;
1042 tem->tvs_r_cursor.col, credp, called_from);
1130 tem->tvs_r_cursor.col = tem->tvs_c_cursor.col;
1134 tem->tvs_r_cursor.col, credp, called_from);
1247 screen_pos_t col, cred_t *credp, enum called_from called_from)
1253 col < 0 || col >= tems.ts_c_dimension.width ||
1258 * Note that very large values of "count" could cause col+count
1262 col + count > tems.ts_c_dimension.width)
1263 count = tems.ts_c_dimension.width - col;
1265 tem_safe_virtual_cls(tem, count, row, col);
1270 tem_safe_callback_cls(tem, count, row, col, credp, called_from);
1276 int count, screen_pos_t row, screen_pos_t col,
1288 da.col = col;
1309 int height, int width, screen_pos_t row, screen_pos_t col,
1321 da.col = col;
1355 int count, screen_pos_t row, screen_pos_t col, cred_t *credp,
1366 da.col = col;
1378 screen_pos_t row, screen_pos_t col,
1392 da.col = (col * da.width) + tems.ts_p_offset.x;
1397 da.col += da.width;
1494 screen_pos_t row, screen_pos_t col, cred_t *credp,
1501 col, count, tems.ts_p_offset.x, B_FALSE, credp, called_from);
1595 tem->tvs_c_cursor.col = 0;
1606 tem->tvs_c_cursor.col = 0;
1628 if (tem->tvs_tabs[i] < tem->tvs_c_cursor.col) {
1651 if (tem->tvs_tabs[i] > tem->tvs_c_cursor.col) {
1670 tem->tvs_tabs[tem->tvs_ntabs] < tem->tvs_c_cursor.col) {
1671 tem->tvs_tabs[tem->tvs_ntabs++] = tem->tvs_c_cursor.col;
1675 if (tem->tvs_tabs[i] == tem->tvs_c_cursor.col)
1677 if (tem->tvs_tabs[i] > tem->tvs_c_cursor.col) {
1680 tem->tvs_tabs[i] = tem->tvs_c_cursor.col;
1700 if (tem->tvs_tabs[i] == tem->tvs_c_cursor.col) {
1712 tem_safe_mv_cursor(struct tem_vt_state *tem, int row, int col,
1727 if (col < 0)
1728 col = 0;
1729 if (col >= tems.ts_c_dimension.width)
1730 col = tems.ts_c_dimension.width - 1;
1734 tem->tvs_c_cursor.col = (screen_pos_t)col;
1750 tem->tvs_c_cursor.col = 0;
1752 tem->tvs_r_cursor.col = 0;
1754 tem->tvs_s_cursor.col = 0;
1816 rest_of_line = tems.ts_c_dimension.width - tem->tvs_c_cursor.col;
1827 tem->tvs_c_cursor.col + count,
1831 tem->tvs_c_cursor.col,
1843 tem->tvs_c_cursor.col,
1847 tem->tvs_c_cursor.col + count,
1853 tem->tvs_c_cursor.col, credp, called_from);
1868 ca.col = tem->tvs_c_cursor.col;
1875 tem->tvs_c_cursor.col = ca.col;
1890 ca.col = tem->tvs_c_cursor.col * tems.ts_font.width +
2180 * col: start col#
2189 screen_pos_t col, int ncols, int offset_x,
2215 da.col = col * da.width + offset_x;
2218 da.col += da.width;
2228 int count, screen_pos_t row, screen_pos_t col,
2237 col < 0 || col >= tems.ts_c_dimension.width ||
2238 col + count > tems.ts_c_dimension.width)
2242 addr = tem->tvs_screen_buf + (row * width + col);
2243 pfgcolor = tem->tvs_fg_buf + (row * width + col);
2244 pbgcolor = tem->tvs_bg_buf + (row * width + col);
2343 int count, screen_pos_t row, screen_pos_t col)
2349 tem_safe_virtual_display(tem, tems.ts_blank_line, count, row, col,
2387 int row, col, count, col_start;
2410 for (col = 0; col < width; col++) {
2412 tem->tvs_fg_buf[(row * width + col) * tc_size];
2414 tem->tvs_bg_buf[(row * width + col) * tc_size];
2415 if (col == 0) {
2429 col_start = col;