Lines Matching refs:cols

2895     int		cols = screen_Columns;  in redraw_asap()  local
2911 screenline = LALLOC_MULT(schar_T, rows * cols); in redraw_asap()
2912 screenattr = LALLOC_MULT(sattr_T, rows * cols); in redraw_asap()
2917 screenlineUC = LALLOC_MULT(u8char_T, rows * cols); in redraw_asap()
2922 screenlineC[i] = LALLOC_MULT(u8char_T, rows * cols); in redraw_asap()
2929 screenline2 = LALLOC_MULT(schar_T, rows * cols); in redraw_asap()
2939 mch_memmove(screenline + r * cols, in redraw_asap()
2941 (size_t)cols * sizeof(schar_T)); in redraw_asap()
2942 mch_memmove(screenattr + r * cols, in redraw_asap()
2944 (size_t)cols * sizeof(sattr_T)); in redraw_asap()
2947 mch_memmove(screenlineUC + r * cols, in redraw_asap()
2949 (size_t)cols * sizeof(u8char_T)); in redraw_asap()
2951 mch_memmove(screenlineC[i] + r * cols, in redraw_asap()
2953 (size_t)cols * sizeof(u8char_T)); in redraw_asap()
2956 mch_memmove(screenline2 + r * cols, in redraw_asap()
2958 (size_t)cols * sizeof(schar_T)); in redraw_asap()
2972 screenline + r * cols, in redraw_asap()
2973 (size_t)cols * sizeof(schar_T)); in redraw_asap()
2975 screenattr + r * cols, in redraw_asap()
2976 (size_t)cols * sizeof(sattr_T)); in redraw_asap()
2980 screenlineUC + r * cols, in redraw_asap()
2981 (size_t)cols * sizeof(u8char_T)); in redraw_asap()
2984 screenlineC[i] + r * cols, in redraw_asap()
2985 (size_t)cols * sizeof(u8char_T)); in redraw_asap()
2989 screenline2 + r * cols, in redraw_asap()
2990 (size_t)cols * sizeof(schar_T)); in redraw_asap()
2991 screen_line(cmdline_row + r, 0, cols, cols, 0); in redraw_asap()