Home | History | Annotate | Download | only in fpu

Lines Matching refs:float64

130 } float64;
131 #define float64_val(x) (((float64)(x)).v)
132 #define make_float64(x) __extension__ ({ float64 f64_val = {x}; f64_val; })
135 typedef uint64_t float64;
225 float64 int32_to_float64( int STATUS_PARAM );
227 float64 uint32_to_float64( unsigned int STATUS_PARAM );
236 float64 int64_to_float64( int64_t STATUS_PARAM );
237 float64 uint64_to_float64( uint64_t STATUS_PARAM );
254 float64 float32_to_float64( float32 STATUS_PARAM );
316 int float64_to_int32( float64 STATUS_PARAM );
317 int float64_to_int32_round_to_zero( float64 STATUS_PARAM );
318 unsigned int float64_to_uint32( float64 STATUS_PARAM );
319 unsigned int float64_to_uint32_round_to_zero( float64 STATUS_PARAM );
320 int64_t float64_to_int64( float64 STATUS_PARAM );
321 int64_t float64_to_int64_round_to_zero( float64 STATUS_PARAM );
322 uint64_t float64_to_uint64 (float64 a STATUS_PARAM);
323 uint64_t float64_to_uint64_round_to_zero (float64 a STATUS_PARAM);
324 float32 float64_to_float32( float64 STATUS_PARAM );
326 floatx80 float64_to_floatx80( float64 STATUS_PARAM );
329 float128 float64_to_float128( float64 STATUS_PARAM );
335 float64 float64_round_to_int( float64 STATUS_PARAM );
336 float64 float64_trunc_to_int( float64 STATUS_PARAM );
337 float64 float64_add( float64, float64 STATUS_PARAM );
338 float64 float64_sub( float64, float64 STATUS_PARAM );
339 float64 float64_mul( float64, float64 STATUS_PARAM );
340 float64 float64_div( float64, float64 STATUS_PARAM );
341 float64 float64_rem( float64, float64 STATUS_PARAM );
342 float64 float64_sqrt( float64 STATUS_PARAM );
343 float64 float64_log2( float64 STATUS_PARAM );
344 int float64_eq( float64, float64 STATUS_PARAM );
345 int float64_le( float64, float64 STATUS_PARAM );
346 int float64_lt( float64, float64 STATUS_PARAM );
347 int float64_eq_signaling( float64, float64 STATUS_PARAM );
348 int float64_le_quiet( float64, float64 STATUS_PARAM );
349 int float64_lt_quiet( float64, float64 STATUS_PARAM );
350 int float64_compare( float64, float64 STATUS_PARAM );
351 int float64_compare_quiet( float64, float64 STATUS_PARAM );
352 int float64_is_nan( float64 a );
353 int float64_is_signaling_nan( float64 );
354 float64 float64_scalbn( float64, int STATUS_PARAM );
356 INLINE float64 float64_abs(float64 a)
361 INLINE float64 float64_chs(float64 a)
366 INLINE int float64_is_infinity(float64 a)
371 INLINE int float64_is_neg(float64 a)
376 INLINE int float64_is_zero(float64 a)
394 float64 floatx80_to_float64( floatx80 STATUS_PARAM );
458 float64 float128_to_float64( float128 STATUS_PARAM );