Home
last modified time | relevance | path

Searched defs:s2 (Results 1 – 25 of 524) sorted by relevance

12345678910>>...21

/netbsd/src/usr.bin/patch/
Dcommon.h61 #define strNE(s1,s2) (strcmp(s1, s2)) argument
62 #define strEQ(s1,s2) (!strcmp(s1, s2)) argument
63 #define strnNE(s1,s2,l) (strncmp(s1, s2, l)) argument
64 #define strnEQ(s1,s2,l) (!strncmp(s1, s2, l)) argument
/netbsd/src/external/gpl3/gdb/dist/libiberty/
Dfilename_cmp.c56 filename_cmp (const char *s1, const char *s2) in filename_cmp()
114 filename_ncmp (const char *s1, const char *s2, size_t n) in filename_ncmp()
193 filename_eq (const void *s1, const void *s2) in filename_eq()
/netbsd/src/external/gpl3/binutils/dist/libiberty/
Dfilename_cmp.c56 filename_cmp (const char *s1, const char *s2) in filename_cmp()
114 filename_ncmp (const char *s1, const char *s2, size_t n) in filename_ncmp()
193 filename_eq (const void *s1, const void *s2) in filename_eq()
/netbsd/src/external/gpl3/gcc/dist/libiberty/
Dfilename_cmp.c56 filename_cmp (const char *s1, const char *s2) in filename_cmp()
114 filename_ncmp (const char *s1, const char *s2, size_t n) in filename_ncmp()
193 filename_eq (const void *s1, const void *s2) in filename_eq()
/netbsd/src/bin/sh/
Dmystring.h45 #define equal(s1, s2) (strcmp(s1, s2) == 0) argument
46 #define scopy(s1, s2) ((void)strcpy(s2, s1)) argument
/netbsd/src/lib/libc/locale/
Dwcscoll.c45 wcscoll_l(const wchar_t *s1, const wchar_t *s2, locale_t loc) in wcscoll_l()
53 wcscoll(const wchar_t *s1, const wchar_t *s2) in wcscoll()
Dwcsxfrm.c45 wcsxfrm_l(wchar_t *s1, const wchar_t *s2, size_t n, locale_t loc) in wcsxfrm_l()
68 wcsxfrm(wchar_t *s1, const wchar_t *s2, size_t n) in wcsxfrm()
/netbsd/src/external/ibm-public/postfix/dist/src/util/
Dstrcasecmp.c44 int strcasecmp(const char *s1, const char *s2) in strcasecmp()
55 int strncasecmp(const char *s1, const char *s2, size_t n) in strncasecmp()
Dstrcasecmp_utf8.c101 int strcasecmp_utf8x(int flags, const char *s1, const char *s2) in strcasecmp_utf8x()
127 int strncasecmp_utf8x(int flags, const char *s1, const char *s2, in strncasecmp_utf8x()
/netbsd/src/external/lgpl3/gmp/dist/mpn/generic/
Ddiv_qr_1n_pi2.c55 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
64 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
73 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
84 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
94 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
Ddiv_qr_1u_pi2.c55 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
64 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
73 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
83 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
93 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
Ddiv_qr_2.c60 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
69 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
78 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
89 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
99 #define add_sssaaaa(s2, s1, s0, a1, a0, b1, b0) \ argument
/netbsd/src/common/lib/libc/string/
Dbcopy.c161 memcpy(void *s1, const void *s2, size_t n) in memcpy()
175 memmove(void *s1, const void *s2, size_t n) in memmove()
196 bcopy(const void *s2, void *s1, size_t n) in bcopy()
Dstrcmp.c57 strcmp(const char *s1, const char *s2) in strcmp()
/netbsd/src/external/bsd/tcpdump/dist/
Dascii_strcasecmp.c64 ascii_strcasecmp(const char *s1, const char *s2) in ascii_strcasecmp()
77 ascii_strncasecmp(const char *s1, const char *s2, size_t n) in ascii_strncasecmp()
/netbsd/src/external/bsd/libbind/dist/bsd/
Dstrcasecmp.c96 strcasecmp(const char *s1, const char *s2) { in strcasecmp()
108 strncasecmp(const char *s1, const char *s2, size_t n) { in strncasecmp()
/netbsd/src/external/bsd/wpa/dist/src/utils/
Dos.h532 #define os_memcmp(s1, s2, n) memcmp((s1), (s2), (n)) argument
540 #define os_strcasecmp(s1, s2) _stricmp((s1), (s2)) argument
542 #define os_strcasecmp(s1, s2) strcasecmp((s1), (s2)) argument
547 #define os_strncasecmp(s1, s2, n) _strnicmp((s1), (s2), (n)) argument
549 #define os_strncasecmp(s1, s2, n) strncasecmp((s1), (s2), (n)) argument
556 #define os_strcmp(s1, s2) strcmp((s1), (s2)) argument
559 #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n)) argument
Dos_none.c159 int os_memcmp(const void *s1, const void *s2, size_t n) in os_memcmp()
177 int os_strcasecmp(const char *s1, const char *s2) in os_strcasecmp()
187 int os_strncasecmp(const char *s1, const char *s2, size_t n) in os_strncasecmp()
209 int os_strcmp(const char *s1, const char *s2) in os_strcmp()
215 int os_strncmp(const char *s1, const char *s2, size_t n) in os_strncmp()
/netbsd/src/external/bsd/ntp/dist/sntp/libopts/
Dstreqvcmp.c105 strneqvcmp(char const * s1, char const * s2, int ct) in strneqvcmp()
151 streqvcmp(char const * s1, char const * s2) in streqvcmp()
/netbsd/src/tests/lib/libc/regex/
Dt_exhaust.c118 char *d, *s1, *s2; in p0() local
130 char *d, *s1, *s2, *s3; in p1() local
146 char *d, *s1, *s2, *s3; in ps() local
184 char *d, *s1, *s2; in p6() local
/netbsd/src/sys/fs/adosfs/
Dadlookup.c47 #define strmatch(s1, l1, s2, l2, i) \ argument
50 #define strmatch(s1, l1, s2, l2, i) \ argument
/netbsd/src/external/bsd/openldap/dist/libraries/liblutil/
Dmemcmp.c32 const unsigned char *s1=v1, *s2=v2; variable
/netbsd/src/lib/libc/string/
DLint_strcmp.c12 strcmp(const char *s1, const char *s2) in strcmp()
Dwcscmp.c52 wcscmp(const wchar_t *s1, const wchar_t *s2) in wcscmp()
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/roken/
Dstrcasecmp.c46 strcasecmp(const char *s1, const char *s2) in strcasecmp()

12345678910>>...21