Lines Matching refs:dt2

277     uint64_t dt2;  in helper_float_cvt_l_d()  local
279 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_cvt_l_d()
282 dt2 = FP_TO_INT64_OVERFLOW; in helper_float_cvt_l_d()
285 return dt2; in helper_float_cvt_l_d()
290 uint64_t dt2; in helper_float_cvt_l_s() local
292 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_cvt_l_s()
295 dt2 = FP_TO_INT64_OVERFLOW; in helper_float_cvt_l_s()
298 return dt2; in helper_float_cvt_l_s()
410 uint64_t dt2; in helper_float_round_l_d() local
414 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_round_l_d()
418 dt2 = FP_TO_INT64_OVERFLOW; in helper_float_round_l_d()
421 return dt2; in helper_float_round_l_d()
426 uint64_t dt2; in helper_float_round_l_s() local
430 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_round_l_s()
434 dt2 = FP_TO_INT64_OVERFLOW; in helper_float_round_l_s()
437 return dt2; in helper_float_round_l_s()
474 uint64_t dt2; in helper_float_trunc_l_d() local
476 dt2 = float64_to_int64_round_to_zero(fdt0, in helper_float_trunc_l_d()
480 dt2 = FP_TO_INT64_OVERFLOW; in helper_float_trunc_l_d()
483 return dt2; in helper_float_trunc_l_d()
488 uint64_t dt2; in helper_float_trunc_l_s() local
490 dt2 = float32_to_int64_round_to_zero(fst0, &env->active_fpu.fp_status); in helper_float_trunc_l_s()
493 dt2 = FP_TO_INT64_OVERFLOW; in helper_float_trunc_l_s()
496 return dt2; in helper_float_trunc_l_s()
527 uint64_t dt2; in helper_float_ceil_l_d() local
530 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_ceil_l_d()
534 dt2 = FP_TO_INT64_OVERFLOW; in helper_float_ceil_l_d()
537 return dt2; in helper_float_ceil_l_d()
542 uint64_t dt2; in helper_float_ceil_l_s() local
545 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_ceil_l_s()
549 dt2 = FP_TO_INT64_OVERFLOW; in helper_float_ceil_l_s()
552 return dt2; in helper_float_ceil_l_s()
587 uint64_t dt2; in helper_float_floor_l_d() local
590 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_floor_l_d()
594 dt2 = FP_TO_INT64_OVERFLOW; in helper_float_floor_l_d()
597 return dt2; in helper_float_floor_l_d()
602 uint64_t dt2; in helper_float_floor_l_s() local
605 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_floor_l_s()
609 dt2 = FP_TO_INT64_OVERFLOW; in helper_float_floor_l_s()
612 return dt2; in helper_float_floor_l_s()
647 uint64_t dt2; in helper_float_cvt_2008_l_d() local
649 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_cvt_2008_l_d()
653 dt2 = 0; in helper_float_cvt_2008_l_d()
657 return dt2; in helper_float_cvt_2008_l_d()
662 uint64_t dt2; in helper_float_cvt_2008_l_s() local
664 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_cvt_2008_l_s()
668 dt2 = 0; in helper_float_cvt_2008_l_s()
672 return dt2; in helper_float_cvt_2008_l_s()
707 uint64_t dt2; in helper_float_round_2008_l_d() local
711 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_round_2008_l_d()
716 dt2 = 0; in helper_float_round_2008_l_d()
720 return dt2; in helper_float_round_2008_l_d()
725 uint64_t dt2; in helper_float_round_2008_l_s() local
729 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_round_2008_l_s()
734 dt2 = 0; in helper_float_round_2008_l_s()
738 return dt2; in helper_float_round_2008_l_s()
779 uint64_t dt2; in helper_float_trunc_2008_l_d() local
781 dt2 = float64_to_int64_round_to_zero(fdt0, &env->active_fpu.fp_status); in helper_float_trunc_2008_l_d()
785 dt2 = 0; in helper_float_trunc_2008_l_d()
789 return dt2; in helper_float_trunc_2008_l_d()
794 uint64_t dt2; in helper_float_trunc_2008_l_s() local
796 dt2 = float32_to_int64_round_to_zero(fst0, &env->active_fpu.fp_status); in helper_float_trunc_2008_l_s()
800 dt2 = 0; in helper_float_trunc_2008_l_s()
804 return dt2; in helper_float_trunc_2008_l_s()
839 uint64_t dt2; in helper_float_ceil_2008_l_d() local
842 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_ceil_2008_l_d()
847 dt2 = 0; in helper_float_ceil_2008_l_d()
851 return dt2; in helper_float_ceil_2008_l_d()
856 uint64_t dt2; in helper_float_ceil_2008_l_s() local
859 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_ceil_2008_l_s()
864 dt2 = 0; in helper_float_ceil_2008_l_s()
868 return dt2; in helper_float_ceil_2008_l_s()
907 uint64_t dt2; in helper_float_floor_2008_l_d() local
910 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_floor_2008_l_d()
915 dt2 = 0; in helper_float_floor_2008_l_d()
919 return dt2; in helper_float_floor_2008_l_d()
924 uint64_t dt2; in helper_float_floor_2008_l_s() local
927 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_floor_2008_l_s()
932 dt2 = 0; in helper_float_floor_2008_l_s()
936 return dt2; in helper_float_floor_2008_l_s()
1219 uint64_t dt2; in helper_float_add_d() local
1221 dt2 = float64_add(fdt0, fdt1, &env->active_fpu.fp_status); in helper_float_add_d()
1223 return dt2; in helper_float_add_d()
1255 uint64_t dt2; in helper_float_sub_d() local
1257 dt2 = float64_sub(fdt0, fdt1, &env->active_fpu.fp_status); in helper_float_sub_d()
1259 return dt2; in helper_float_sub_d()
1291 uint64_t dt2; in helper_float_mul_d() local
1293 dt2 = float64_mul(fdt0, fdt1, &env->active_fpu.fp_status); in helper_float_mul_d()
1295 return dt2; in helper_float_mul_d()
1327 uint64_t dt2; in helper_float_div_d() local
1329 dt2 = float64_div(fdt0, fdt1, &env->active_fpu.fp_status); in helper_float_div_d()
1331 return dt2; in helper_float_div_d()