Home
last modified time | relevance | path

Searched refs:u8char_T (Results 1 – 4 of 4) sorted by relevance

/vim-8.2.3635/src/
H A Dscreen.c1464 if (ScreenLinesC[i][off] != (u8char_T)u8cc[i]) in screen_comp_differs()
1617 (u8char_T)(c < 0x80 && u8cc[0] == 0 ? 0 : u8c) in screen_puts_len()
2584 u8char_T *new_ScreenLinesUC = NULL; in screenalloc()
2585 u8char_T *new_ScreenLinesC[MAX_MCO]; in screenalloc()
2782 0, (size_t)Columns * sizeof(u8char_T)); in screenalloc()
2786 0, (size_t)Columns * sizeof(u8char_T)); in screenalloc()
2812 (size_t)len * sizeof(u8char_T)); in screenalloc()
2817 (size_t)len * sizeof(u8char_T)); in screenalloc()
3007 (size_t)width * sizeof(u8char_T)); in lineclear()
3047 wp->w_width * sizeof(u8char_T)); in linecopy()
[all …]
H A Ddrawscreen.c1054 vim_memset(ScreenLinesUC + off, 0, sizeof(u8char_T) * (size_t)len); in copy_text_attr()
2901 u8char_T *screenlineUC = NULL; // copy from ScreenLinesUC[] in redraw_asap()
2902 u8char_T *screenlineC[MAX_MCO]; // copy from ScreenLinesC[][] 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()
2949 (size_t)cols * sizeof(u8char_T)); in redraw_asap()
2953 (size_t)cols * sizeof(u8char_T)); in redraw_asap()
2981 (size_t)cols * sizeof(u8char_T)); in redraw_asap()
2985 (size_t)cols * sizeof(u8char_T)); in redraw_asap()
H A Dglobals.h55 EXTERN u8char_T *ScreenLinesUC INIT(= NULL); // decoded UTF-8 characters
56 EXTERN u8char_T *ScreenLinesC[MAX_MCO]; // composing characters
H A Dvim.h425 typedef unsigned int u8char_T; // int is 32 bits or more typedef