Lines Matching defs:d

1626 #define STRCPY(d, s)	    strcpy((char *)(d), (char *)(s))  argument
1627 #define STRNCPY(d, s, n) strncpy((char *)(d), (char *)(s), (size_t)(n)) argument
1628 #define STRCMP(d, s) strcmp((char *)(d), (char *)(s)) argument
1629 #define STRNCMP(d, s, n) strncmp((char *)(d), (char *)(s), (size_t)(n)) argument
1631 # define STRICMP(d, s) strcasecmp((char *)(d), (char *)(s)) argument
1634 # define STRICMP(d, s) stricmp((char *)(d), (char *)(s)) argument
1636 # define STRICMP(d, s) vim_stricmp((char *)(d), (char *)(s)) argument
1640 # define STRCOLL(d, s) strcoll((char *)(d), (char *)(s)) argument
1642 # define STRCOLL(d, s) strcmp((char *)(d), (char *)(s)) argument
1646 #define STRMOVE(d, s) mch_memmove((d), (s), STRLEN(s) + 1) argument
1649 # define STRNICMP(d, s, n) strncasecmp((char *)(d), (char *)(s), (size_t)(n)) argument
1652 # define STRNICMP(d, s, n) strnicmp((char *)(d), (char *)(s), (size_t)(n)) argument
1654 # define STRNICMP(d, s, n) vim_strnicmp((char *)(d), (char *)(s), (size_t)(n)) argument
1664 # define MB_STRICMP(d, s) mb_strnicmp((char_u *)(d), (char_u *)(s), (int)MAXCOL) argument
1665 # define MB_STRNICMP(d, s, n) mb_strnicmp((char_u *)(d), (char_u *)(s), (int)(n)) argument
1667 #define STRCAT(d, s) strcat((char *)(d), (char *)(s)) argument
1668 #define STRNCAT(d, s, n) strncat((char *)(d), (char *)(s), (size_t)(n)) 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
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
1803 # define INIT6(a, b, c, d, e, f) = {a, b, c, d, e, f} argument