Home
last modified time | relevance | path

Searched refs:s (Results 1 – 25 of 414) sorted by relevance

12345678910>>...17

/sysdeps/ieee754/ldbl-96/
A Ds_erfl.c296 + s * (pa[3] + s * (pa[4] + s * (pa[5] + s * (pa[6] + s * pa[7])))))); in __erfl()
298 + s * (qa[3] + s * (qa[4] + s * (qa[5] + s * (qa[6] + s)))))); in __erfl()
316 s * (ra[5] + s * (ra[6] + s * (ra[7] + s * ra[8]))))))); in __erfl()
318 s * (sa[5] + s * (sa[6] + s * (sa[7] + s * (sa[8] + s)))))))); in __erfl()
382 + s * (pa[3] + s * (pa[4] + s * (pa[5] + s * (pa[6] + s * pa[7])))))); in libm_alias_ldouble()
384 + s * (qa[3] + s * (qa[4] + s * (qa[5] + s * (qa[6] + s)))))); in libm_alias_ldouble()
402 R = ra[0] + s * (ra[1] + s * (ra[2] + s * (ra[3] + s * (ra[4] + in libm_alias_ldouble()
404 S = sa[0] + s * (sa[1] + s * (sa[2] + s * (sa[3] + s * (sa[4] + in libm_alias_ldouble()
405 s * (sa[5] + s * (sa[6] + s * (sa[7] + s * (sa[8] + s)))))))); in libm_alias_ldouble()
409 R = rb[0] + s * (rb[1] + s * (rb[2] + s * (rb[3] + s * (rb[4] + in libm_alias_ldouble()
[all …]
/sysdeps/pthread/
A Dtst-tls4moda.c27 size_t s; in test1() local
29 for (s = 0; s < sizeof (foo); ++s) in test1()
31 if (foo [s]) in test1()
33 foo [s] = s; in test1()
40 size_t s; in test2() local
42 for (s = 0; s < sizeof (foo); ++s) in test2()
44 if (foo [s] != s) in test2()
46 foo [s] = sizeof (foo) - s; in test2()
A Dtst-tls4modb.c31 size_t s; in test1() local
38 for (s = 0; s < sizeof (foo) / sizeof (void *); ++s) in test1()
40 if (foo [s]) in test1()
42 foo [s] = &foo[s]; in test1()
49 size_t s; in test2() local
51 for (s = 0; s < sizeof (foo) / sizeof (void *); ++s) in test2()
53 if (foo [s] != &foo [s]) in test2()
55 foo [s] = &foo [s ^ 1]; in test2()
A Dtst-attr1.c77 int s; in do_test() local
84 if (s != PTHREAD_CREATE_JOINABLE) in do_test()
107 int s; in do_test() local
114 if (s != PTHREAD_INHERIT_SCHED) in do_test()
137 int s; in do_test() local
144 if (s != SCHED_OTHER) in do_test()
167 int s; in do_test() local
174 if (s != PTHREAD_SCOPE_SYSTEM) in do_test()
197 int s; in do_test() local
254 int s; in do_test() local
[all …]
A Dtst-sem1.c27 sem_t s; in do_test() local
29 if (sem_init (&s, 0, 1) == -1) in do_test()
35 if (TEMP_FAILURE_RETRY (sem_wait (&s)) == -1) in do_test()
41 if (sem_post (&s) == -1) in do_test()
47 if (TEMP_FAILURE_RETRY (sem_trywait (&s)) == -1) in do_test()
54 if (TEMP_FAILURE_RETRY (sem_trywait (&s)) != -1) in do_test()
65 if (sem_post (&s) == -1) in do_test()
71 if (TEMP_FAILURE_RETRY (sem_wait (&s)) == -1) in do_test()
77 if (sem_destroy (&s) == -1) in do_test()
A Dtst-sem4.c36 sem_t *s; in do_test() local
47 s = sem_open ("/glibc-tst-sem4", O_CREAT, 0600, 1); in do_test()
48 if (s == SEM_FAILED) in do_test()
82 if (sem_getvalue (s, &val) == -1) in do_test()
93 if (TEMP_FAILURE_RETRY (sem_wait (s)) == -1) in do_test()
111 if (sem_getvalue (s, &val) == -1) in do_test()
122 if (sem_post (s) == -1) in do_test()
130 if (TEMP_FAILURE_RETRY (sem_wait (s)) == -1) in do_test()
136 if (sem_getvalue (s, &val) == -1) in do_test()
A Dtst-spin1.c25 pthread_spinlock_t s; in do_test() local
27 if (pthread_spin_init (&s, PTHREAD_PROCESS_PRIVATE) != 0) in do_test()
33 if (pthread_spin_lock (&s) != 0) in do_test()
39 if (pthread_spin_unlock (&s) != 0) in do_test()
45 if (pthread_spin_destroy (&s) != 0) in do_test()
A Dtst-spin2.c37 pthread_spinlock_t *s; in do_test() local
69 s = (pthread_spinlock_t *) (((uintptr_t) mem in do_test()
72 p = (char *) (s + 1); in do_test()
74 if (pthread_spin_init (s, PTHREAD_PROCESS_SHARED) != 0) in do_test()
80 if (pthread_spin_lock (s) != 0) in do_test()
86 err = pthread_spin_trylock (s); in do_test()
98 err = pthread_spin_unlock (s); in do_test()
105 err = pthread_spin_trylock (s); in do_test()
130 if (pthread_spin_unlock (s) != 0) in do_test()
140 if (pthread_spin_lock (s) != 0) in do_test()
A Dtst-rwlock16.c44 int s; in writer() local
58 sem_getvalue (&stop, &s); in writer()
60 while (s == 0); in writer()
67 int s; in reader_producer() local
77 sem_getvalue (&stop, &s); in reader_producer()
80 if (s != 0) in reader_producer()
91 while (s == 0); in reader_producer()
99 int s; in reader_consumer() local
110 s = consumer_stop; in reader_consumer()
111 if (s == 0) in reader_consumer()
[all …]
/sysdeps/ieee754/flt-32/
A Ds_erff.c132 P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6))))); in __erff()
133 Q = one+s*(qa1+s*(qa2+s*(qa3+s*(qa4+s*(qa5+s*qa6))))); in __erff()
142 R=ra0+s*(ra1+s*(ra2+s*(ra3+s*(ra4+s*( in __erff()
144 S=one+s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*( in __erff()
147 R=rb0+s*(rb1+s*(rb2+s*(rb3+s*(rb4+s*( in __erff()
149 S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*( in __erff()
190 P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6))))); in libm_alias_float()
191 Q = one+s*(qa1+s*(qa2+s*(qa3+s*(qa4+s*(qa5+s*qa6))))); in libm_alias_float()
202 R=ra0+s*(ra1+s*(ra2+s*(ra3+s*(ra4+s*( in libm_alias_float()
204 S=one+s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*( in libm_alias_float()
[all …]
/sysdeps/unix/sysv/linux/sh/sh4/
A Dswapcontext.S77 fmov.s fr9, @-r0
78 fmov.s fr8, @-r0
79 fmov.s fr7, @-r0
80 fmov.s fr6, @-r0
81 fmov.s fr5, @-r0
82 fmov.s fr4, @-r0
83 fmov.s fr3, @-r0
84 fmov.s fr2, @-r0
85 fmov.s fr1, @-r0
86 fmov.s fr0, @-r0
[all …]
A Dgetcontext.S77 fmov.s fr9, @-r0
78 fmov.s fr8, @-r0
79 fmov.s fr7, @-r0
80 fmov.s fr6, @-r0
81 fmov.s fr5, @-r0
82 fmov.s fr4, @-r0
83 fmov.s fr3, @-r0
84 fmov.s fr2, @-r0
85 fmov.s fr1, @-r0
86 fmov.s fr0, @-r0
[all …]
A Dsetcontext.S55 fmov.s @r0+, fr0
56 fmov.s @r0+, fr1
57 fmov.s @r0+, fr2
58 fmov.s @r0+, fr3
59 fmov.s @r0+, fr4
60 fmov.s @r0+, fr5
61 fmov.s @r0+, fr6
62 fmov.s @r0+, fr7
63 fmov.s @r0+, fr8
64 fmov.s @r0+, fr9
[all …]
/sysdeps/ieee754/dbl-64/
A Ds_erf.c233 y = r / s; in __erf()
239 s = fabs (x) - one; in __erf()
240 P1 = pa[0] + s * pa[1]; s2 = s * s; in __erf()
263 s = one / (x * x); in __erf()
267 R1 = ra[0] + s * ra[1]; s2 = s * s; in __erf()
281 R1 = rb[0] + s * rb[1]; s2 = s * s; in __erf()
330 y = r / s; in libm_alias_double()
346 P1 = pa[0] + s * pa[1]; s2 = s * s; in libm_alias_double()
368 s = one / (x * x); in libm_alias_double()
372 R1 = ra[0] + s * ra[1]; s2 = s * s; in libm_alias_double()
[all …]
A Dbranred.c75 sum+=s; in __branred()
83 sum+=s; in __branred()
84 t-=s; in __branred()
88 sum-=s; in __branred()
105 sum+=s; in __branred()
113 sum+=s; in __branred()
114 t-=s; in __branred()
118 sum-=s; in __branred()
135 t2=s-t1; in __branred()
138 s=b+bb; in __branred()
[all …]
A Ddla.h105 #define ADD2(x, xx, y, yy, z, zz, r, s) \ argument
106 r = (x) + (y); s = (fabs (x) > fabs (y)) ? \
109 z = r + s; zz = (r - z) + s;
118 #define SUB2(x, xx, y, yy, z, zz, r, s) \ argument
122 z = r + s; zz = (r - z) + s;
159 z = r + s; zz = (r - z) + s; } \
161 ss = (fabs (xx) > fabs (yy)) ? (((xx) - s) + (yy)) : (((yy) - s) + (xx));\
163 uu = (fabs (r) > fabs (s)) ? ((r - u) + s) : ((s - u) + r); \
180 z = r + s; zz = (r - z) + s; } \
182 ss = (fabs (xx) > fabs (yy)) ? (((xx) - s) - (yy)) : ((xx) - ((yy) + s)); \
[all …]
/sysdeps/posix/
A Dcuserid.c28 cuserid (char *s) in cuserid() argument
38 if (s != NULL) in cuserid()
39 s[0] = '\0'; in cuserid()
40 return s; in cuserid()
43 if (s == NULL) in cuserid()
44 s = name; in cuserid()
45 s[L_cuserid - 1] = '\0'; in cuserid()
46 return strncpy (s, pwptr->pw_name, L_cuserid - 1); in cuserid()
/sysdeps/hppa/fpu/
A Dfedisblxcpt.c24 union { unsigned long long l; unsigned int sw[2]; } s; in fedisableexcept() local
28 __asm__ ("fstd %%fr0,0(%1)" : "=m" (s.l) : "r" (&s.l) : "%r0"); in fedisableexcept()
30 old_exc = s.sw[0] & FE_ALL_EXCEPT; in fedisableexcept()
32 s.sw[0] &= ~(excepts & FE_ALL_EXCEPT); in fedisableexcept()
33 __asm__ ("fldd 0(%0),%%fr0" : : "r" (&s.l), "m" (s.l) : "%r0"); in fedisableexcept()
A Dfeenablxcpt.c24 union { unsigned long long l; unsigned int sw[2]; } s; in feenableexcept() local
28 __asm__ ("fstd %%fr0,0(%1)" : "=m" (s.l) : "r" (&s.l) : "%r0"); in feenableexcept()
30 old_exc = s.sw[0] & FE_ALL_EXCEPT; in feenableexcept()
32 s.sw[0] |= (excepts & FE_ALL_EXCEPT); in feenableexcept()
33 __asm__ ("fldd 0(%0),%%fr0" : : "r" (&s.l), "m" (s.l) : "%r0"); in feenableexcept()
A Dfesetround.c24 union { unsigned long long l; unsigned int sw[2]; } s; in __fesetround() local
31 __asm__ ("fstd %%fr0,0(%1)" : "=m" (s.l) : "r" (&s.l) : "%r0"); in __fesetround()
32 s.sw[0] &= ~FE_DOWNWARD; in __fesetround()
33 s.sw[0] |= round & FE_DOWNWARD; in __fesetround()
34 __asm__ ("fldd 0(%0),%%fr0" : : "r" (&s.l), "m" (s.l) : "%r0"); in __fesetround()
A Dfclrexcpt.c24 union { unsigned long long l; unsigned int sw[2]; } s; in feclearexcept() local
27 __asm__ ("fstd %%fr0,0(%1)" : "=m" (s.l) : "r" (&s.l) : "%r0"); in feclearexcept()
29 s.sw[0] &= ~((excepts & FE_ALL_EXCEPT) << 27); in feclearexcept()
30 __asm__ ("fldd 0(%0),%%fr0" : : "r" (&s.l), "m" (s.l) : "%r0"); in feclearexcept()
A Dfegetexcept.c24 union { unsigned long long l; unsigned int sw[2]; } s; in fegetexcept() local
29 : "=m" (s.l) : "r" (&s.l) : "%r0"); in fegetexcept()
31 return (s.sw[0] & FE_ALL_EXCEPT); in fegetexcept()
/sysdeps/ieee754/ldbl-128ibm/
A Dtst-strtold-ldbl-128ibm.c26 test_strtold_value (const char *s, double exp_hi, double exp_lo, int exp_exc, in test_strtold_value() argument
33 x.ld = strtold (s, NULL); in test_strtold_value()
37 s, x.d[0], x.d[1], exc, new_errno); in test_strtold_value()
39 printf ("PASS: strtold (\"%s\") high == %a\n", s, exp_hi); in test_strtold_value()
42 printf ("FAIL: strtold (\"%s\") high == %a\n", s, exp_hi); in test_strtold_value()
46 printf ("PASS: strtold (\"%s\") low == %a\n", s, exp_lo); in test_strtold_value()
49 printf ("FAIL: strtold (\"%s\") low == %a\n", s, exp_lo); in test_strtold_value()
53 printf ("PASS: strtold (\"%s\") exceptions 0x%x\n", s, exp_exc); in test_strtold_value()
56 printf ("FAIL: strtold (\"%s\") exceptions 0x%x\n", s, exp_exc); in test_strtold_value()
60 printf ("PASS: strtold (\"%s\") errno %d\n", s, exp_errno); in test_strtold_value()
[all …]
/sysdeps/mach/hurd/
A Dsigaltstack.c27 struct hurd_sigstate *s; in __sigaltstack() local
36 s = _hurd_self_sigstate (); in __sigaltstack()
37 __spin_lock (&s->lock); in __sigaltstack()
41 && (s->sigaltstack.ss_flags & SS_ONSTACK)) in __sigaltstack()
44 __spin_unlock (&s->lock); in __sigaltstack()
49 old = s->sigaltstack; in __sigaltstack()
52 s->sigaltstack = ss; in __sigaltstack()
54 __spin_unlock (&s->lock); in __sigaltstack()
/sysdeps/ia64/fpu/
A Dgen_import_file_list36 import $f$t $f$t.s e_$f$t.S
42 import $f$t $f$t.s e_$f$t.S
45 import "atan" atan.s s_atan.S
46 import "atanf" atanf.s s_atanf.S
47 import "atan(2)?l" atanl.s s_atanl.S
48 import "exp(m1)?l" expl_m1.s s_expm1l.S
51 import "log(10)?$t" log$t.s e_log$t.S
60 import $f$t $f$t.s s_$f$t.S
75 import expm1 exp_m1.s s_expm1.S
76 import expm1f expf_m1.s s_expm1f.S
[all …]

Completed in 32 milliseconds

12345678910>>...17