Lines Matching refs:__x

81 __m81_defun (float_type, m(__floor), (float_type __x),			  \
91 __asm __volatile__ ("fint%.x %1, %0" : "=f" (__result) : "f" (__x)); \
98 __m81_defun (float_type, m(__ceil), (float_type __x), \
108 __asm __volatile__ ("fint%.x %1, %0" : "=f" (__result) : "f" (__x)); \
147 (float_type __x, int __n),) \
151 : "dmi" (__n), "0" (__x)); \
177 (float_type __x, long int __n),) \
179 return m(__scalbn) (__x, __n); \
182 __m81_defun (float_type, m(__nearbyint), (float_type __x),) \
190 __asm __volatile__ ("fint%.x %1, %0" : "=f" (__result) : "f" (__x)); \
196 __m81_defun (long int, m(__lrint), (float_type __x),) \
199 __asm __volatile__ ("fmove%.l %1, %0" : "=dm" (__result) : "f" (__x)); \
211 (float_type __x, float_type *__sinx, float_type *__cosx)) \
214 : "=f" (*__sinx), "=f" (*__cosx) : "f" (__x)); \
258 __m81_defun (double, __ieee754_remainder, (double __x, double __y),)
261 __asm ("frem%.x %1, %0" : "=f" (__result) : "f" (__y), "0" (__x));
265 __m81_defun (float, __ieee754_remainderf, (float __x, float __y),)
268 __asm ("frem%.x %1, %0" : "=f" (__result) : "f" (__y), "0" (__x));
273 __ieee754_remainderl, (long double __x, long double __y),)
276 __asm ("frem%.x %1, %0" : "=f" (__result) : "f" (__y), "0" (__x));
280 __m81_defun (double, __ieee754_fmod, (double __x, double __y),)
283 __asm ("fmod%.x %1, %0" : "=f" (__result) : "f" (__y), "0" (__x));
287 __m81_defun (float, __ieee754_fmodf, (float __x, float __y),)
290 __asm ("fmod%.x %1, %0" : "=f" (__result) : "f" (__y), "0" (__x));
295 __ieee754_fmodl, (long double __x, long double __y),)
298 __asm ("fmod%.x %1, %0" : "=f" (__result) : "f" (__y), "0" (__x));