Home | History | Annotate | Download | only in softfloat

Lines Matching defs:FLOATX80

37 The macro `FLOATX80' must be defined to enable the extended double-precision
38 floating-point format `floatx80'. If this macro is not defined, the
39 `floatx80' type will not be defined, and none of the functions that either
40 input or output the `floatx80' type will be defined. The same applies to
45 #define FLOATX80
58 #ifdef FLOATX80
65 }__packed floatx80;
129 #ifdef FLOATX80
130 floatx80 int32_to_floatx80( int32 );
131 floatx80 uint32_to_floatx80( uint32 );
139 #ifdef FLOATX80
140 floatx80 int64_to_floatx80( long long );
157 #ifdef FLOATX80
158 floatx80 float32_to_floatx80( float32 );
197 #ifdef FLOATX80
198 floatx80 float64_to_floatx80( float64 );
226 #ifdef FLOATX80
233 int floatx80_to_int32( floatx80 );
234 int floatx80_to_int32_round_to_zero( floatx80 );
235 long long floatx80_to_int64( floatx80 );
236 long long floatx80_to_int64_round_to_zero( floatx80 );
237 float32 floatx80_to_float32( floatx80 );
238 float64 floatx80_to_float64( floatx80 );
240 float128 floatx80_to_float128( floatx80 );
256 floatx80 floatx80_round_to_int( floatx80 );
257 floatx80 floatx80_add( floatx80, floatx80 );
258 floatx80 floatx80_sub( floatx80, floatx80 );
259 floatx80 floatx80_mul( floatx80, floatx80 );
260 floatx80 floatx80_div( floatx80, floatx80 );
261 floatx80 floatx80_rem( floatx80, floatx80 );
262 floatx80 floatx80_sqrt( floatx80 );
263 flag floatx80_eq_internal( floatx80, floatx80 );
264 flag floatx80_le_internal( floatx80, floatx80 );
265 flag floatx80_lt_internal( floatx80, floatx80 );
266 flag floatx80_eq_signaling_internal( floatx80, floatx80 );
267 flag floatx80_le_quiet_internal( floatx80, floatx80 );
268 flag floatx80_lt_quiet_internal( floatx80, floatx80 );
269 flag floatx80_eq( floatx80, floatx80 );
270 flag floatx80_le( floatx80, floatx80 );
271 flag floatx80_lt( floatx80, floatx80 );
272 flag floatx80_eq_signaling( floatx80, floatx80 );
273 flag floatx80_le_quiet( floatx80, floatx80 );
274 flag floatx80_lt_quiet( floatx80, floatx80 );
275 flag floatx80_is_signaling_nan( floatx80 );
276 flag floatx80_is_nan( floatx80 );
293 #ifdef FLOATX80
294 floatx80 float128_to_floatx80( float128 );