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
44 /* #define FLOATX80 */
56 #ifdef FLOATX80
60 } floatx80;
124 #ifdef FLOATX80
125 floatx80 int32_to_floatx80( int32 );
126 floatx80 uint32_to_floatx80( uint32 );
134 #ifdef FLOATX80
135 floatx80 int64_to_floatx80( long long );
152 #ifdef FLOATX80
153 floatx80 float32_to_floatx80( float32 );
192 #ifdef FLOATX80
193 floatx80 float64_to_floatx80( float64 );
221 #ifdef FLOATX80
228 int floatx80_to_int32( floatx80 );
229 int floatx80_to_int32_round_to_zero( floatx80 );
230 long long floatx80_to_int64( floatx80 );
231 long long floatx80_to_int64_round_to_zero( floatx80 );
232 float32 floatx80_to_float32( floatx80 );
233 float64 floatx80_to_float64( floatx80 );
235 float128 floatx80_to_float128( floatx80 );
251 floatx80 floatx80_round_to_int( floatx80 );
252 floatx80 floatx80_add( floatx80, floatx80 );
253 floatx80 floatx80_sub( floatx80, floatx80 );
254 floatx80 floatx80_mul( floatx80, floatx80 );
255 floatx80 floatx80_div( floatx80, floatx80 );
256 floatx80 floatx80_rem( floatx80, floatx80 );
257 floatx80 floatx80_sqrt( floatx80 );
258 flag floatx80_eq( floatx80, floatx80 );
259 flag floatx80_le( floatx80, floatx80 );
260 flag floatx80_lt( floatx80, floatx80 );
261 flag floatx80_eq_signaling( floatx80, floatx80 );
262 flag floatx80_le_quiet( floatx80, floatx80 );
263 flag floatx80_lt_quiet( floatx80, floatx80 );
264 flag floatx80_is_signaling_nan( floatx80 );
281 #ifdef FLOATX80
282 floatx80 float128_to_floatx80( float128 );