Home
last modified time | relevance | path

Searched refs:LALLOC_MULT (Results 1 – 8 of 8) sorted by relevance

/vim-8.2.3635/src/
H A Dscreen.c2667 new_ScreenLines = LALLOC_MULT(schar_T, (Rows + 1) * Columns); in screenalloc()
2671 new_ScreenLinesUC = LALLOC_MULT(u8char_T, (Rows + 1) * Columns); in screenalloc()
2677 new_ScreenLines2 = LALLOC_MULT(schar_T, (Rows + 1) * Columns); in screenalloc()
2678 new_ScreenAttrs = LALLOC_MULT(sattr_T, (Rows + 1) * Columns); in screenalloc()
2679 new_LineOffset = LALLOC_MULT(unsigned, Rows); in screenalloc()
2680 new_LineWraps = LALLOC_MULT(char_u, Rows); in screenalloc()
2681 new_TabPageIdxs = LALLOC_MULT(short, Columns); in screenalloc()
2683 new_popup_mask = LALLOC_MULT(short, Rows * Columns); in screenalloc()
2684 new_popup_mask_next = LALLOC_MULT(short, Rows * Columns); in screenalloc()
2685 new_popup_transparent = LALLOC_MULT(char, Rows * Columns); in screenalloc()
H A Ddrawscreen.c2911 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()
H A Dvim.h1611 #define LALLOC_MULT(type, count) (type *)lalloc(sizeof(type) * (count), FALSE) macro
H A Dgui_w32.c6209 padding = LALLOC_MULT(int, pad_size); in gui_mch_draw_string()
6246 unicodebuf = LALLOC_MULT(WCHAR, len); in gui_mch_draw_string()
6249 unicodepdy = LALLOC_MULT(int, len); in gui_mch_draw_string()
H A Dgui_x11.c1125 gui_argv = LALLOC_MULT(char *, *argc); in gui_mch_prepare()
H A Dos_win32.c6245 unicodebuf = length ? LALLOC_MULT(WCHAR, length) : NULL; in write_chars()
6258 utf8spbuf = LALLOC_MULT(WCHAR, length); in write_chars()
H A Dviminfo.c524 viminfo_history[type] = LALLOC_MULT(histentry_T, len); in prepare_viminfo_history()
/vim-8.2.3635/runtime/doc/
H A Dversion8.txt34663 Solution: Fix the LALLOC_MULT() argument.