• Home
  • Raw
  • Download

Lines Matching refs:float64

134 } float64;  typedef
135 #define float64_val(x) (((float64)(x)).v)
136 #define make_float64(x) __extension__ ({ float64 f64_val = {x}; f64_val; })
141 typedef uint64_t float64; typedef
250 float64 int32_to_float64( int32 STATUS_PARAM );
252 float64 uint32_to_float64( unsigned int STATUS_PARAM );
261 float64 int64_to_float64( int64 STATUS_PARAM );
262 float64 uint64_to_float64( uint64 STATUS_PARAM );
305 float64 float32_to_float64( float32 STATUS_PARAM );
412 int16 float64_to_int16_round_to_zero( float64 STATUS_PARAM );
413 unsigned int float64_to_uint16_round_to_zero( float64 STATUS_PARAM );
414 int32 float64_to_int32( float64 STATUS_PARAM );
415 int32 float64_to_int32_round_to_zero( float64 STATUS_PARAM );
416 uint32 float64_to_uint32( float64 STATUS_PARAM );
417 uint32 float64_to_uint32_round_to_zero( float64 STATUS_PARAM );
418 int64 float64_to_int64( float64 STATUS_PARAM );
419 int64 float64_to_int64_round_to_zero( float64 STATUS_PARAM );
420 uint64 float64_to_uint64 (float64 a STATUS_PARAM);
421 uint64 float64_to_uint64_round_to_zero (float64 a STATUS_PARAM);
422 float32 float64_to_float32( float64 STATUS_PARAM );
424 floatx80 float64_to_floatx80( float64 STATUS_PARAM );
427 float128 float64_to_float128( float64 STATUS_PARAM );
433 float64 float64_round_to_int( float64 STATUS_PARAM );
434 float64 float64_trunc_to_int( float64 STATUS_PARAM );
435 float64 float64_add( float64, float64 STATUS_PARAM );
436 float64 float64_sub( float64, float64 STATUS_PARAM );
437 float64 float64_mul( float64, float64 STATUS_PARAM );
438 float64 float64_div( float64, float64 STATUS_PARAM );
439 float64 float64_rem( float64, float64 STATUS_PARAM );
440 float64 float64_sqrt( float64 STATUS_PARAM );
441 float64 float64_log2( float64 STATUS_PARAM );
442 int float64_eq( float64, float64 STATUS_PARAM );
443 int float64_le( float64, float64 STATUS_PARAM );
444 int float64_lt( float64, float64 STATUS_PARAM );
445 int float64_unordered( float64, float64 STATUS_PARAM );
446 int float64_eq_quiet( float64, float64 STATUS_PARAM );
447 int float64_le_quiet( float64, float64 STATUS_PARAM );
448 int float64_lt_quiet( float64, float64 STATUS_PARAM );
449 int float64_unordered_quiet( float64, float64 STATUS_PARAM );
450 int float64_compare( float64, float64 STATUS_PARAM );
451 int float64_compare_quiet( float64, float64 STATUS_PARAM );
452 float64 float64_min(float64, float64 STATUS_PARAM);
453 float64 float64_max(float64, float64 STATUS_PARAM);
454 int float64_is_quiet_nan( float64 a );
455 int float64_is_signaling_nan( float64 );
456 float64 float64_maybe_silence_nan( float64 );
457 float64 float64_scalbn( float64, int STATUS_PARAM );
459 INLINE float64 float64_abs(float64 a) in float64_abs()
467 INLINE float64 float64_chs(float64 a) in float64_chs()
475 INLINE int float64_is_infinity(float64 a) in float64_is_infinity()
480 INLINE int float64_is_neg(float64 a) in float64_is_neg()
485 INLINE int float64_is_zero(float64 a) in float64_is_zero()
490 INLINE int float64_is_any_nan(float64 a) in float64_is_any_nan()
495 INLINE float64 float64_set_sign(float64 a, int sign) in float64_set_sign()
531 float64 floatx80_to_float64( floatx80 STATUS_PARAM );
625 float64 float128_to_float64( float128 STATUS_PARAM );