• Home
  • Raw
  • Download

Lines Matching refs:STATUS_PARAM

68 #define STATUS_PARAM , float_status *status  macro
183 void set_float_rounding_mode(int val STATUS_PARAM);
184 void set_float_exception_flags(int val STATUS_PARAM);
185 INLINE void set_float_detect_tininess(int val STATUS_PARAM) in set_float_detect_tininess() argument
189 INLINE void set_flush_to_zero(flag val STATUS_PARAM) in set_flush_to_zero() argument
193 INLINE void set_flush_inputs_to_zero(flag val STATUS_PARAM) in set_flush_inputs_to_zero() argument
197 INLINE void set_default_nan_mode(flag val STATUS_PARAM) in set_default_nan_mode() argument
205 void set_floatx80_rounding_precision(int val STATUS_PARAM);
211 void float_raise( int8 flags STATUS_PARAM);
228 float32 int32_to_float32( int32 STATUS_PARAM );
229 float64 int32_to_float64( int32 STATUS_PARAM );
230 float32 uint32_to_float32( uint32 STATUS_PARAM );
231 float64 uint32_to_float64( uint32 STATUS_PARAM );
232 floatx80 int32_to_floatx80( int32 STATUS_PARAM );
233 float128 int32_to_float128( int32 STATUS_PARAM );
234 float32 int64_to_float32( int64 STATUS_PARAM );
235 float32 uint64_to_float32( uint64 STATUS_PARAM );
236 float64 int64_to_float64( int64 STATUS_PARAM );
237 float64 uint64_to_float64( uint64 STATUS_PARAM );
238 floatx80 int64_to_floatx80( int64 STATUS_PARAM );
239 float128 int64_to_float128( int64 STATUS_PARAM );
240 float128 uint64_to_float128( uint64 STATUS_PARAM );
245 float16 float32_to_float16( float32, flag STATUS_PARAM );
246 float32 float16_to_float32( float16, flag STATUS_PARAM );
268 int_fast16_t float32_to_int16_round_to_zero(float32 STATUS_PARAM);
269 uint_fast16_t float32_to_uint16_round_to_zero(float32 STATUS_PARAM);
270 int32 float32_to_int32( float32 STATUS_PARAM );
271 int32 float32_to_int32_round_to_zero( float32 STATUS_PARAM );
272 uint32 float32_to_uint32( float32 STATUS_PARAM );
273 uint32 float32_to_uint32_round_to_zero( float32 STATUS_PARAM );
274 int64 float32_to_int64( float32 STATUS_PARAM );
275 int64 float32_to_int64_round_to_zero( float32 STATUS_PARAM );
276 float64 float32_to_float64( float32 STATUS_PARAM );
277 floatx80 float32_to_floatx80( float32 STATUS_PARAM );
278 float128 float32_to_float128( float32 STATUS_PARAM );
283 float32 float32_round_to_int( float32 STATUS_PARAM );
284 float32 float32_add( float32, float32 STATUS_PARAM );
285 float32 float32_sub( float32, float32 STATUS_PARAM );
286 float32 float32_mul( float32, float32 STATUS_PARAM );
287 float32 float32_div( float32, float32 STATUS_PARAM );
288 float32 float32_rem( float32, float32 STATUS_PARAM );
289 float32 float32_muladd(float32, float32, float32, int STATUS_PARAM);
290 float32 float32_sqrt( float32 STATUS_PARAM );
291 float32 float32_exp2( float32 STATUS_PARAM );
292 float32 float32_log2( float32 STATUS_PARAM );
293 int float32_eq( float32, float32 STATUS_PARAM );
294 int float32_le( float32, float32 STATUS_PARAM );
295 int float32_lt( float32, float32 STATUS_PARAM );
296 int float32_unordered( float32, float32 STATUS_PARAM );
297 int float32_eq_quiet( float32, float32 STATUS_PARAM );
298 int float32_le_quiet( float32, float32 STATUS_PARAM );
299 int float32_lt_quiet( float32, float32 STATUS_PARAM );
300 int float32_unordered_quiet( float32, float32 STATUS_PARAM );
301 int float32_compare( float32, float32 STATUS_PARAM );
302 int float32_compare_quiet( float32, float32 STATUS_PARAM );
303 float32 float32_min(float32, float32 STATUS_PARAM);
304 float32 float32_max(float32, float32 STATUS_PARAM);
305 float32 float32_minnum(float32, float32 STATUS_PARAM);
306 float32 float32_maxnum(float32, float32 STATUS_PARAM);
310 float32 float32_scalbn( float32, int STATUS_PARAM );
374 int_fast16_t float64_to_int16_round_to_zero(float64 STATUS_PARAM);
375 uint_fast16_t float64_to_uint16_round_to_zero(float64 STATUS_PARAM);
376 int32 float64_to_int32( float64 STATUS_PARAM );
377 int32 float64_to_int32_round_to_zero( float64 STATUS_PARAM );
378 uint32 float64_to_uint32( float64 STATUS_PARAM );
379 uint32 float64_to_uint32_round_to_zero( float64 STATUS_PARAM );
380 int64 float64_to_int64( float64 STATUS_PARAM );
381 int64 float64_to_int64_round_to_zero( float64 STATUS_PARAM );
382 uint64 float64_to_uint64 (float64 a STATUS_PARAM);
383 uint64 float64_to_uint64_round_to_zero (float64 a STATUS_PARAM);
384 float32 float64_to_float32( float64 STATUS_PARAM );
385 floatx80 float64_to_floatx80( float64 STATUS_PARAM );
386 float128 float64_to_float128( float64 STATUS_PARAM );
391 float64 float64_round_to_int( float64 STATUS_PARAM );
392 float64 float64_trunc_to_int( float64 STATUS_PARAM );
393 float64 float64_add( float64, float64 STATUS_PARAM );
394 float64 float64_sub( float64, float64 STATUS_PARAM );
395 float64 float64_mul( float64, float64 STATUS_PARAM );
396 float64 float64_div( float64, float64 STATUS_PARAM );
397 float64 float64_rem( float64, float64 STATUS_PARAM );
398 float64 float64_muladd(float64, float64, float64, int STATUS_PARAM);
399 float64 float64_sqrt( float64 STATUS_PARAM );
400 float64 float64_log2( float64 STATUS_PARAM );
401 int float64_eq( float64, float64 STATUS_PARAM );
402 int float64_le( float64, float64 STATUS_PARAM );
403 int float64_lt( float64, float64 STATUS_PARAM );
404 int float64_unordered( float64, float64 STATUS_PARAM );
405 int float64_eq_quiet( float64, float64 STATUS_PARAM );
406 int float64_le_quiet( float64, float64 STATUS_PARAM );
407 int float64_lt_quiet( float64, float64 STATUS_PARAM );
408 int float64_unordered_quiet( float64, float64 STATUS_PARAM );
409 int float64_compare( float64, float64 STATUS_PARAM );
410 int float64_compare_quiet( float64, float64 STATUS_PARAM );
411 float64 float64_min(float64, float64 STATUS_PARAM);
412 float64 float64_max(float64, float64 STATUS_PARAM);
413 float64 float64_minnum(float64, float64 STATUS_PARAM);
414 float64 float64_maxnum(float64, float64 STATUS_PARAM);
418 float64 float64_scalbn( float64, int STATUS_PARAM );
482 int32 floatx80_to_int32( floatx80 STATUS_PARAM );
483 int32 floatx80_to_int32_round_to_zero( floatx80 STATUS_PARAM );
484 int64 floatx80_to_int64( floatx80 STATUS_PARAM );
485 int64 floatx80_to_int64_round_to_zero( floatx80 STATUS_PARAM );
486 float32 floatx80_to_float32( floatx80 STATUS_PARAM );
487 float64 floatx80_to_float64( floatx80 STATUS_PARAM );
488 float128 floatx80_to_float128( floatx80 STATUS_PARAM );
493 floatx80 floatx80_round_to_int( floatx80 STATUS_PARAM );
494 floatx80 floatx80_add( floatx80, floatx80 STATUS_PARAM );
495 floatx80 floatx80_sub( floatx80, floatx80 STATUS_PARAM );
496 floatx80 floatx80_mul( floatx80, floatx80 STATUS_PARAM );
497 floatx80 floatx80_div( floatx80, floatx80 STATUS_PARAM );
498 floatx80 floatx80_rem( floatx80, floatx80 STATUS_PARAM );
499 floatx80 floatx80_sqrt( floatx80 STATUS_PARAM );
500 int floatx80_eq( floatx80, floatx80 STATUS_PARAM );
501 int floatx80_le( floatx80, floatx80 STATUS_PARAM );
502 int floatx80_lt( floatx80, floatx80 STATUS_PARAM );
503 int floatx80_unordered( floatx80, floatx80 STATUS_PARAM );
504 int floatx80_eq_quiet( floatx80, floatx80 STATUS_PARAM );
505 int floatx80_le_quiet( floatx80, floatx80 STATUS_PARAM );
506 int floatx80_lt_quiet( floatx80, floatx80 STATUS_PARAM );
507 int floatx80_unordered_quiet( floatx80, floatx80 STATUS_PARAM );
508 int floatx80_compare( floatx80, floatx80 STATUS_PARAM );
509 int floatx80_compare_quiet( floatx80, floatx80 STATUS_PARAM );
513 floatx80 floatx80_scalbn( floatx80, int STATUS_PARAM );
567 int32 float128_to_int32( float128 STATUS_PARAM );
568 int32 float128_to_int32_round_to_zero( float128 STATUS_PARAM );
569 int64 float128_to_int64( float128 STATUS_PARAM );
570 int64 float128_to_int64_round_to_zero( float128 STATUS_PARAM );
571 float32 float128_to_float32( float128 STATUS_PARAM );
572 float64 float128_to_float64( float128 STATUS_PARAM );
573 floatx80 float128_to_floatx80( float128 STATUS_PARAM );
578 float128 float128_round_to_int( float128 STATUS_PARAM );
579 float128 float128_add( float128, float128 STATUS_PARAM );
580 float128 float128_sub( float128, float128 STATUS_PARAM );
581 float128 float128_mul( float128, float128 STATUS_PARAM );
582 float128 float128_div( float128, float128 STATUS_PARAM );
583 float128 float128_rem( float128, float128 STATUS_PARAM );
584 float128 float128_sqrt( float128 STATUS_PARAM );
585 int float128_eq( float128, float128 STATUS_PARAM );
586 int float128_le( float128, float128 STATUS_PARAM );
587 int float128_lt( float128, float128 STATUS_PARAM );
588 int float128_unordered( float128, float128 STATUS_PARAM );
589 int float128_eq_quiet( float128, float128 STATUS_PARAM );
590 int float128_le_quiet( float128, float128 STATUS_PARAM );
591 int float128_lt_quiet( float128, float128 STATUS_PARAM );
592 int float128_unordered_quiet( float128, float128 STATUS_PARAM );
593 int float128_compare( float128, float128 STATUS_PARAM );
594 int float128_compare_quiet( float128, float128 STATUS_PARAM );
598 float128 float128_scalbn( float128, int STATUS_PARAM );