Searched refs:m2 (Results 1 – 9 of 9) sorted by relevance
/sysdeps/ieee754/ldbl-128ibm/ |
A D | test-fmodrem-ldbl-128ibm.c | 38 volatile union u m2 = { .d = { -DBL_MIN, -0.0 } }; variable 67 result |= TEST_FUNC (p1.ld, m2.ld, 0.0L); in do_test() 71 result |= TEST_FUNC (p2.ld, m2.ld, 0.0L); in do_test() 75 result |= TEST_FUNC (m1.ld, m2.ld, -0.0L); in do_test() 76 result |= TEST_FUNC (m2.ld, p1.ld, -0.0L); in do_test() 77 result |= TEST_FUNC (m2.ld, p2.ld, -0.0L); in do_test() 78 result |= TEST_FUNC (m2.ld, m1.ld, -0.0L); in do_test() 79 result |= TEST_FUNC (m2.ld, m2.ld, -0.0L); in do_test()
|
/sysdeps/pthread/ |
A D | tst-robust1.c | 25 static pthread_mutex_t m2; variable 52 e = LOCK (&m2); in tf() 129 if (pthread_mutex_init (&m2, &a) != 0) in do_test() 150 if (pthread_mutex_init (&m2 , &a) != 0) in do_test() 213 e = LOCK (&m2); in do_test() 250 e = pthread_mutex_consistent (&m2); in do_test() 265 e = pthread_mutex_unlock (&m2); in do_test() 292 e = LOCK (&m2); in do_test() 305 if (pthread_mutex_destroy (&m2) != 0) in do_test() 320 if (pthread_mutex_destroy (&m2) != 0) in do_test()
|
A D | tst-eintr2.c | 33 static pthread_mutex_t m2 = PTHREAD_MUTEX_INITIALIZER; variable 57 TEST_COMPARE (pthread_mutex_lock (&m2), 0); in tf2() 58 TEST_COMPARE (pthread_mutex_unlock (&m2), 0); in tf2()
|
A D | tst-cancel1.c | 26 static pthread_mutex_t m2 = PTHREAD_MUTEX_INITIALIZER; variable 67 err = pthread_mutex_unlock (&m2); in tf() 104 err = pthread_mutex_lock (&m2); in do_test() 118 err = pthread_mutex_lock (&m2); in do_test()
|
A D | tst-abstime.c | 27 static pthread_mutex_t m2 = PTHREAD_MUTEX_INITIALIZER; variable 65 xpthread_mutex_lock (&m2); in do_test() 67 TEST_COMPARE (pthread_cond_timedwait (&c, &m2, &t), ETIMEDOUT); in do_test()
|
/sysdeps/ieee754/ldbl-96/ |
A D | s_fma.c | 66 long double m2 = (((x1 * y1 - m1) + x1 * y2) + x2 * y1) + x2 * y2; in __fma() local 76 math_force_eval (m2); in __fma() 81 if (a1 == 0 && m2 == 0) in __fma() 91 a2 = a2 + m2; in __fma()
|
A D | s_fmal.c | 199 long double m2 = (((x1 * y1 - m1) + x1 * y2) + x2 * y1) + x2 * y2; in __fmal() local 209 math_force_eval (m2); in __fmal() 214 if (a1 == 0 && m2 == 0) in __fmal() 224 u.d = a2 + m2; in __fmal()
|
/sysdeps/ieee754/dbl-64/ |
A D | s_fma.c | 207 double m2 = (((x1 * y1 - m1) + x1 * y2) + x2 * y1) + x2 * y2; in __fma() 217 math_force_eval (m2); in __fma() 222 if (a1 == 0 && m2 == 0) in __fma() 233 u.d = a2 + m2; in __fma()
|
/sysdeps/ieee754/ldbl-128/ |
A D | s_fmal.c | 209 _Float128 m2 = (((x1 * y1 - m1) + x1 * y2) + x2 * y1) + x2 * y2; in __fmal() 219 math_force_eval (m2); in __fmal() 224 if (a1 == 0 && m2 == 0) in __fmal() 234 u.d = a2 + m2; in __fmal()
|
Completed in 9 milliseconds