Searched refs:s2 (Results 126 - 150 of 560) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dc99-complit-1.c20 const struct s *s2 = &(const struct s) { 1, 2 }; variable in typeref:struct:s
44 if (s0 == s1 || s1 == s2 || s2 == s0)
47 || s2->a != 1 || s2->b != 2)
52 || s2->a != 1 || s2->b != 2)
H A Dpragma-darwin.c22 struct s2 { short f1; int f2; }; struct
42 if (sizeof (struct s2) != 8)
H A Dc99-complit-2.c64 struct s s2 = (struct s) { 0, 1 }; local
/openbsd-current/usr.bin/spell/
H A Dlook.c157 compare(u_char *s1, u_char *s2, u_char *back) argument
162 for (;; ++s1, ++s2) {
163 if (*s2 == '\n' || s2 == back)
166 ch = tolower(*s2);
/openbsd-current/regress/usr.bin/ssh/unittests/sshbuf/
H A Dtest_sshbuf_getput_basic.c33 char *s2; local
344 r = sshbuf_get_cstring(p1, &s2, &s);
356 r = sshbuf_get_cstring(p1, &s2, NULL);
367 ASSERT_INT_EQ(sshbuf_get_cstring(p1, &s2, &s), 0);
369 ASSERT_MEM_EQ(s2, x, s);
370 free(s2);
549 s2 = sshbuf_dtob16(p1);
550 ASSERT_PTR_NE(s2, NULL);
551 ASSERT_STRING_EQ(s2, "a1b2c3d4e5f607180000");
552 free(s2);
[all...]
/openbsd-current/usr.bin/systat/
H A Dpool.c50 int sort_name_callback(const void *s1, const void *s2);
51 int sort_req_callback(const void *s1, const void *s2);
52 int sort_psize_callback(const void *s1, const void *s2);
53 int sort_npage_callback(const void *s1, const void *s2);
218 sort_name_callback(const void *s1, const void *s2) argument
222 p2 = (struct pool_info *)s2;
228 sort_req_callback(const void *s1, const void *s2) argument
232 p2 = (struct pool_info *)s2;
239 return sort_name_callback(s1, s2);
243 sort_npage_callback(const void *s1, const void *s2) argument
258 sort_psize_callback(const void *s1, const void *s2) argument
583 pool_cache_sort_name_callback(const void *s1, const void *s2) argument
593 pool_cache_sort_len_callback(const void *s1, const void *s2) argument
608 pool_cache_sort_idle_callback(const void *s1, const void *s2) argument
623 pool_cache_sort_ngc_callback(const void *s1, const void *s2) argument
638 pool_cache_sort_req_callback(const void *s1, const void *s2) argument
670 pool_cache_sort_put_callback(const void *s1, const void *s2) argument
702 pool_cache_sort_lreq_callback(const void *s1, const void *s2) argument
734 pool_cache_sort_lput_callback(const void *s1, const void *s2) argument
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D920625-1.c19 unsigned int s2:8; member in struct:__anon6855
37 int s2,
62 insn.s2 = s2;
75 insn.s2 = s2;
91 int s1, s2; local
105 for (s2 = s1 - 1; s2 >= 0; s2
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/g++.dg/debug/
H A Ddebug1.C12 inline S operator+ (const char *s1, const S &s2) argument
15 x += s2;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Doperators8.C47 shape* s2 = new triangle(6,6,2,3); local
48 *s1 = *s2;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dspec13.C41 S2<double> s2; local
42 s2.f(ip);
H A Dmemtemp17.C23 S<int> s2('a', s1, 'a');
H A Dunion1.C16 St2<int> s2; local
/openbsd-current/gnu/usr.bin/texinfo/lib/
H A Dstrcasecmp.c43 STRXCASECMP_FUNCTION (const char *s1, const char *s2 STRXCASECMP_DECLARE_N)
46 register const unsigned char *p2 = (const unsigned char *) s2;
/openbsd-current/libexec/ld.so/alpha/
H A Dldasm.S69 br s2, L2 /* get our PC */
72 subq s2, s3, s2
74 addq s2, t5, s6
80 mov s2, s1 /* relocation displacement */
89 lda s2, 0(sp)
90 mov s2, a1
100 mov s2, a3 /* dl_data */
/openbsd-current/regress/lib/libc/fmemopen/
H A Dfmemopentest.c28 FILE *s1, *s2; local
40 s2 = fmemopen(buf, 22, "w+");
41 if (s2 == NULL) {
42 warn("unable to create a stream s2");
48 fputc(c, s2);
50 if (ftell(s2) != strlen(string) + 1) {
56 fseek(s2, 0, SEEK_SET);
57 if (ftell(s2) != 0) {
62 len = fread(buffer, 1, sizeof(buffer) - 1, s2);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Ddecl6.C20 mutable const int *s2; // ok member in struct:A
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dstring-opt-1.c41 strstr(const char *s1, const char *s2) argument
H A D20031201-1.c7 typedef struct { unsigned int e0 : 16; unsigned int e1 : 16; } s2; typedef in typeref:struct:__anon6977
8 typedef struct { s1 i12; s2 i16; } io;
24 s2 x1 = {0};
/openbsd-current/sys/arch/mips64/include/
H A Dregdef.h62 #define s2 $18 macro
/openbsd-current/lib/libm/src/
H A Ds_atanl.c44 long double w,s1,s2,z; local
95 s2 = w*T_odd(w);
96 if (id<0) return x - x*(s1+s2);
98 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
H A Ds_atan.c73 double w,s1,s2,z; local
112 s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9]))));
113 if (id<0) return x - x*(s1+s2);
115 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
H A Ds_atanf.c54 float w,s1,s2,z; local
90 s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9]))));
91 if (id<0) return x - x*(s1+s2);
93 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flag_parser.cpp52 char *s2 = (char*)Alloc.Allocate(len + 1); local
53 internal_memcpy(s2, s, len);
54 s2[len] = 0;
55 return s2;
/openbsd-current/lib/libcrypto/aes/asm/
H A Daes-armv4.pl40 $s2="r2";
188 ldrb $s2,[$rounds,#11]
194 orr $s2,$s2,$t1,lsl#8
196 orr $s2,$s2,$t2,lsl#16
198 orr $s2,$s2,$t3,lsl#24
207 ldr $s2,[$rounds,#8]
212 rev $s2,
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/
H A Dnrv5.C12 bool s1 : 1, s2 : 1, s3 : 1, s4 : 1, s5 : 1, s6 : 1; member in struct:S
17 S::S() : s1 (true), s2 (false), s0 (E1), s3 (true), s4 (false),
47 if (! s.s1 || s.s2 || ! s.s3 || s.s4 || ! s.s5 || s.s6)

Completed in 364 milliseconds

1234567891011>>