| /vim-8.2.3635/src/ |
| H A D | alloc.c | 629 ga_clear(garray_T *gap) in ga_clear() 639 ga_clear_strings(garray_T *gap) in ga_clear_strings() 689 ga_init(garray_T *gap) in ga_init() 697 ga_init2(garray_T *gap, int itemsize, int growsize) in ga_init2() 709 ga_grow(garray_T *gap, int n) in ga_grow() 717 ga_grow_inner(garray_T *gap, int n) in ga_grow_inner() 749 ga_concat_strings(garray_T *gap, char *sep) in ga_concat_strings() 784 ga_add_string(garray_T *gap, char_u *p) in ga_add_string() 806 ga_concat(garray_T *gap, char_u *s) in ga_concat() 840 ga_append(garray_T *gap, int c) in ga_append() [all …]
|
| H A D | fold.c | 154 garray_T *gap; in hasFoldingWin() local 581 garray_T *gap; in foldCreate() local 717 garray_T *gap; in deleteFold() local 894 garray_T *gap; in foldMoveTo() local 1188 garray_T *gap; in foldLevelWin() local 1306 garray_T *gap; in setManualFoldWin() local 1512 garray_T *gap, in foldMarkAdjustRecurse() 1745 setSmallMaybe(garray_T *gap) in setSmallMaybe() 2401 garray_T *gap, in foldUpdateIEMSRecurse() 2887 garray_T *gap, in foldSplit() [all …]
|
| H A D | debugger.c | 519 #define DEBUGGY(gap, idx) (((struct debuggy *)gap->ga_data)[idx]) argument 559 garray_T *gap) // either &dbg_breakp or &prof_ga in dbg_parsearg() 670 garray_T *gap; in ex_breakadd() local 765 garray_T *gap; in ex_breakdel() local 915 garray_T *gap, // either &dbg_breakp or &prof_ga in debuggy_find()
|
| H A D | usercmd.c | 34 #define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i]) argument 137 garray_T *gap; in find_ucmd() local 421 garray_T *gap; in uc_list() local 898 garray_T *gap; in uc_add_command() local 1144 uc_clear(garray_T *gap) in uc_clear() 1170 garray_T *gap; in ex_delcommand() local
|
| H A D | json.c | 31 json_encode_gap(garray_T *gap, typval_T *val, int options) in json_encode_gap() 94 write_string(garray_T *gap, char_u *str) in write_string() 187 json_encode_item(garray_T *gap, typval_T *val, int copyID, int options) in json_encode_item()
|
| H A D | testing.c | 22 prepare_assert_error(garray_T *gap) in prepare_assert_error() 49 ga_concat_esc(garray_T *gap, char_u *p, int clen) in ga_concat_esc() 85 ga_concat_shorten_esc(garray_T *gap, char_u *str) in ga_concat_shorten_esc() 131 garray_T *gap, in fill_assert_error() 334 assert_append_cmd_or_arg(garray_T *gap, typval_T *argvars, char_u *cmd) in assert_append_cmd_or_arg()
|
| H A D | findfile.c | 2265 is_unique(char_u *maybe_unique, garray_T *gap, int i) in is_unique() 2302 expand_path_option(char_u *curdir, garray_T *gap) in expand_path_option() 2382 get_path_cutoff(char_u *fname, garray_T *gap) in get_path_cutoff() 2420 uniquefy_paths(garray_T *gap, char_u *pattern) in uniquefy_paths() 2603 garray_T *gap, in expand_in_path()
|
| H A D | ui.c | 794 garray_T *gap; in get_input_buf() local 818 garray_T *gap = (garray_T *)p; in set_input_buf() local
|
| H A D | vim9script.c | 253 new_imported(garray_T *gap) in new_imported() 351 garray_T *gap, in handle_import()
|
| H A D | spellfile.c | 944 read_rep_section(FILE *fd, garray_T *gap, short *first) in read_rep_section() 997 garray_T *gap; in read_sal_section() local 1226 garray_T *gap; in read_compound() local 1413 garray_T *gap; in set_sofo() local 1502 garray_T *gap = &lp->sl_sal; in set_sal_first() local 2548 garray_T *gap = &spin->si_comppat; in spell_read_aff() local 3424 garray_T *gap, in add_fromto() 4865 garray_T *gap; in write_vim_spell() local 5685 garray_T *gap) // place to store line of numbers in sug_filltable() 6573 write_spell_prefcond(FILE *fd, garray_T *gap) in write_spell_prefcond()
|
| H A D | arglist.c | 276 get_arglist(garray_T *gap, char_u *str, int escaped) in get_arglist() 599 garray_T *gap = &curwin->w_alist->al_ga; in ex_args() local
|
| H A D | spellsuggest.c | 709 garray_T *gap, in spell_suggest_list() 1265 garray_T *gap; in suggest_trie_walk() local 2885 garray_T *gap; in score_combine() local 3478 garray_T *gap, // either su_ga or su_sga in add_suggestion() 3609 garray_T *gap) // either su_ga or su_sga in check_suggestions() 3738 garray_T *gap, in cleanup_suggestions()
|
| H A D | filepath.c | 3257 garray_T *gap, in expand_backtick() 3335 garray_T *gap, in dos_expandpath() 3550 garray_T *gap, in mch_expandpath() 3580 garray_T *gap, in unix_expandpath() 4031 garray_T *gap, in addfile()
|
| H A D | blob.c | 144 garray_T *gap = &blob->bv_ga; in blob_set_append() local
|
| H A D | macros.h | 391 #define GA_GROW_FAILS(gap, n) unlikely((((gap)->ga_maxlen - (gap)->ga_len < n) ? ga_grow_inner((gap… argument 393 #define GA_GROW_OK(gap, n) likely((((gap)->ga_maxlen - (gap)->ga_len < n) ? ga_grow_inner((gap), (n… argument
|
| H A D | session.c | 98 garray_T *gap, in ses_arglist()
|
| H A D | vim9type.c | 44 clear_type_list(garray_T *gap) in clear_type_list()
|
| H A D | terminal.c | 1758 garray_T *gap; in cleanup_scrollback() local 3167 limit_scrollback(term_T *term, garray_T *gap, int update_buffer) in limit_scrollback() 3199 garray_T *gap; in handle_pushline() local 4387 garray_T *gap = &term->tl_osc_buf; in parse_osc() local 4952 dump_is_corrupt(garray_T *gap) in dump_is_corrupt() 4958 append_cell(garray_T *gap, cellattr_T *cell) in append_cell()
|
| H A D | os_vms.c | 518 mch_expandpath(garray_T *gap, char_u *path, int flags) in mch_expandpath()
|
| H A D | regexp_bt.c | 2662 reg_save(regsave_T *save, garray_T *gap) in reg_save() 2678 reg_restore(regsave_T *save, garray_T *gap) in reg_restore()
|
| H A D | os_amiga.c | 1509 garray_T *gap, in mch_expandpath()
|
| H A D | job.c | 987 win32_build_cmd(list_T *l, garray_T *gap) in win32_build_cmd()
|
| H A D | channel.c | 2307 garray_T *gap = &chanpart->ch_block_ids; in channel_add_block_id() local 2324 garray_T *gap = &chanpart->ch_block_ids; in channel_remove_block_id() local 2348 garray_T *gap = &chanpart->ch_block_ids; in channel_has_block_id() local
|
| H A D | list.c | 1329 garray_T *gap, // to store the result in in list_join_inner() 1407 garray_T *gap, in list_join()
|
| H A D | spell.c | 912 garray_T *gap) // &sl_comppat in match_checkcompoundpattern() 1680 garray_T *gap; in slang_clear() local
|