Lines Matching refs:float64

97 float64 int32_to_float64(int v STATUS_PARAM)
99 return (float64)v;
102 float64 uint32_to_float64(unsigned int v STATUS_PARAM)
104 return (float64)v;
121 float64 int64_to_float64( int64_t v STATUS_PARAM)
123 return (float64)v;
125 float64 uint64_to_float64( uint64_t v STATUS_PARAM)
127 return (float64)v;
172 float64 float32_to_float64( float32 a STATUS_PARAM)
276 int float64_to_int32( float64 a STATUS_PARAM)
280 int float64_to_int32_round_to_zero( float64 a STATUS_PARAM)
284 int64_t float64_to_int64( float64 a STATUS_PARAM)
288 int64_t float64_to_int64_round_to_zero( float64 a STATUS_PARAM)
292 float32 float64_to_float32( float64 a STATUS_PARAM)
297 floatx80 float64_to_floatx80( float64 a STATUS_PARAM)
303 float128 float64_to_float128( float64 a STATUS_PARAM)
309 unsigned int float64_to_uint32( float64 a STATUS_PARAM)
324 unsigned int float64_to_uint32_round_to_zero( float64 a STATUS_PARAM)
339 uint64_t float64_to_uint64 (float64 a STATUS_PARAM)
343 v = llrint(a + (float64)INT64_MIN);
347 uint64_t float64_to_uint64_round_to_zero (float64 a STATUS_PARAM)
351 v = (int64_t)(a + (float64)INT64_MIN);
361 static inline float64 trunc(float64 x)
366 float64 float64_trunc_to_int( float64 a STATUS_PARAM )
371 float64 float64_round_to_int( float64 a STATUS_PARAM )
376 float64 float64_rem( float64 a, float64 b STATUS_PARAM)
381 float64 float64_sqrt( float64 a STATUS_PARAM)
385 int float64_compare( float64 a, float64 b STATUS_PARAM )
397 int float64_compare_quiet( float64 a, float64 b STATUS_PARAM )
409 int float64_is_signaling_nan( float64 a1)
421 int float64_is_nan( float64 a1 )
457 float64 floatx80_to_float64( floatx80 a STATUS_PARAM)