Searched refs:s2 (Results 1 - 25 of 561) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A Dfoo.c2 main (s1, s2)
3 int *s1; int *s2;
5 while ((*s1++ = *s2++) != '\0')
H A Ds.c5 } s1, s2; variable in typeref:struct:foo
8 structret (s1, i1, i2, s2)
9 struct foo s1, s2;
17 return s2;
19 s2.a = 11;
20 s2.b = 22;
21 s2.c = s1.c;
22 s2.d = s1.d;
23 return s2;
/openbsd-current/sys/lib/libsa/
H A Dstrcmp.c34 strcmp(const char *s1, const char *s2) argument
36 while(*s1 && *s2 && *s1 == *s2)
37 s1++, s2++;
38 return *s1 - *s2;
H A Dstrncmp.c34 strncmp(const char *s1, const char *s2, size_t len) argument
39 while (*s1 && *s2 && len-- && *s1 == *s2)
40 s1++, s2++;
41 return *s1 - *s2;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dstring-opt-8.c15 const char *s2, *s3; local
45 s2 = s1; s3 = s1+4;
46 if (strncmp (++s2, ++s3, 0) != 0 || s2 != s1+1 || s3 != s1+5)
48 s2 = s1;
49 if (strncmp (++s2, "", 1) <= 0 || s2 != s1+1)
51 if (strncmp ("", ++s2, 1) >= 0 || s2 != s1+2)
53 if (strncmp (++s2, "", 10
235 strncmp(const char *s1, const char *s2, size_t n) argument
[all...]
H A D20011121-1.c13 struct s s2; local
14 s2.b[0] = 100;
15 __builtin_memcpy(&s2, &s1, ((unsigned int) &((struct s *)0)->b));
16 if (s2.b[0] != 100)
H A Dstdio-opt-2.c14 const char *const s2[] = { s1, 0 }, *const*s3; local
17 printf ("%s\n", *s2);
18 s3 = s2;
20 if (s3 != s2+1 || *s3 != 0)
24 printf ("%c", **s2);
25 s3 = s2;
27 if (s3 != s2+1 || *s3 != 0)
H A D921218-2.c6 short s2; local
8 ul = us = l2 = s2 = -1;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D960221-1.c3 struct s2 { struct
8 foo (struct s2 *ptr)
10 *ptr = (struct s2) {{}, 0};
/openbsd-current/lib/libc/string/
H A Dstrcmp.c41 strcmp(const char *s1, const char *s2) argument
43 while (*s1 == *s2++)
46 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
H A Dstrcoll.c40 strcoll(const char *s1, const char *s2) argument
43 return (strcmp(s1, s2));
H A Dstrncmp.c35 strncmp(const char *s1, const char *s2, size_t n) argument
41 if (*s1 != *s2++)
42 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
H A Dwcscmp.c43 wcscmp(const wchar_t *s1, const wchar_t *s2) argument
46 while (*s1 == *s2++)
50 return (*(const rune_t *)s1 - *(const rune_t *)--s2);
H A Dwcsncmp.c37 wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n) argument
43 if (*s1 != *s2++) {
46 *(const rune_t *)--s2);
/openbsd-current/sys/lib/libkern/
H A Dstrcmp.c41 strcmp(const char *s1, const char *s2) argument
43 while (*s1 == *s2++)
46 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
H A Dstrncmp.c35 strncmp(const char *s1, const char *s2, size_t n) argument
41 if (*s1 != *s2++)
42 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dclosure_test.pl7 $closure_test::s2 = sub {
/openbsd-current/gnu/lib/libiberty/src/
H A Dmemcmp.c25 register const unsigned char *s2 = (const unsigned char*)str2; local
29 if (*s1++ != *s2++)
30 return s1[-1] < s2[-1] ? -1 : 1;
H A Dbcmp.c23 bcmp (const void *s1, const void *s2, size_t count) argument
25 return memcmp (s1, s2, count);
/openbsd-current/gnu/gcc/gcc/config/
H A Dmemcmp.c8 const unsigned char *s2 = str2; local
12 if (*s1++ != *s2++)
13 return s1[-1] < s2[-1] ? -1 : 1;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/abi/
H A Dempty8.C9 S2 s2; variable
12 if ((char *)(E2*) &s2 != (char *)&s2)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Doverload6.C15 S2 s2; local
16 if (s2.f() != 0)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dcrash41.C9 void f(S2 s2) { argument
10 S1<s2.i> s1;
/openbsd-current/lib/libc/locale/
H A Dwcscoll.c37 wcscoll(const wchar_t *s1, const wchar_t *s2) argument
40 return (wcscmp(s1, s2));
H A Dwcscoll_l.c13 wcscoll_l(const wchar_t *s1, const wchar_t *s2, argument
16 return wcscmp(s1, s2);

Completed in 175 milliseconds

1234567891011>>