Searched refs:s1 (Results 51 - 75 of 625) sorted by relevance

1234567891011>>

/openbsd-current/sys/lib/libsa/
H A Dmemcmp.c41 memcmp(const void *s1, const void *s2, size_t n) argument
44 const unsigned char *p1 = s1, *p2 = s2;
H A Dmemmove.c41 memmove(void *s1, const void *s2, size_t n) argument
44 char *t = s1;
54 return s1;
/openbsd-current/usr.bin/telnet/
H A Dgenget.c38 * The prefix function returns 0 if *s1 is not a prefix
39 * of *s2. If *s1 exactly matches *s2, the negative of
40 * the length is returned. If *s1 is a prefix of *s2,
41 * the length of *s1 is returned.
44 isprefix(char *s1, char *s2) argument
49 if (*s1 == '\0')
51 os1 = s1;
52 c1 = *s1;
57 c1 = *++s1;
60 return(*s1
[all...]
/openbsd-current/gnu/gcc/libssp/
H A Dstrcat-chk.c48 char *s1 = dest; local
56 c = *s1++;
61 s1 -= 2;
68 *++s1 = c;
/openbsd-current/gnu/lib/libiberty/include/
H A Dfilenames.h41 #define FILENAME_CMP(s1, s2) strcasecmp(s1, s2)
47 #define FILENAME_CMP(s1, s2) strcmp(s1, s2)
/openbsd-current/gnu/gcc/include/
H A Dfilenames.h41 #define FILENAME_CMP(s1, s2) strcasecmp(s1, s2)
47 #define FILENAME_CMP(s1, s2) strcmp(s1, s2)
/openbsd-current/gnu/usr.bin/binutils/include/
H A Dfilenames.h41 #define FILENAME_CMP(s1, s2) strcasecmp(s1, s2)
47 #define FILENAME_CMP(s1, s2) strcmp(s1, s2)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dinit13.C14 // T s1[2][2] = {1,2,3,4};
17 T s1[2][2] = {1,2,3,4}; local
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Ddelete8.C10 S* s1; variable
27 s1 = 0;
32 s1 = s2;
35 delete s1;
H A Dgoto1.C13 S s1; // ERROR - skips initialization local
H A Dgoto2.C14 S s1; local
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dc99-flex-array-1.c5 struct s1 { int x[]; }; /* { dg-error "empty struct" "empty" } */ struct
/openbsd-current/gnu/usr.bin/binutils-2.17/include/
H A Dfilenames.h41 #define FILENAME_CMP(s1, s2) strcasecmp(s1, s2)
47 #define FILENAME_CMP(s1, s2) strcmp(s1, s2)
/openbsd-current/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerInterceptors.cpp62 static int internal_strcmp_strncmp(const char *s1, const char *s2, bool strncmp, argument
71 unsigned c1 = *s1;
77 s1++;
83 static int internal_strncmp(const char *s1, const char *s2, size_t n) { argument
84 return internal_strcmp_strncmp(s1, s2, true, n);
87 static int internal_strcmp(const char *s1, const char *s2) { argument
88 return internal_strcmp_strncmp(s1, s2, false, 0);
91 static int internal_memcmp(const void *s1, const void *s2, size_t n) { argument
92 const uint8_t *t1 = static_cast<const uint8_t *>(s1);
124 void __sanitizer_weak_hook_memcmp(void *called_pc, const void *s1,
151 bcmp(const char *s1, const char *s2, size_t n) argument
155 __sanitizer_weak_hook_memcmp(GET_CALLER_PC(), s1, s2, n, result); local
159 memcmp(const void *s1, const void *s2, size_t n) argument
163 __sanitizer_weak_hook_memcmp(GET_CALLER_PC(), s1, s2, n, result); local
167 strncmp(const char *s1, const char *s2, size_t n) argument
171 __sanitizer_weak_hook_strncmp(GET_CALLER_PC(), s1, s2, n, result); local
175 strcmp(const char *s1, const char *s2) argument
179 __sanitizer_weak_hook_strcmp(GET_CALLER_PC(), s1, s2, result); local
183 strncasecmp(const char *s1, const char *s2, size_t n) argument
186 __sanitizer_weak_hook_strncasecmp(GET_CALLER_PC(), s1, s2, n, result); local
190 strcasecmp(const char *s1, const char *s2) argument
193 __sanitizer_weak_hook_strcasecmp(GET_CALLER_PC(), s1, s2, result); local
197 strstr(const char *s1, const char *s2) argument
201 __sanitizer_weak_hook_strstr(GET_CALLER_PC(), s1, s2, result); local
205 strcasestr(const char *s1, const char *s2) argument
208 __sanitizer_weak_hook_strcasestr(GET_CALLER_PC(), s1, s2, result); local
213 memmem(const void *s1, size_t len1, const void *s2, size_t len2) argument
216 __sanitizer_weak_hook_memmem(GET_CALLER_PC(), s1, len1, s2, len2, result); local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900121_02.C26 struct s1 { struct
30 void operator= (s1 & arg)
38 s1 u0_member_1; // ERROR -
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Ddeduct2.C12 template< class T, T *G > void boz ( S<T,G> s1);
18 S< C, &c1Gen > s1; local
20 boz (s1);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20000603-1.c1 struct s1 { double d; }; struct
4 double f(struct s1 *a, struct s2 *b)
12 struct s1 a;
H A D931005-1.c7 f (s1)
8 T s1;
11 s1a.x = s1.x;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A Dstructret.c5 } s1, s2; variable in typeref:struct:foo
10 structret (s1, i1, i2, s2)
11 struct foo s1, s2;
17 return s1;
23 s2.c = s1.c;
24 s2.d = s1.d;
35 return structret (s1, a, b, s2);
40 s1.a = 1;
41 s1.b = 2;
42 s1
[all...]
/openbsd-current/lib/libc/string/
H A Dstrcspn.c40 strcspn(const char *s1, const char *s2) argument
49 for (p = s1;;) {
54 return (p - 1 - s1);
H A Dstrspn.c37 strspn(const char *s1, const char *s2) argument
39 const char *p = s1, *spanp;
50 return (p - 1 - s1);
H A Dwcscat.c40 wcscat(wchar_t *s1, const wchar_t *s2) argument
46 p = s1;
54 return s1;
H A Dwcscpy.c40 wcscpy(wchar_t *s1, const wchar_t *s2) argument
45 p = s1;
51 return s1;
H A Dwcsncpy.c35 wcsncpy(wchar_t *s1, const wchar_t *s2, size_t n) argument
39 p = s1;
49 return s1;
/openbsd-current/sys/lib/libkern/
H A Dmemcpy.c41 memcpy(void *s1, const void *s2, size_t n) argument
44 char *t = s1;
48 return s1;

Completed in 381 milliseconds

1234567891011>>