Lines Matching refs:float64
90 float64 int32_to_float64(int v STATUS_PARAM) in int32_to_float64()
92 return (float64)v; in int32_to_float64()
95 float64 uint32_to_float64(unsigned int v STATUS_PARAM) in uint32_to_float64()
97 return (float64)v; in uint32_to_float64()
114 float64 int64_to_float64( int64_t v STATUS_PARAM) in int64_to_float64()
116 return (float64)v; in int64_to_float64()
118 float64 uint64_to_float64( uint64_t v STATUS_PARAM) in uint64_to_float64()
120 return (float64)v; in uint64_to_float64()
165 float64 float32_to_float64( float32 a STATUS_PARAM) in float32_to_float64()
278 int float64_to_int32( float64 a STATUS_PARAM) in float64_to_int32()
282 int float64_to_int32_round_to_zero( float64 a STATUS_PARAM) in float64_to_int32_round_to_zero()
286 int64_t float64_to_int64( float64 a STATUS_PARAM) in float64_to_int64()
290 int64_t float64_to_int64_round_to_zero( float64 a STATUS_PARAM) in float64_to_int64_round_to_zero()
294 float32 float64_to_float32( float64 a STATUS_PARAM) in float64_to_float32()
299 floatx80 float64_to_floatx80( float64 a STATUS_PARAM) in float64_to_floatx80()
305 float128 float64_to_float128( float64 a STATUS_PARAM) in float64_to_float128()
311 unsigned int float64_to_uint32( float64 a STATUS_PARAM) in float64_to_uint32()
326 unsigned int float64_to_uint32_round_to_zero( float64 a STATUS_PARAM) in float64_to_uint32_round_to_zero()
341 uint64_t float64_to_uint64 (float64 a STATUS_PARAM) in float64_to_uint64()
345 v = llrint(a + (float64)INT64_MIN); in float64_to_uint64()
349 uint64_t float64_to_uint64_round_to_zero (float64 a STATUS_PARAM) in float64_to_uint64_round_to_zero()
353 v = (int64_t)(a + (float64)INT64_MIN); in float64_to_uint64_round_to_zero()
363 static inline float64 trunc(float64 x) in trunc()
368 float64 float64_trunc_to_int( float64 a STATUS_PARAM ) in float64_trunc_to_int()
373 float64 float64_round_to_int( float64 a STATUS_PARAM ) in float64_round_to_int()
378 float64 float64_rem( float64 a, float64 b STATUS_PARAM) in float64_rem()
383 float64 float64_sqrt( float64 a STATUS_PARAM) in float64_sqrt()
387 int float64_compare( float64 a, float64 b STATUS_PARAM ) in float64_compare()
399 int float64_compare_quiet( float64 a, float64 b STATUS_PARAM ) in float64_compare_quiet()
411 int float64_is_signaling_nan( float64 a1) in float64_is_signaling_nan()
423 int float64_is_quiet_nan( float64 a1 ) in float64_is_quiet_nan()
434 int float64_is_any_nan( float64 a1 ) in float64_is_any_nan()
469 float64 floatx80_to_float64( floatx80 a STATUS_PARAM) in floatx80_to_float64()