Lines Matching refs:float64

91 typedef double float64;
101 float64 f;
156 float64 int32_to_float64( int STATUS_PARAM);
157 float64 uint32_to_float64( unsigned int STATUS_PARAM);
166 float64 int64_to_float64( int64_t STATUS_PARAM);
167 float64 uint64_to_float64( uint64_t v STATUS_PARAM);
184 float64 float32_to_float64( float32 STATUS_PARAM);
283 int float64_to_int32( float64 STATUS_PARAM );
284 int float64_to_int32_round_to_zero( float64 STATUS_PARAM );
285 unsigned int float64_to_uint32( float64 STATUS_PARAM );
286 unsigned int float64_to_uint32_round_to_zero( float64 STATUS_PARAM );
287 int64_t float64_to_int64( float64 STATUS_PARAM );
288 int64_t float64_to_int64_round_to_zero( float64 STATUS_PARAM );
289 uint64_t float64_to_uint64( float64 STATUS_PARAM );
290 uint64_t float64_to_uint64_round_to_zero( float64 STATUS_PARAM );
291 float32 float64_to_float32( float64 STATUS_PARAM );
293 floatx80 float64_to_floatx80( float64 STATUS_PARAM );
296 float128 float64_to_float128( float64 STATUS_PARAM );
302 float64 float64_round_to_int( float64 STATUS_PARAM );
303 float64 float64_trunc_to_int( float64 STATUS_PARAM );
304 INLINE float64 float64_add( float64 a, float64 b STATUS_PARAM)
308 INLINE float64 float64_sub( float64 a, float64 b STATUS_PARAM)
312 INLINE float64 float64_mul( float64 a, float64 b STATUS_PARAM)
316 INLINE float64 float64_div( float64 a, float64 b STATUS_PARAM)
320 float64 float64_rem( float64, float64 STATUS_PARAM );
321 float64 float64_sqrt( float64 STATUS_PARAM );
322 INLINE int float64_eq( float64 a, float64 b STATUS_PARAM)
326 INLINE int float64_le( float64 a, float64 b STATUS_PARAM)
330 INLINE int float64_lt( float64 a, float64 b STATUS_PARAM)
334 INLINE int float64_eq_signaling( float64 a, float64 b STATUS_PARAM)
338 INLINE int float64_le_quiet( float64 a, float64 b STATUS_PARAM)
342 INLINE int float64_lt_quiet( float64 a, float64 b STATUS_PARAM)
347 INLINE int float64_unordered( float64 a, float64 b STATUS_PARAM)
352 int float64_compare( float64, float64 STATUS_PARAM );
353 int float64_compare_quiet( float64, float64 STATUS_PARAM );
354 int float64_is_signaling_nan( float64 );
355 int float64_is_nan( float64 );
357 INLINE float64 float64_abs(float64 a)
362 INLINE float64 float64_chs(float64 a)
367 INLINE float64 float64_is_infinity(float64 a)
372 INLINE float64 float64_is_neg(float64 a)
379 INLINE float64 float64_is_zero(float64 a)
384 INLINE float64 float64_scalbn(float64 a, int n)
399 float64 floatx80_to_float64( floatx80 STATUS_PARAM );