Searched refs:s1 (Results 1 - 25 of 1754) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/unsorted/
H A Dfoo.c2 main (s1, s2)
3 int *s1; int *s2;
5 while ((*s1++ = *s2++) != '\0')
7 return s1 - 1;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/unsorted/
H A Dfoo.c2 main (s1, s2)
3 int *s1; int *s2;
5 while ((*s1++ = *s2++) != '\0')
7 return s1 - 1;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dpr42629.c8 int s1 = adler; local
10 s1 += buf[0];
11 s2 += s1;
12 s1 += buf[1];
13 s2 += s1;
14 s1 += buf[2];
15 s2 += s1;
16 s1 += buf[3];
17 s2 += s1;
18 s1
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/builtins/lib/
H A Dstrcmp.c5 strcmp (const char *s1, const char *s2) argument
12 while (*s1 != 0 && *s1 == *s2)
13 s1++, s2++;
15 if (*s1 == 0 || *s2 == 0)
16 return (unsigned char) *s1 - (unsigned char) *s2;
17 return *s1 - *s2;
H A Dstrpbrk.c5 strpbrk(const char *s1, const char *s2) argument
12 while (*s1)
15 if (*s1 == *p)
16 return (char *)s1;
17 s1++;
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dstrtok_r.c45 strtok_r(char *s1, const char *s2, char **lasts) argument
49 if (s1 == NULL)
50 s1 = *lasts;
51 while(*s1 && strchr(s2, *s1))
52 ++s1;
53 if(*s1 == '\0')
55 ret = s1;
56 while(*s1 && !strchr(s2, *s1))
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openpam/dist/lib/
H A Dopenpam_strlcmp.h36 /* like strcmp(3), but verifies that the entirety of s1 was matched */
38 strlcmp(const char *s1, const char *s2, size_t len) argument
41 for (; len && *s1 && *s2; --len, ++s1, ++s2)
42 if (*s1 != *s2)
43 return ((unsigned char)*s1 - (unsigned char)*s2);
44 return ((unsigned char)*s1);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900407_01.C28 struct s1 : public s0 { struct in inherits:s0
31 s1 ();
34 s1::s1() : () { // { dg-error "" } anachronism used function in class:s1
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900407_01.C28 struct s1 : public s0 { struct in inherits:s0
31 s1 ();
34 s1::s1() : () { // { dg-error "" } anachronism used function in class:s1
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/set/modifiers/insert/
H A D1.cc31 set<int> s0, s1;
35 s1.insert(s1.end(), 1);
36 VERIFY( s0 == s1 );
39 s1.insert(s1.begin(), 3);
40 VERIFY( s0 == s1 );
43 iter1 = s1.insert(s1.end(), 4);
44 VERIFY( s0 == s1 );
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/23_containers/set/insert/
H A D1.cc40 set<int> s0, s1;
44 s1.insert(s1.end(), 1);
45 VERIFY( s0 == s1 );
48 s1.insert(s1.begin(), 3);
49 VERIFY( s0 == s1 );
52 iter1 = s1.insert(s1.end(), 4);
53 VERIFY( s0 == s1 );
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/string/
H A DLint_strcmp.c12 strcmp(s1, s2)
13 const char *s1, *s2;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/builtins/lib/
H A Dstrpbrk.c6 strpbrk(const char *s1, const char *s2) argument
13 while (*s1)
16 if (*s1 == *p)
17 return (char *)s1;
18 s1++;
H A Dstrcmp.c6 strcmp (const char *s1, const char *s2) argument
13 while (*s1 != 0 && *s1 == *s2)
14 s1++, s2++;
16 if (*s1 == 0 || *s2 == 0)
17 return (unsigned char) *s1 - (unsigned char) *s2;
18 return *s1 - *s2;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/21_strings/basic_string/
H A Dinit-list.cc30 string s1 = { 'a', 'b', 'c' }; local
31 VERIFY(s1 == "abc");
33 s1 = { 'd', 'e', 'f' };
34 VERIFY(s1 == "def");
36 s1 += { 'g', 'h', 'i' };
37 VERIFY(s1 == "defghi");
39 s1.append({ 'j', 'k', 'l' });
40 VERIFY(s1 == "defghijkl");
42 s1.assign({ 'm', 'n', 'o' });
43 VERIFY(s1
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/ext/vstring/
H A Dinit-list.cc29 __gnu_cxx::__vstring s1 = { 'a', 'b', 'c' }; local
30 VERIFY(s1 == "abc");
32 s1 = { 'd', 'e', 'f' };
33 VERIFY(s1 == "def");
35 s1 += { 'g', 'h', 'i' };
36 VERIFY(s1 == "defghi");
38 s1.append({ 'j', 'k', 'l' });
39 VERIFY(s1 == "defghijkl");
41 s1.assign({ 'm', 'n', 'o' });
42 VERIFY(s1
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/unordered_set/erase/
H A D1.cc34 Set s1; local
36 s1.insert("because to why");
37 s1.insert("the stockholm syndrome");
38 s1.insert("a cereous night");
39 s1.insert("eeilo");
40 s1.insert("protean");
41 s1.insert("the way you are when");
42 s1.insert("tillsammans");
43 s1.insert("umbra/penumbra");
44 s1
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/tr1/6_containers/unordered_set/erase/
H A D1.cc35 Set s1; local
37 s1.insert("because to why");
38 s1.insert("the stockholm syndrome");
39 s1.insert("a cereous night");
40 s1.insert("eeilo");
41 s1.insert("protean");
42 s1.insert("the way you are when");
43 s1.insert("tillsammans");
44 s1.insert("umbra/penumbra");
45 s1
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/ext/
H A Dpacked9.C6 struct s1 { struct
11 f(struct s1 *s)
17 g(struct s1 *s)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D921203-2.c4 } s1; typedef in typeref:struct:__anon5296
6 s1 f (int arg0,...)
9 s1 back;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/builtins/
H A Dstrstr-asm-lib.c11 my_strstr (const char *s1, const char *s2) argument
19 if (s2 != p || strcmp (s1, "hello world" + 2) != 0)
23 return (char *) s1;
24 for (s1 = strchr (s1, *s2); s1; s1 = strchr (s1 + 1, *s2))
25 if (strncmp (s1, s2, len) == 0)
26 return (char *) s1;
31 strstr(const char *s1, const char *s2) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/ext/
H A Dpacked9.C6 struct s1 { struct
11 f(struct s1 *s)
17 g(struct s1 *s)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D921203-2.c4 } s1; typedef in typeref:struct:__anon3652
6 s1 f (int arg0,...)
9 s1 back;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/builtins/
H A Dstrstr-asm-lib.c11 my_strstr (const char *s1, const char *s2) argument
19 if (s2 != p || strcmp (s1, "hello world" + 2) != 0)
23 return (char *) s1;
24 for (s1 = strchr (s1, *s2); s1; s1 = strchr (s1 + 1, *s2))
25 if (strncmp (s1, s2, len) == 0)
26 return (char *) s1;
31 strstr(const char *s1, const char *s2) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/backward/hash_set/
H A D25896.cc65 Set s1; local
67 s1.insert("because to why");
68 s1.insert("the stockholm syndrome");
69 s1.insert("a cereous night");
70 s1.insert("eeilo");
71 s1.insert("protean");
72 s1.insert("the way you are when");
73 s1.insert("tillsammans");
74 s1.insert("umbra/penumbra");
75 s1
[all...]

Completed in 317 milliseconds

1234567891011>>