Lines Matching defs:cols
1208 int cols;
1228 cols = e_col - s_col + 1;
1230 t_col + cols > tems.ts_c_dimension.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;
2181 * ncols: the number of cols to clear
2265 int cols = tems.ts_c_dimension.width;
2270 to_row_start = base + ((t_row * cols) + t_col);
2271 from_row_start = base + ((s_row * cols) + s_col);
2277 to_row_start += cols;
2278 from_row_start += cols;
2286 cnt = rows_to_move * cols + chars_per_row;
2291 to_row_start -= cols;
2292 from_row_start -= cols;
2310 int cols = tems.ts_c_dimension.width;
2312 if (s_col < 0 || s_col >= cols ||
2314 e_col < 0 || e_col >= cols ||
2316 t_col < 0 || t_col >= cols ||
2327 t_col + chars_per_row > cols)