Home | History | Annotate | Download | only in fpu

Lines Matching refs:float64

106 } float64;
107 #define float64_val(x) (((float64)(x)).v)
108 #define make_float64(x) __extension__ ({ float64 f64_val = {x}; f64_val; })
113 typedef uint64_t float64;
229 float64 int32_to_float64( int32 STATUS_PARAM );
231 float64 uint32_to_float64( uint32 STATUS_PARAM );
236 float64 int64_to_float64( int64 STATUS_PARAM );
237 float64 uint64_to_float64( uint64 STATUS_PARAM );
276 float64 float32_to_float64( float32 STATUS_PARAM );
374 int_fast16_t float64_to_int16_round_to_zero(float64 STATUS_PARAM);
375 uint_fast16_t float64_to_uint16_round_to_zero(float64 STATUS_PARAM);
376 int32 float64_to_int32( float64 STATUS_PARAM );
377 int32 float64_to_int32_round_to_zero( float64 STATUS_PARAM );
378 uint32 float64_to_uint32( float64 STATUS_PARAM );
379 uint32 float64_to_uint32_round_to_zero( float64 STATUS_PARAM );
380 int64 float64_to_int64( float64 STATUS_PARAM );
381 int64 float64_to_int64_round_to_zero( float64 STATUS_PARAM );
382 uint64 float64_to_uint64 (float64 a STATUS_PARAM);
383 uint64 float64_to_uint64_round_to_zero (float64 a STATUS_PARAM);
384 float32 float64_to_float32( float64 STATUS_PARAM );
385 floatx80 float64_to_floatx80( float64 STATUS_PARAM );
386 float128 float64_to_float128( float64 STATUS_PARAM );
391 float64 float64_round_to_int( float64 STATUS_PARAM );
392 float64 float64_trunc_to_int( float64 STATUS_PARAM );
393 float64 float64_add( float64, float64 STATUS_PARAM );
394 float64 float64_sub( float64, float64 STATUS_PARAM );
395 float64 float64_mul( float64, float64 STATUS_PARAM );
396 float64 float64_div( float64, float64 STATUS_PARAM );
397 float64 float64_rem( float64, float64 STATUS_PARAM );
398 float64 float64_muladd(float64, float64, float64, int STATUS_PARAM);
399 float64 float64_sqrt( float64 STATUS_PARAM );
400 float64 float64_log2( float64 STATUS_PARAM );
401 int float64_eq( float64, float64 STATUS_PARAM );
402 int float64_le( float64, float64 STATUS_PARAM );
403 int float64_lt( float64, float64 STATUS_PARAM );
404 int float64_unordered( float64, float64 STATUS_PARAM );
405 int float64_eq_quiet( float64, float64 STATUS_PARAM );
406 int float64_le_quiet( float64, float64 STATUS_PARAM );
407 float64, float64 STATUS_PARAM );
408 int float64_unordered_quiet( float64, float64 STATUS_PARAM );
409 int float64_compare( float64, float64 STATUS_PARAM );
410 int float64_compare_quiet( float64, float64 STATUS_PARAM );
411 float64 float64_min(float64, float64 STATUS_PARAM);
412 float64 float64_max(float64, float64 STATUS_PARAM);
413 float64 float64_minnum(float64, float64 STATUS_PARAM);
414 float64 float64_maxnum(float64, float64 STATUS_PARAM);
415 int float64_is_quiet_nan( float64 a );
416 int float64_is_signaling_nan( float64 );
417 float64 float64_maybe_silence_nan( float64 );
418 float64 float64_scalbn( float64, int STATUS_PARAM );
420 INLINE float64 float64_abs(float64 a)
428 INLINE float64 float64_chs(float64 a)
436 INLINE int float64_is_infinity(float64 a)
441 INLINE int float64_is_neg(float64 a)
446 INLINE int float64_is_zero(float64 a)
451 INLINE int float64_is_any_nan(float64 a)
456 INLINE int float64_is_zero_or_denormal(float64 a)
461 INLINE float64 float64_set_sign(float64 a, int sign)
477 extern const float64 float64_default_nan;
487 float64 floatx80_to_float64( floatx80 STATUS_PARAM );
572 float64 float128_to_float64( float128 STATUS_PARAM );