Lines Matching refs:width

648 			    tems.ts_c_dimension.width -
658 tems.ts_c_dimension.width,
670 tems.ts_c_dimension.width,
686 tems.ts_c_dimension.width,
700 (tems.ts_c_dimension.width -
718 tems.ts_c_dimension.width,
788 if (tem->tvs_params[0] > tems.ts_c_dimension.width)
789 tem->tvs_params[0] = tems.ts_c_dimension.width;
854 if (tem->tvs_c_cursor.col >= tems.ts_c_dimension.width) {
916 tems.ts_c_dimension.width -
1176 tems.ts_c_dimension.width - 1, end,
1180 tem_safe_clear_chars(tem, tems.ts_c_dimension.width,
1188 tems.ts_c_dimension.width - 1,
1193 tem_safe_clear_chars(tem, tems.ts_c_dimension.width,
1216 s_col >= tems.ts_c_dimension.width ||
1217 e_col >= tems.ts_c_dimension.width ||
1218 t_col >= tems.ts_c_dimension.width ||
1230 t_col + cols > tems.ts_c_dimension.width)
1253 col < 0 || col >= tems.ts_c_dimension.width ||
1261 if (count > tems.ts_c_dimension.width ||
1262 col + count > tems.ts_c_dimension.width)
1263 count = tems.ts_c_dimension.width - col;
1286 da.width = (screen_size_t)count;
1300 * fills a rectangle bounded to the width and height parameters.
1309 int height, int width, screen_pos_t row, screen_pos_t col,
1318 da.width = (screen_size_t)width;
1364 da.width = (screen_size_t)count;
1389 da.width = tems.ts_font.width;
1392 da.col = (col * da.width) + tems.ts_p_offset.x;
1397 da.col += da.width;
1437 e_col == tems.ts_c_dimension.width - 1) {
1442 ma.s_col = s_col * tems.ts_font.width;
1443 ma.e_col = tems.ts_p_dimension.width - 1;
1445 ma.t_col = t_col * tems.ts_font.width;
1447 ma.s_col = s_col * tems.ts_font.width + tems.ts_p_offset.x;
1448 ma.e_col = (e_col + 1) * tems.ts_font.width +
1450 ma.t_col = t_col * tems.ts_font.width + tems.ts_p_offset.x;
1531 int nrows, ncols, width, height;
1536 width = tems.ts_font.width;
1540 ncols = (tems.ts_p_dimension.width + (width - 1))/ width;
1554 int nrows, ncols, width, height;
1559 width = tems.ts_font.width;
1563 ncols = (tems.ts_p_dimension.width + (width - 1))/ width;
1591 tem_safe_clear_chars(tem, tems.ts_c_dimension.width,
1603 tem_safe_virtual_cls(tem, tems.ts_c_dimension.width, row, 0);
1648 tabstop = tems.ts_c_dimension.width - 1;
1729 if (col >= tems.ts_c_dimension.width)
1730 col = tems.ts_c_dimension.width - 1;
1773 for (j = 8; j < tems.ts_c_dimension.width; j += 8)
1816 rest_of_line = tems.ts_c_dimension.width - tem->tvs_c_cursor.col;
1829 tems.ts_c_dimension.width - 1,
1837 (tems.ts_c_dimension.width - count), credp,
1845 tems.ts_c_dimension.width - count - 1,
1890 ca.col = tem->tvs_c_cursor.col * tems.ts_font.width +
1892 ca.width = tems.ts_font.width;
1929 set_font(struct font *f, short *rows, short *cols, short height, short width)
1946 (((*cols * fl->data->width) + BORDER_PIXELS) <= width)) {
1957 ((*cols * DEFAULT_FONT_DATA.width) > width)) {
1959 *cols = (width - 2) / DEFAULT_FONT_DATA.width;
1964 f->width = font_selected->width;
2001 bytes_wide = (tems.ts_font.width + 7) / 8;
2057 bytes_wide = (tems.ts_font.width + 7) / 8;
2060 bitsleft = tems.ts_font.width;
2121 bytes_wide = (tems.ts_font.width + 7) / 8;
2124 bitsleft = tems.ts_font.width;
2182 * offset_x: the offset of width in pixels to begin clear
2205 da.width = tems.ts_font.width;
2215 da.col = col * da.width + offset_x;
2218 da.col += da.width;
2231 int i, width;
2237 col < 0 || col >= tems.ts_c_dimension.width ||
2238 col + count > tems.ts_c_dimension.width)
2241 width = 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);
2265 int cols = tems.ts_c_dimension.width;
2310 int cols = tems.ts_c_dimension.width;
2372 tems.ts_c_dimension.width,
2388 int width;
2399 width = tems.ts_c_dimension.width;
2408 buf = tem->tvs_screen_buf + (row * width);
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];
2437 if (col_start == (width - 1))