| /vim-8.2.3635/src/ |
| H A D | ascii.h | 19 #define CharOrd(x) ((x) < 'a' ? (x) - 'A' : (x) - 'a') argument 20 #define CharOrdLow(x) ((x) - 'a') argument 21 #define CharOrdUp(x) ((x) - 'A') argument 40 #define Ctrl_chr(x) (TOUPPER_ASC(x) ^ 0x40) // '?' -> DEL, '@' -> ^@, etc. argument 41 #define Meta(x) ((x) | 0x80) argument 93 #define CharOrdLow(x) (CharOrd__((x) - 'a')) argument 94 #define CharOrdUp(x) (CharOrd__((x) - 'A')) argument 95 #define CharOrd(x) (isupper(x) ? CharOrdUp(x) : CharOrdLow(x)) argument 156 #define Ctrl_chr(x) (CtrlTable[(x)]) argument 159 #define CtrlChar(x) ((x < ' ') ? CtrlCharTable[(x)] : 0) argument [all …]
|
| H A D | os_unix.h | 76 # define vim_mkdir(x, y) mkdir((char *)vms_fixfilename(x), y) argument 77 # define mch_rmdir(x) delete((char *)vms_fixfilename(x)) argument 78 # define mch_remove(x) delete((char *)vms_fixfilename(x)) argument 80 # define vim_mkdir(x, y) mkdir((char *)(x), y) argument 81 # define mch_rmdir(x) rmdir((char *)(x)) argument 82 # define mch_remove(x) unlink((char *)(x)) argument 464 # define mch_getenv(x) (char_u *)__getenv((char *)(x)) argument 466 # define mch_getenv(x) (char_u *)getenv((char *)(x)) argument 468 # define mch_setenv(name, val, x) setenv(name, val, x) argument 485 # define SETJMP(x) sigsetjmp((x), 1) argument [all …]
|
| H A D | sha256.c | 82 #define SHR(x, n) ((x & 0xFFFFFFFF) >> n) in sha256_process() argument 83 #define ROTR(x, n) (SHR(x, n) | (x << (32 - n))) in sha256_process() argument 85 #define S0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3)) in sha256_process() argument 86 #define S1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10)) in sha256_process() argument 88 #define S2(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22)) in sha256_process() argument 89 #define S3(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25)) in sha256_process() argument 91 #define F0(x, y, z) ((x & y) | (z & (x | y))) in sha256_process() argument 92 #define F1(x, y, z) (z ^ (x & (y ^ z))) in sha256_process() argument 100 #define P(a,b,c,d,e,f,g,h,x,K) \ in sha256_process() argument
|
| H A D | if_mzsch.h | 54 # define MZ_GC_VAR_IN_REG(x, v) // empty argument 57 # define MZ_GC_ARRAY_VAR_IN_REG(x, v, l) // empty argument
|
| H A D | os_mac.h | 212 #define mch_remove(x) unlink((char *)(x)) argument 216 # define mch_setenv(name, val, x) setenv(name, val, x) argument 220 # define mch_getenv(x) vimpty_getenv(x) argument 221 # define mch_setenv(name, val, x) setenv(name, val, x) argument
|
| H A D | gui_at_sb.c | 215 #define PICKLENGTH(widget, x, y) \ argument 217 #define AT_MIN(x,y) ((x) < (y) ? (x) : (y)) argument 218 #define AT_MAX(x,y) ((x) > (y) ? (x) : (y)) argument 483 int x, y; in CreateGC() local 614 int x, y; in Redisplay() local 722 Position *x, // RETURN in ExtractPosition() 769 Position x, y, loc; in HandleThumb() local 897 Position x, y, loc; in NotifyScroll() local 994 FractionLoc(ScrollbarWidget sbw, int x, int y) in FractionLoc() 1015 Position x, y; in MoveThumb() local
|
| H A D | macros.h | 44 #define VIM_ISWHITE(x) ((x) == ' ' || (x) == '\t') argument 45 #define IS_WHITE_OR_NUL(x) ((x) == ' ' || (x) == '\t' || (x) == NUL) argument 118 #define EMPTY_IF_NULL(x) ((x) ? (x) : (char_u *)"") argument 267 # define PLINES_NOFILL(x) plines_nofill(x) argument 269 # define PLINES_NOFILL(x) plines(x) argument 285 # define isnan(x) _isnan(x) argument 286 static __inline int isinf(double x) { return !_finite(x) && !_isnan(x); } in isinf() 290 static inline int isnan(double x) { return x != x; } in isnan() 293 static inline int isinf(double x) { return !isnan(x) && isnan(x - x); } in isinf()
|
| H A D | beval.h | 42 int x; member 83 int x; member
|
| H A D | gui_gtk_f.c | 45 gint x; // relative subwidget x position member 110 gint x, in gui_gtk_form_put() 156 gint x, in gui_gtk_form_move() 750 gint x; in form_position_child() local 831 gint x, gint y, gint w, gint h) in gui_gtk_form_move_resize()
|
| H A D | iid_ole.c | 32 unsigned long x; member
|
| H A D | gui_dwrite.cpp | 36 # define _Out_writes_to_(x, y) argument 37 # define _Out_writes_to_opt_(x, y) argument 1003 int x, int y, int w, int h, int cellWidth, COLORREF color, in DrawText() 1090 DWriteContext::SetPixel(int x, int y, COLORREF color) in SetPixel() 1110 DWriteContext::Scroll(int x, int y, const RECT *rc) in Scroll() 1274 int x, in DWriteContext_DrawText() 1305 DWriteContext_SetPixel(DWriteContext *ctx, int x, int y, COLORREF color) in DWriteContext_SetPixel() 1312 DWriteContext_Scroll(DWriteContext *ctx, int x, int y, const RECT *rc) in DWriteContext_Scroll()
|
| H A D | os_amiga.h | 234 #define mch_remove(x) remove((char *)(x)) argument 237 #define vim_mkdir(x, y) mch_mkdir(x) argument
|
| H A D | message_test.c | 26 # define MIN(x,y) ((x) < (y) ? (x) : (y)) argument
|
| H A D | gui_x11.c | 99 # define XDrawString(dpy, win, gc, x, y, str, n) \ argument 109 # define XDrawString16(dpy, win, gc, x, y, str, n) \ argument 119 # define XDrawImageString16(dpy, win, gc, x, y, str, n) \ argument 1025 int x, y; in gui_x11_mouse_cb() local 1255 int x, y, mask; in gui_mch_init() local 1669 gui_mch_get_winpos(int *x, int *y) in gui_mch_get_winpos() 1687 gui_mch_set_winpos(int x, int y) in gui_mch_set_winpos() 2734 int x; in gui_mch_clear_block() local 3145 gui_mch_getmouse(int *x, int *y) in gui_mch_getmouse() 3162 gui_mch_setmouse(int x, int y) in gui_mch_setmouse()
|
| H A D | gui_athena.c | 561 int x, in gui_mch_set_toolbar_pos() 590 int x, in gui_mch_set_text_area_pos() 678 int x, in gui_mch_set_menu_pos() 1874 int x, in gui_mch_set_scrollbar_pos() 2001 Position x, y; in gui_mch_browse() local 2099 Position x, y; in gui_mch_dialog() local
|
| H A D | gui_gtk_x11.c | 1674 gint *x, in gui_gtk_get_pointer() 1686 gint *x, in gui_gtk_window_at_position() 1705 int x; in motion_repeat_timer_cb() local 1750 int x; in motion_notify_event() local 1779 int x, y; in button_press_event() local 1888 int x, y; in button_release_event() local 2006 gint x, in drag_handle_uri_list() 2070 gint x, in drag_data_received_cb() 3128 int x = bevent->x; in on_tabline_menu() local 4110 int x, y; in gui_gtk_get_screen_dimensions() local [all …]
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_trycatch.vim | 1115 func T69_throw(x) argument 1191 func T70_throw(x, n) argument 1196 func T70_F(x, y, n) argument 1201 func T70_G(x, y, n) argument 1301 func T71_throw(x, n) argument 1401 func T72_throw(x) argument 1541 func T73_throw(x, n) argument 1546 func T73_expr(x, n) argument 1632 func T74_throw(x, n) argument 1637 func T74_expr(x, n) argument [all …]
|
| H A D | test_prompt_buffer.vim | 103 func MyPromptCallback(x, text) argument 106 func MyPromptInterrupt(x) argument
|
| H A D | test_listdict.vim | 1119 func s:check_scope_dict(x, fixed) argument 1120 func s:gen_cmd(cmd, x) argument
|
| H A D | test_normal.vim | 411 func! Test_opfunc1(x, y, type) argument 425 func! Test_opfunc2(x, y, type) argument 439 func! Test_opfunc3(x, y) argument
|
| H A D | test_user_func.vim | 166 func F1(x = y) argument 347 func Func(x, ...) argument
|
| H A D | test_expr.vim | 544 func SetVal(x) argument
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | julia.vim | 19 function! s:d(x) argument 23 function! s:d(x) argument
|
| /vim-8.2.3635/src/xdiff/ |
| H A D | xdiff.h | 47 #define XDF_DIFF_ALG(x) ((x) & XDF_DIFF_ALGORITHM_MASK) argument 128 #define xdl_malloc(x) lalloc((x), TRUE) argument 130 #define xdl_realloc(ptr,x) vim_realloc((ptr),(x)) argument
|
| /vim-8.2.3635/src/tee/ |
| H A D | tee.c | 40 # define sysconf(x) -1 argument
|