Home | History | Annotate | Download | only in libkern

Lines Matching defs:float128

74 | the `FLOAT128' macro and the quadruple-precision format `float128'.
77 /* #define FLOAT128 */
95 #ifdef FLOAT128
98 } float128;
159 #ifdef FLOAT128
160 float128 int32_to_float128( int );
168 #ifdef FLOAT128
169 float128 int64_to_float128( int64_t );
186 #ifdef FLOAT128
187 float128 float32_to_float128( float32 );
224 #ifdef FLOAT128
225 float128 float64_to_float128( float64 );
287 #ifdef FLOAT128
288 float128 floatx80_to_float128( floatx80 );
317 #ifdef FLOAT128
322 int float128_to_int32( float128 );
323 int float128_to_int32_round_to_zero( float128 );
324 int64_t float128_to_int64( float128 );
325 int64_t float128_to_int64_round_to_zero( float128 );
326 float32 float128_to_float32( float128 );
327 float64 float128_to_float64( float128 );
329 floatx80 float128_to_floatx80( float128 );
335 float128 float128_round_to_int( float128 );
336 float128 float128_add( float128, float128 );
337 float128 float128_sub( float128, float128 );
338 float128 float128_mul( float128, float128 );
339 float128 float128_div( float128, float128 );
340 float128 float128_rem( float128, float128 );
341 float128 float128_sqrt( float128 );
342 int float128_eq( float128, float128 );
343 int float128_le( float128, float128 );
344 int float128_lt( float128, float128 );
345 int float128_eq_signaling( float128, float128 );
346 int float128_le_quiet( float128, float128 );
347 int float128_lt_quiet( float128, float128 );
348 int float128_is_signaling_nan( float128 );