Home | History | Annotate | Download | only in fpu

Lines Matching refs:STATUS_PARAM

95 #define STATUS_PARAM , float_status *status
214 void set_float_rounding_mode(int val STATUS_PARAM);
215 void set_float_exception_flags(int val STATUS_PARAM);
216 INLINE void set_float_detect_tininess(int val STATUS_PARAM)
220 INLINE void set_flush_to_zero(flag val STATUS_PARAM)
224 INLINE void set_flush_inputs_to_zero(flag val STATUS_PARAM)
228 INLINE void set_default_nan_mode(flag val STATUS_PARAM)
237 void set_floatx80_rounding_precision(int val STATUS_PARAM);
244 void float_raise( int8 flags STATUS_PARAM);
249 float32 int32_to_float32( int32 STATUS_PARAM );
250 float64 int32_to_float64( int32 STATUS_PARAM );
251 float32 uint32_to_float32( unsigned int STATUS_PARAM );
252 float64 uint32_to_float64( unsigned int STATUS_PARAM );
254 floatx80 int32_to_floatx80( int32 STATUS_PARAM );
257 float128 int32_to_float128( int32 STATUS_PARAM );
259 float32 int64_to_float32( int64 STATUS_PARAM );
260 float32 uint64_to_float32( uint64 STATUS_PARAM );
261 float64 int64_to_float64( int64 STATUS_PARAM );
262 float64 uint64_to_float64( uint64 STATUS_PARAM );
264 floatx80 int64_to_floatx80( int64 STATUS_PARAM );
267 float128 int64_to_float128( int64 STATUS_PARAM );
273 float16 float32_to_float16( float32, flag STATUS_PARAM );
274 float32 float16_to_float32( float16, flag STATUS_PARAM );
297 int16 float32_to_int16_round_to_zero( float32 STATUS_PARAM );
298 unsigned int float32_to_uint16_round_to_zero( float32 STATUS_PARAM );
299 int32 float32_to_int32( float32 STATUS_PARAM );
300 int32 float32_to_int32_round_to_zero( float32 STATUS_PARAM );
301 uint32 float32_to_uint32( float32 STATUS_PARAM );
302 uint32 float32_to_uint32_round_to_zero( float32 STATUS_PARAM );
303 int64 float32_to_int64( float32 STATUS_PARAM );
304 int64 float32_to_int64_round_to_zero( float32 STATUS_PARAM );
305 float64 float32_to_float64( float32 STATUS_PARAM );
307 floatx80 float32_to_floatx80( float32 STATUS_PARAM );
310 float128 float32_to_float128( float32 STATUS_PARAM );
316 float32 float32_round_to_int( float32 STATUS_PARAM );
317 float32 float32_add( float32, float32 STATUS_PARAM );
318 float32 float32_sub( float32, float32 STATUS_PARAM );
319 float32 float32_mul( float32, float32 STATUS_PARAM );
320 float32 float32_div( float32, float32 STATUS_PARAM );
321 float32 float32_rem( float32, float32 STATUS_PARAM );
322 float32 float32_sqrt( float32 STATUS_PARAM );
323 float32 float32_exp2( float32 STATUS_PARAM );
324 float32 float32_log2( float32 STATUS_PARAM );
325 int float32_eq( float32, float32 STATUS_PARAM );
326 int float32_le( float32, float32 STATUS_PARAM );
327 int float32_lt( float32, float32 STATUS_PARAM );
328 int float32_unordered( float32, float32 STATUS_PARAM );
329 int float32_eq_quiet( float32, float32 STATUS_PARAM );
330 int float32_le_quiet( float32, float32 STATUS_PARAM );
331 int float32_lt_quiet( float32, float32 STATUS_PARAM );
332 int float32_unordered_quiet( float32, float32 STATUS_PARAM );
333 int float32_compare( float32, float32 STATUS_PARAM );
334 int float32_compare_quiet( float32, float32 STATUS_PARAM );
335 float32 float32_min(float32, float32 STATUS_PARAM);
336 float32 float32_max(float32, float32 STATUS_PARAM);
340 float32 float32_scalbn( float32, int STATUS_PARAM );
412 int16 float64_to_int16_round_to_zero( float64 STATUS_PARAM );
413 unsigned int float64_to_uint16_round_to_zero( float64 STATUS_PARAM );
414 int32 float64_to_int32( float64 STATUS_PARAM );
415 int32 float64_to_int32_round_to_zero( float64 STATUS_PARAM );
416 uint32 float64_to_uint32( float64 STATUS_PARAM );
417 uint32 float64_to_uint32_round_to_zero( float64 STATUS_PARAM );
418 int64 float64_to_int64( float64 STATUS_PARAM );
419 int64 float64_to_int64_round_to_zero( float64 STATUS_PARAM );
420 uint64 float64_to_uint64 (float64 a STATUS_PARAM);
421 uint64 float64_to_uint64_round_to_zero (float64 a STATUS_PARAM);
422 float32 float64_to_float32( float64 STATUS_PARAM );
424 floatx80 float64_to_floatx80( float64 STATUS_PARAM );
427 float128 float64_to_float128( float64 STATUS_PARAM );
433 float64 float64_round_to_int( float64 STATUS_PARAM );
434 float64 float64_trunc_to_int( float64 STATUS_PARAM );
435 float64 float64_add( float64, float64 STATUS_PARAM );
436 STATUS_PARAM );
437 float64 float64_mul( float64, float64 STATUS_PARAM );
438 float64 float64_div( float64, float64 STATUS_PARAM );
439 float64 float64_rem( float64, float64 STATUS_PARAM );
440 float64 float64_sqrt( float64 STATUS_PARAM );
441 float64 float64_log2( float64 STATUS_PARAM );
442 int float64_eq( float64, float64 STATUS_PARAM );
443 int float64_le( float64, float64 STATUS_PARAM );
444 int float64_lt( float64, float64 STATUS_PARAM );
445 int float64_unordered( float64, float64 STATUS_PARAM );
446 int float64_eq_quiet( float64, float64 STATUS_PARAM );
447 int float64_le_quiet( float64, float64 STATUS_PARAM );
448 int float64_lt_quiet( float64, float64 STATUS_PARAM );
449 int float64_unordered_quiet( float64, float64 STATUS_PARAM );
450 int float64_compare( float64, float64 STATUS_PARAM );
451 int float64_compare_quiet( float64, float64 STATUS_PARAM );
452 float64 float64_min(float64, float64 STATUS_PARAM);
453 float64 float64_max(float64, float64 STATUS_PARAM);
457 float64 float64_scalbn( float64, int STATUS_PARAM );
526 int32 floatx80_to_int32( floatx80 STATUS_PARAM );
527 int32 floatx80_to_int32_round_to_zero( floatx80 STATUS_PARAM );
528 int64 floatx80_to_int64( floatx80 STATUS_PARAM );
529 int64 floatx80_to_int64_round_to_zero( floatx80 STATUS_PARAM );
530 float32 floatx80_to_float32( floatx80 STATUS_PARAM );
531 float64 floatx80_to_float64( floatx80 STATUS_PARAM );
533 float128 floatx80_to_float128( floatx80 STATUS_PARAM );
539 floatx80 floatx80_round_to_int( floatx80 STATUS_PARAM );
540 floatx80 floatx80_add( floatx80, floatx80 STATUS_PARAM );
541 floatx80 floatx80_sub( floatx80, floatx80 STATUS_PARAM );
542 floatx80 floatx80_mul( floatx80, floatx80 STATUS_PARAM );
543 floatx80 floatx80_div( floatx80, floatx80 STATUS_PARAM );
544 floatx80 floatx80_rem( floatx80, floatx80 STATUS_PARAM );
545 floatx80 floatx80_sqrt( floatx80 STATUS_PARAM );
546 int floatx80_eq( floatx80, floatx80 STATUS_PARAM );
547 int floatx80_le( floatx80, floatx80 STATUS_PARAM );
548 int floatx80_lt( floatx80, floatx80 STATUS_PARAM );
549 int floatx80_unordered( floatx80, floatx80 STATUS_PARAM );
550 int floatx80_eq_quiet( floatx80, floatx80 STATUS_PARAM );
551 int floatx80_le_quiet( floatx80, floatx80 STATUS_PARAM );
552 int floatx80_lt_quiet( floatx80, floatx80 STATUS_PARAM );
553 int floatx80_unordered_quiet( floatx80, floatx80 STATUS_PARAM );
554 int floatx80_compare( floatx80, floatx80 STATUS_PARAM );
555 int floatx80_compare_quiet( floatx80, floatx80 STATUS_PARAM );
559 floatx80 floatx80_scalbn( floatx80, int STATUS_PARAM );
620 int32 float128_to_int32( float128 STATUS_PARAM );
621 int32 float128_to_int32_round_to_zero( float128 STATUS_PARAM );
622 int64 float128_to_int64( float128 STATUS_PARAM );
623 int64 float128_to_int64_round_to_zero( float128 STATUS_PARAM );
624 float32 float128_to_float32( float128 STATUS_PARAM );
625 float64 float128_to_float64( float128 STATUS_PARAM );
627 floatx80 float128_to_floatx80( float128 STATUS_PARAM );
633 float128 float128_round_to_int( float128 STATUS_PARAM );
634 float128 float128_add( float128, float128 STATUS_PARAM );
635 float128 float128_sub( float128, float128 STATUS_PARAM );
636 float128 float128_mul( float128, float128 STATUS_PARAM );
637 float128 float128_div( float128, float128 STATUS_PARAM );
638 float128 float128_rem( float128, float128 STATUS_PARAM );
639 float128 float128_sqrt( float128 STATUS_PARAM );
640 int float128_eq( float128, float128 STATUS_PARAM );
641 int float128_le( float128, float128 STATUS_PARAM );
642 int float128_lt( float128, float128 STATUS_PARAM );
643 int float128_unordered( float128, float128 STATUS_PARAM );
644 int float128_eq_quiet( float128, float128 STATUS_PARAM );
645 int float128_le_quiet( float128, float128 STATUS_PARAM );
646 int float128_lt_quiet( float128, float128 STATUS_PARAM );
647 int float128_unordered_quiet( float128, float128 STATUS_PARAM );
648 int float128_compare( float128, float128 STATUS_PARAM );
649 int float128_compare_quiet( float128, float128 STATUS_PARAM );
653 float128 float128_scalbn( float128, int STATUS_PARAM );