Searched refs:s1 (Results 76 - 100 of 625) sorted by relevance

1234567891011>>

/openbsd-current/sys/lib/libkern/
H A Dmemmove.c41 memmove(void *s1, const void *s2, size_t n) argument
44 char *t = s1;
54 return s1;
H A Dmemcmp.c43 memcmp(const void *s1, const void *s2, size_t n) argument
46 const unsigned char *p1 = s1, *p2 = s2;
H A Dstrncasecmp.c36 strncasecmp(const char *s1, const char *s2, size_t n) argument
42 unsigned char c1 = (unsigned char) *s1++;
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/25_algorithms/
H A Dheap.cc60 // sort array s1 using push_heap/pop_heap
61 int s1[N]; local
62 std::copy(A, A + N, s1);
63 VERIFY(std::equal(s1, s1 + N, A));
66 std::push_heap(s1, s1 + i);
69 std::pop_heap(s1, s1 + i);
71 VERIFY(std::equal(s1, s
92 int s1[N]; local
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dcall-strs.c10 char * str_func1(char *s1) argument
12 char * str_func1(s1)
13 char *s1;
16 printf("first string arg is: %s\n", s1);
17 strcpy(bigbuf, s1);
23 char * s1,
31 char * str_func(s1,
38 char * s1;
47 printf("first string arg is: %s\n", s1);
54 strcpy(bigbuf, s1);
22 str_func( char * s1, char * s2, char * s3, char * s4, char * s5, char * s6, char * s7) argument
[all...]
/openbsd-current/lib/libc/string/
H A Dwcsncat.c35 wcsncat(wchar_t *s1, const wchar_t *s2, size_t n) argument
41 p = s1;
51 return s1;
H A Dwcscasecmp.c33 wcscasecmp(const wchar_t *s1, const wchar_t *s2) argument
37 while ((l1 = towlower(*s1++)) == (l2 = towlower(*s2++))) {
47 wcsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n) argument
54 if (((l1 = towlower(*s1++))) != (l2 = towlower(*s2++))) {
H A Dwcscasecmp_l.c33 wcscasecmp_l(const wchar_t *s1, const wchar_t *s2, locale_t locale) argument
37 while ((l1 = towlower_l(*s1++, locale)) ==
47 wcsncasecmp_l(const wchar_t *s1, const wchar_t *s2, size_t n, locale_t locale) argument
54 if (((l1 = towlower_l(*s1++, locale))) !=
/openbsd-current/usr.bin/make/
H A Dstr.h33 /* copy = Str_concati(s1, e1, s2, e2, sep);
34 * Concatenate strings s1/e1 and s2/e2, wedging separator sep if != 0. */
36 #define Str_concat(s1, s2, sep) Str_concati(s1, strchr(s1, '\0'), s2, strchr(s2, '\0'), sep)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Delab1.C3 S s1; variable
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dcrash41.C10 S1<s2.i> s1; local
H A Dcrash52.C22 S1<int> s1; local
23 s1.f(3.0);
H A Dmemtemp7.C20 S s1(3, "abc", 3);
21 S s2('a', s1, 'a');
/openbsd-current/usr.bin/xargs/
H A Dstrnsubst.c33 char *s1, *s2, *this; local
37 if ((s1 = *str) == NULL)
45 if (match == NULL || *match == '\0' || strlen(s1) >= maxsize) {
46 strlcpy(s2, s1, maxsize);
54 if ((this = strstr(s1, match)) == NULL)
57 (int)(this - s1), s1, replstr);
61 s1 = this + matchlen;
63 strlcpy(s2 + s2len, s1, maxsize - s2len);
/openbsd-current/regress/lib/libc/regex/
H A Dt_exhaust.c74 char *d, *s1, *s2; local
75 s1 = mkstr("\\(", len);
76 s2 = concat(s1, ")");
77 free(s1);
86 char *d, *s1, *s2, *s3; local
87 s1 = mkstr("\\(", 60);
89 s3 = concat(s1, s2);
91 free(s1);
92 s1 = concat(s3, ")");
94 d = concat("(", s1);
102 char *d, *s1, *s2, *s3; local
140 char *d, *s1, *s2; local
[all...]
/openbsd-current/gnu/lib/libiberty/src/
H A Dstrncasecmp.c15 @deftypefn Supplemental int strncasecmp (const char *@var{s1}, const char *@var{s2})
71 strncasecmp(const char *s1, const char *s2, register size_t n) argument
76 u1 = (unsigned char) *s1++;
H A Dstrncmp.c6 @deftypefn Supplemental int strncmp (const char *@var{s1}, const char *@var{s2}, size_t @var{n})
19 strncmp(const char *s1, const char *s2, register size_t n) argument
25 u1 = (unsigned char) *s1++;
H A Dstrstr.c30 strstr (const char *s1, const char *s2) argument
32 const char *p = s1;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900107_01.C11 struct s1 { int s1_member1; }; struct
22 struct s1 { // gets bogus error struct
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D930713-1.c7 f (s1)
8 T s1;
H A Dstdio-opt-1.c18 const char *const s1 = "hello world"; local
23 fputs (s1, *s_ptr);
24 fputs (s1+5, *s_ptr);
25 fputs (s1+10, *s_ptr);
26 fputs (s1+11, *s_ptr);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dc99-tag-1.c13 struct s1 *x0;
58 struct s1;
72 union s1 { int i; }; /* { dg-bogus "warning" "warning in place of error" } */ union
92 struct s1;
105 union s1;
116 int x1[sizeof (union s1 *)]; /* { dg-bogus "warning" "warning in place of error" } */
141 union s1;
142 struct s1 *x1; /* { dg-bogus "warning" "warning in place of error" } */
/openbsd-current/usr.bin/patch/
H A Dcommon.h49 #define strNE(s1,s2) (strcmp(s1, s2))
50 #define strEQ(s1,s2) (!strcmp(s1, s2))
51 #define strnNE(s1,s2,l) (strncmp(s1, s2, l))
52 #define strnEQ(s1,s2,l) (!strncmp(s1, s2, l))
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D920625-1.c18 unsigned int s1:8; member in struct:__anon6855
36 int s1,
61 insn.s1 = s1;
74 insn.s1 = s1;
91 int s1, s2; local
102 for (s1 = n_values - 1; s1 >= 0; s1
34 recurse(opcode_t opcode, int d, int s1, int s2, word v, int cost, insn_t *sequence, int n_insns, word *values, int n_values, const word goal_value, int allowed_cost, int cy, int prune_flags) argument
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/execute/
H A D980701-0.f12 real s1(2), s2(2), s3(2) local in subroutine:subr
15 equivalence (r1, s1(2))
22 s1(1) = 1.
41 call x (s1, r1, d1, i1, s2, r2, d2, i2, s3, r3, d3, i3)
45 subroutine x (s1, r1, d1, i1, s2, r2, d2, i2, s3, r3, d3, i3)
49 real s1(2), s2(2), s3(2) local in subroutine:x
53 if (s1(1) .ne. 1.) call abort

Completed in 219 milliseconds

1234567891011>>