Lines Matching refs:float64

138 } float64;
139 #define float64_val(x) (((float64)(x)).v)
140 #define make_float64(x) __extension__ ({ float64 f64_val = {x}; f64_val; })
143 typedef uint64_t float64;
233 float64 int32_to_float64( int STATUS_PARAM );
235 float64 uint32_to_float64( unsigned int STATUS_PARAM );
244 float64 int64_to_float64( int64_t STATUS_PARAM );
245 float64 uint64_to_float64( uint64_t STATUS_PARAM );
268 float64 float32_to_float64( float32 STATUS_PARAM );
332 int float64_to_int32( float64 STATUS_PARAM );
333 int float64_to_int32_round_to_zero( float64 STATUS_PARAM );
334 unsigned int float64_to_uint32( float64 STATUS_PARAM );
335 unsigned int float64_to_uint32_round_to_zero( float64 STATUS_PARAM );
336 int64_t float64_to_int64( float64 STATUS_PARAM );
337 int64_t float64_to_int64_round_to_zero( float64 STATUS_PARAM );
338 uint64_t float64_to_uint64 (float64 a STATUS_PARAM);
339 uint64_t float64_to_uint64_round_to_zero (float64 a STATUS_PARAM);
340 float32 float64_to_float32( float64 STATUS_PARAM );
342 floatx80 float64_to_floatx80( float64 STATUS_PARAM );
345 float128 float64_to_float128( float64 STATUS_PARAM );
351 float64 float64_round_to_int( float64 STATUS_PARAM );
352 float64 float64_trunc_to_int( float64 STATUS_PARAM );
353 float64 float64_add( float64, float64 STATUS_PARAM );
354 float64 float64_sub( float64, float64 STATUS_PARAM );
355 float64 float64_mul( float64, float64 STATUS_PARAM );
356 float64 float64_div( float64, float64 STATUS_PARAM );
357 float64 float64_rem( float64, float64 STATUS_PARAM );
358 float64 float64_sqrt( float64 STATUS_PARAM );
359 float64 float64_log2( float64 STATUS_PARAM );
360 int float64_eq( float64, float64 STATUS_PARAM );
361 int float64_le( float64, float64 STATUS_PARAM );
362 int float64_lt( float64, float64 STATUS_PARAM );
363 int float64_eq_signaling( float64, float64 STATUS_PARAM );
364 int float64_le_quiet( float64, float64 STATUS_PARAM );
365 int float64_lt_quiet( float64, float64 STATUS_PARAM );
366 int float64_compare( float64, float64 STATUS_PARAM );
367 int float64_compare_quiet( float64, float64 STATUS_PARAM );
368 int float64_is_nan( float64 a );
369 int float64_is_signaling_nan( float64 );
370 float64 float64_scalbn( float64, int STATUS_PARAM );
372 INLINE float64 float64_abs(float64 a)
377 INLINE float64 float64_chs(float64 a)
382 INLINE int float64_is_infinity(float64 a)
387 INLINE int float64_is_neg(float64 a)
392 INLINE int float64_is_zero(float64 a)
411 float64 floatx80_to_float64( floatx80 STATUS_PARAM );
475 float64 float128_to_float64( float128 STATUS_PARAM );