Searched refs:s2 (Results 1 - 25 of 500) sorted by path

1234567891011>>

/freebsd-10.3-release/bin/sh/
H A Dexpand.c125 static wchar_t s1[2], s2[2]; local
128 s2[0] = c2;
129 return (wcscoll(s1, s2));
H A Dmystring.h42 #define equal(s1, s2) (strcmp(s1, s2) == 0)
/freebsd-10.3-release/bin/test/
H A Dtest.c555 intcmp (const char *s1, const char *s2) argument
561 q2 = getq(s2);
/freebsd-10.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.strtok.d89 string s2;
98 command[i].s2 = "";
103 command[i].s2 = "";
108 command[i].s2 = "o";
113 command[i].s2 = "o";
118 command[i].s2 = "bar";
123 command[i].s2 = "foo";
133 (this->result = strtok(command[i].s1, command[i].s2)) != command[i].result/
136 command[i].s1, command[i].s2,
/freebsd-10.3-release/cddl/contrib/opensolaris/common/ctf/
H A Dctf_util.c123 char *s2 = ctf_alloc(strlen(s1) + 1); local
125 if (s2 != NULL)
126 (void) strcpy(s2, s1);
128 return (s2);
/freebsd-10.3-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_open.c1037 char s1[64], s2[64]; local
1206 dt_get_sysinfo(SI_RELEASE, s2, sizeof (s2)));
H A Ddt_string.c139 char *q, *s2, c; local
164 if ((s2 = malloc(n + addl + 1)) == NULL)
167 for (p = s, q = s2; p < s + n; p++) {
227 return (s2);
/freebsd-10.3-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_sendrecv.c2301 char *s1, *s2; local
2508 s2 = strrchr(stream_fsname, '/');
2537 (s1 != NULL) && (s2 != NULL) && strcmp(s1, s2) != 0)) {
/freebsd-10.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctfmerge.c736 char *s2 = *((char **)p2); local
738 return (strcmp(s1, s2));
H A Dstabs.c125 concat(char *s1, char *s2, int s2strip) argument
127 int savelen = strlen(s2) - s2strip;
133 strncpy(out + strlen(out), s2, savelen);
135 strncpy(out, s2, savelen);
H A Dutil.c48 /* returns 1 if s1 == s2, 0 otherwise */
50 streq(const char *s1, const char *s2) argument
53 if (s2 != NULL)
55 } else if (s2 == NULL)
57 else if (strcmp(s1, s2) != 0)
/freebsd-10.3-release/cddl/lib/libdtrace/
H A Dlibproc_compat.h40 #define Pxlookup_by_name(p, l, s1, s2, sym, a) \
41 proc_name2sym((p), (s1), (s2), (sym))
/freebsd-10.3-release/contrib/amd/include/
H A Dam_defs.h1368 extern int am_memcmp(const voidp s1, const voidp s2, size_t len);
1517 extern int strcasecmp(const char *s1, const char *s2);
1545 extern char *strstr(const char *s1, const char *s2);
H A Dam_utils.h95 #define STREQ(s1, s2) (strcmp((s1), (s2)) == 0)
96 #define STRCEQ(s1, s2) (strcasecmp((s1), (s2)) == 0)
97 #define NSTREQ(s1, s2, n) (strncmp((s1), (s2), (n)) == 0)
98 #define NSTRCEQ(s1, s2, n) (strncasecmp((s1), (s2), (n)) == 0)
99 #define FSTREQ(s1, s2) ((*(s1) == *(s2))
[all...]
/freebsd-10.3-release/contrib/amd/libamu/
H A Dstrutil.c71 str3cat(char *p, char *s1, char *s2, char *s3) argument
74 int l2 = strlen(s2);
79 memmove(p + l1, s2, l2);
/freebsd-10.3-release/contrib/apr-util/
H A Dconfigure3794 struct s2 {int (*f) (double a);};
/freebsd-10.3-release/contrib/apr/
H A Dconfigure5808 struct s2 {int (*f) (double a);};
/freebsd-10.3-release/contrib/apr/include/
H A Dapr_general.h118 #define strcasecmp(s1, s2) stricmp(s1, s2)
124 #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n)
/freebsd-10.3-release/contrib/apr/strings/
H A Dapr_cpystrn.c206 const char *s2 = strrchr(pathname, path_separator_win); local
208 if (s2 > s) s = s2;
286 char *strstr(char *s1, char *s2) argument
289 if (*s2 == '\0') {
290 /* an empty s2 */
293 while((s1 = strchr(s1, *s2)) != NULL) {
294 /* found first character of s2, see if the rest matches */
296 p2 = s2;
/freebsd-10.3-release/contrib/atf/atf-c++/detail/
H A Dfs.cpp278 const char *s2 = atf_fs_path_cstring(&p.m_path); local
279 return std::strcmp(s1, s2) < 0;
/freebsd-10.3-release/contrib/atf/atf-c/detail/
H A Ddynstr.c391 atf_equal_dynstr_dynstr(const atf_dynstr_t *s1, const atf_dynstr_t *s2) argument
393 return strcmp(s1->m_data, s2->m_data) == 0;
H A Dfs_test.c821 atf_fs_stat_t s1, s2; local
843 RE(atf_fs_stat_init(&s2, &p2));
844 ATF_REQUIRE_EQ(atf_fs_stat_get_type(&s2), atf_fs_stat_dir_type);
845 ATF_REQUIRE( atf_fs_stat_is_owner_readable(&s2));
846 ATF_REQUIRE( atf_fs_stat_is_owner_writable(&s2));
847 ATF_REQUIRE( atf_fs_stat_is_owner_executable(&s2));
848 ATF_REQUIRE(!atf_fs_stat_is_group_readable(&s2));
849 ATF_REQUIRE(!atf_fs_stat_is_group_writable(&s2));
850 ATF_REQUIRE(!atf_fs_stat_is_group_executable(&s2));
851 ATF_REQUIRE(!atf_fs_stat_is_other_readable(&s2));
944 atf_fs_stat_t s1, s2; local
[all...]
H A Dlist_test.c131 char s2[] = "two"; local
136 RE(atf_list_append(&list, s2, false));
H A Dmap_test.c208 char s2[] = "two"; local
213 RE(atf_map_insert(&map, "K2", s2, false));
/freebsd-10.3-release/contrib/binutils/bfd/
H A Dconfigure2305 struct s2 {int (*f) (double a);};
3941 struct s2 {int (*f) (double a);};

Completed in 310 milliseconds

1234567891011>>