| /vim-8.2.3635/src/testdir/ |
| H A D | test_utf8_comparisons.vim | 4 func Ch(a, op, b, expected) argument 9 func Chk(a, b, result) argument 34 func Check(a, b, result) argument 39 func LT(a, b) argument 43 func GT(a, b) argument 47 func EQ(a, b) argument
|
| H A D | test_sort.vim | 5 func Compare1(a, b) abort argument 10 func Compare2(a, b) abort argument
|
| H A D | test_user_func.vim | 121 func Args2(a = 1, b = 2, c = 3) argument 126 func s:fcn(a, b=1, c) argument
|
| H A D | test_swap.vim | 442 func s:blob_to_pid(b) argument
|
| /vim-8.2.3635/src/xdiff/ |
| H A D | xmacros.h | 29 #define XDL_MIN(a, b) ((a) < (b) ? (a): (b)) argument 30 #define XDL_MAX(a, b) ((a) > (b) ? (a): (b)) argument 34 #define XDL_ADDBITS(v,b) ((v) + ((v) >> (b))) argument 35 #define XDL_MASKBITS(b) ((1UL << (b)) - 1) argument 36 #define XDL_HASHLONG(v,b) (XDL_ADDBITS((unsigned long)(v), b) & XDL_MASKBITS(b)) argument
|
| /vim-8.2.3635/src/ |
| H A D | blob.c | 39 blob_T *b = blob_alloc(); in rettv_blob_alloc() local 52 rettv_blob_set(typval_T *rettv, blob_T *b) in rettv_blob_set() 89 blob_free(blob_T *b) in blob_free() 100 blob_unref(blob_T *b) in blob_unref() 110 blob_len(blob_T *b) in blob_len() 122 blob_get(blob_T *b, int idx) in blob_get() 417 blob_T *b = argvars[0].vval.v_blob; in blob_remove() local
|
| H A D | if_lua.c | 770 luaL_Buffer b; in luaV_pushline() local 782 luaL_Buffer b; in luaV_toline() local 796 luaL_Buffer b; in luaV_msgfunc() local 1198 blob_T *b = luaV_unbox(L, luaV_Blob, 1); in luaV_pushtype() local 1206 blob_T *b = luaV_unbox(L, luaV_Blob, 1); in luaV_blob_len() local 1214 blob_T *b = luaV_unbox(L, luaV_Blob, 1); in luaV_blob_index() local 1242 blob_T *b = luaV_unbox(L, luaV_Blob, 1); in luaV_blob_newindex() local 1518 buf_T *b = (buf_T *) luaV_checkcache(L, (void *) *lb); in luaV_buffer_insert() local 2031 blob_T *b; in luaV_blob() local 2279 luaL_Buffer b; in luaV_luaeval() local [all …]
|
| H A D | macros.h | 24 #define LT_POS(a, b) (((a).lnum != (b).lnum) \ argument 29 #define LT_POSP(a, b) (((a)->lnum != (b)->lnum) \ argument 34 #define EQUAL_POS(a, b) (((a).lnum == (b).lnum) && ((a).col == (b).col) && ((a).coladd == (b).colad… argument 38 #define LTOREQ_POS(a, b) (LT_POS(a, b) || EQUAL_POS(a, b)) argument 255 #define MB_CHAR2BYTES(c, b) do { if (has_mbyte) (b) += (*mb_char2bytes)((c), (b)); else *(b)++ = (c… argument 396 # define MIN(a, b) ((a) < (b) ? (a) : (b)) argument 399 # define MAX(a, b) ((a) > (b) ? (a) : (b)) argument
|
| H A D | sha256.c | 27 #define GET_UINT32(n, b, i) \ argument 35 #define PUT_UINT32(n,b,i) \ argument 100 #define P(a,b,c,d,e,f,g,h,x,K) \ in sha256_process() argument
|
| H A D | crypt_zip.c | 58 #define CRC32(c, b) (crc_32_table[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8)) argument
|
| H A D | ascii.h | 17 #define IF_EB(a, b) a argument 85 #define IF_EB(a, b) b argument
|
| H A D | list.c | 2267 blob_T *b = NULL; in filter_map() local 2676 blob_T *b = argvars[0].vval.v_blob; in f_add() local 3000 blob_T *b = argvars[0].vval.v_blob; in f_insert() local 3125 blob_T *b = argvars[0].vval.v_blob; in f_reverse() local 3257 blob_T *b = argvars[0].vval.v_blob; in f_reduce() local
|
| H A D | os_amiga.c | 82 # define dos_packet(a, b, c) DoPkt(a, b, c, 0, 0, 0, 0) argument 1629 sortcmp(const void *a, const void *b) in sortcmp()
|
| H A D | vim.h | 410 # define vim_fseek(a, b, c) fseek(a, (long)b, c) argument 1791 # define INIT2(a, b) argument 1792 # define INIT3(a, b, c) argument 1793 # define INIT4(a, b, c, d) argument 1794 # define INIT5(a, b, c, d, e) argument 1795 # define INIT6(a, b, c, d, e, f) argument 1799 # define INIT2(a, b) = {a, b} argument 1800 # define INIT3(a, b, c) = {a, b, c} argument 1801 # define INIT4(a, b, c, d) = {a, b, c, d} argument 1802 # define INIT5(a, b, c, d, e) = {a, b, c, d, e} argument [all …]
|
| H A D | json.c | 191 blob_T *b; in json_encode_item() local
|
| H A D | highlight.c | 117 # define CENT(a, b) b argument 119 # define CENT(a, b) a argument 2245 # define RGB(r, g, b) ((r<<16) | (g<<8) | (b)) argument 2424 gui_get_rgb_color_cmn(int r, int g, int b) in gui_get_rgb_color_cmn()
|
| /vim-8.2.3635/src/libvterm/src/ |
| H A D | rect.h | 30 static int rect_equal(VTermRect *a, VTermRect *b) in rect_equal() 49 static int rect_intersects(VTermRect *a, VTermRect *b) in rect_intersects()
|
| H A D | utf8.h | 28 int b = nbytes; in fill_utf8() local
|
| H A D | vterm_internal.h | 19 # define DEBUG_LOG2(s, a, b) fprintf(stderr, s, a, b) argument 20 # define DEBUG_LOG3(s, a, b, c) fprintf(stderr, s, a, b, c) argument 24 # define DEBUG_LOG2(s, a, b) argument 25 # define DEBUG_LOG3(s, a, b, c) argument
|
| H A D | state.c | 6 #define strneq(a,b,n) (strncmp(a,b,n)==0) argument 1001 #define LEADER(l,b) ((l << 8) | b) in on_csi() argument 1002 #define INTERMED(i,b) ((i << 16) | b) in on_csi() argument
|
| H A D | pen.c | 225 int vterm_color_is_equal(const VTermColor *a, const VTermColor *b) in vterm_color_is_equal()
|
| /vim-8.2.3635/runtime/ftplugin/ |
| H A D | raku.vim | 45 func s:compareReverseFtime(a, b) argument
|
| /vim-8.2.3635/src/libvterm/t/ |
| H A D | harness.c | 7 #define streq(a,b) (!strcmp(a,b)) argument 8 #define strstartswith(a,b) (!strncmp(a,b,strlen(b))) argument 110 unsigned char b = bytes[i]; in parser_text() local
|
| /vim-8.2.3635/runtime/pack/dist/opt/dvorak/dvorak/ |
| H A D | enable.vim | 9 inoremap b x map
|
| /vim-8.2.3635/runtime/macros/ |
| H A D | less.vim | 147 noremap <script> b <C-B><SID>L map
|