• Home
  • Raw
  • Download

Lines Matching refs:dt2

2361     uint64_t dt2;  in helper_float_cvtl_d()  local
2364 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_cvtl_d()
2367 dt2 = FLOAT_SNAN64; in helper_float_cvtl_d()
2368 return dt2; in helper_float_cvtl_d()
2373 uint64_t dt2; in helper_float_cvtl_s() local
2376 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_cvtl_s()
2379 dt2 = FLOAT_SNAN64; in helper_float_cvtl_s()
2380 return dt2; in helper_float_cvtl_s()
2487 uint64_t dt2; in helper_float_roundl_d() local
2491 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_roundl_d()
2495 dt2 = FLOAT_SNAN64; in helper_float_roundl_d()
2496 return dt2; in helper_float_roundl_d()
2501 uint64_t dt2; in helper_float_roundl_s() local
2505 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_roundl_s()
2509 dt2 = FLOAT_SNAN64; in helper_float_roundl_s()
2510 return dt2; in helper_float_roundl_s()
2543 uint64_t dt2; in helper_float_truncl_d() local
2546 dt2 = float64_to_int64_round_to_zero(fdt0, &env->active_fpu.fp_status); in helper_float_truncl_d()
2549 dt2 = FLOAT_SNAN64; in helper_float_truncl_d()
2550 return dt2; in helper_float_truncl_d()
2555 uint64_t dt2; in helper_float_truncl_s() local
2558 dt2 = float32_to_int64_round_to_zero(fst0, &env->active_fpu.fp_status); in helper_float_truncl_s()
2561 dt2 = FLOAT_SNAN64; in helper_float_truncl_s()
2562 return dt2; in helper_float_truncl_s()
2591 uint64_t dt2; in helper_float_ceill_d() local
2595 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_ceill_d()
2599 dt2 = FLOAT_SNAN64; in helper_float_ceill_d()
2600 return dt2; in helper_float_ceill_d()
2605 uint64_t dt2; in helper_float_ceill_s() local
2609 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_ceill_s()
2613 dt2 = FLOAT_SNAN64; in helper_float_ceill_s()
2614 return dt2; in helper_float_ceill_s()
2647 uint64_t dt2; in helper_float_floorl_d() local
2651 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_floorl_d()
2655 dt2 = FLOAT_SNAN64; in helper_float_floorl_d()
2656 return dt2; in helper_float_floorl_d()
2661 uint64_t dt2; in helper_float_floorl_s() local
2665 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_floorl_s()
2669 dt2 = FLOAT_SNAN64; in helper_float_floorl_s()
2670 return dt2; in helper_float_floorl_s()
2842 uint64_t dt2; \
2845 dt2 = float64_ ## name (fdt0, fdt1, &env->active_fpu.fp_status); \
2848 dt2 = FLOAT_QNAN64; \
2849 return dt2; \