Searched refs:LALLOC_MULT (Results 1 – 8 of 8) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | screen.c | 2667 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 D | drawscreen.c | 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()
|
| H A D | vim.h | 1611 #define LALLOC_MULT(type, count) (type *)lalloc(sizeof(type) * (count), FALSE) macro
|
| H A D | gui_w32.c | 6209 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 D | gui_x11.c | 1125 gui_argv = LALLOC_MULT(char *, *argc); in gui_mch_prepare()
|
| H A D | os_win32.c | 6245 unicodebuf = length ? LALLOC_MULT(WCHAR, length) : NULL; in write_chars() 6258 utf8spbuf = LALLOC_MULT(WCHAR, length); in write_chars()
|
| H A D | viminfo.c | 524 viminfo_history[type] = LALLOC_MULT(histentry_T, len); in prepare_viminfo_history()
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | version8.txt | 34663 Solution: Fix the LALLOC_MULT() argument.
|