Lines Matching refs:fd
88 uint64_t fd; in helper_fadd_s() local
90 fd = nanbox_s(float32_add((uint32_t)fj, (uint32_t)fk, &env->fp_status)); in helper_fadd_s()
92 return fd; in helper_fadd_s()
97 uint64_t fd; in helper_fadd_d() local
99 fd = float64_add(fj, fk, &env->fp_status); in helper_fadd_d()
101 return fd; in helper_fadd_d()
106 uint64_t fd; in helper_fsub_s() local
108 fd = nanbox_s(float32_sub((uint32_t)fj, (uint32_t)fk, &env->fp_status)); in helper_fsub_s()
110 return fd; in helper_fsub_s()
115 uint64_t fd; in helper_fsub_d() local
117 fd = float64_sub(fj, fk, &env->fp_status); in helper_fsub_d()
119 return fd; in helper_fsub_d()
124 uint64_t fd; in helper_fmul_s() local
126 fd = nanbox_s(float32_mul((uint32_t)fj, (uint32_t)fk, &env->fp_status)); in helper_fmul_s()
128 return fd; in helper_fmul_s()
133 uint64_t fd; in helper_fmul_d() local
135 fd = float64_mul(fj, fk, &env->fp_status); in helper_fmul_d()
137 return fd; in helper_fmul_d()
142 uint64_t fd; in helper_fdiv_s() local
144 fd = nanbox_s(float32_div((uint32_t)fj, (uint32_t)fk, &env->fp_status)); in helper_fdiv_s()
146 return fd; in helper_fdiv_s()
151 uint64_t fd; in helper_fdiv_d() local
153 fd = float64_div(fj, fk, &env->fp_status); in helper_fdiv_d()
155 return fd; in helper_fdiv_d()
160 uint64_t fd; in helper_fmax_s() local
162 fd = nanbox_s(float32_maxnum((uint32_t)fj, (uint32_t)fk, &env->fp_status)); in helper_fmax_s()
164 return fd; in helper_fmax_s()
169 uint64_t fd; in helper_fmax_d() local
171 fd = float64_maxnum(fj, fk, &env->fp_status); in helper_fmax_d()
173 return fd; in helper_fmax_d()
178 uint64_t fd; in helper_fmin_s() local
180 fd = nanbox_s(float32_minnum((uint32_t)fj, (uint32_t)fk, &env->fp_status)); in helper_fmin_s()
182 return fd; in helper_fmin_s()
187 uint64_t fd; in helper_fmin_d() local
189 fd = float64_minnum(fj, fk, &env->fp_status); in helper_fmin_d()
191 return fd; in helper_fmin_d()
196 uint64_t fd; in helper_fmaxa_s() local
198 fd = nanbox_s(float32_maxnummag((uint32_t)fj, in helper_fmaxa_s()
201 return fd; in helper_fmaxa_s()
206 uint64_t fd; in helper_fmaxa_d() local
208 fd = float64_maxnummag(fj, fk, &env->fp_status); in helper_fmaxa_d()
210 return fd; in helper_fmaxa_d()
215 uint64_t fd; in helper_fmina_s() local
217 fd = nanbox_s(float32_minnummag((uint32_t)fj, in helper_fmina_s()
220 return fd; in helper_fmina_s()
225 uint64_t fd; in helper_fmina_d() local
227 fd = float64_minnummag(fj, fk, &env->fp_status); in helper_fmina_d()
229 return fd; in helper_fmina_d()
234 uint64_t fd; in helper_fscaleb_s() local
237 fd = nanbox_s(float32_scalbn((uint32_t)fj, in helper_fscaleb_s()
242 return fd; in helper_fscaleb_s()
247 uint64_t fd; in helper_fscaleb_d() local
250 fd = float64_scalbn(fj, in helper_fscaleb_d()
255 return fd; in helper_fscaleb_d()
260 uint64_t fd; in helper_fsqrt_s() local
262 fd = nanbox_s(float32_sqrt((uint32_t)fj, &env->fp_status)); in helper_fsqrt_s()
264 return fd; in helper_fsqrt_s()
269 uint64_t fd; in helper_fsqrt_d() local
271 fd = float64_sqrt(fj, &env->fp_status); in helper_fsqrt_d()
273 return fd; in helper_fsqrt_d()
278 uint64_t fd; in helper_frecip_s() local
280 fd = nanbox_s(float32_div(float32_one, (uint32_t)fj, &env->fp_status)); in helper_frecip_s()
282 return fd; in helper_frecip_s()
287 uint64_t fd; in helper_frecip_d() local
289 fd = float64_div(float64_one, fj, &env->fp_status); in helper_frecip_d()
291 return fd; in helper_frecip_d()
296 uint64_t fd; in helper_frsqrt_s() local
300 fd = nanbox_s(float32_div(float32_one, fp, &env->fp_status)); in helper_frsqrt_s()
302 return fd; in helper_frsqrt_s()
307 uint64_t fp, fd; in helper_frsqrt_d() local
310 fd = float64_div(float64_one, fp, &env->fp_status); in helper_frsqrt_d()
312 return fd; in helper_frsqrt_d()
317 uint64_t fd; in helper_flogb_s() local
324 fd = nanbox_s(float32_round_to_int(fp, status)); in helper_flogb_s()
327 return fd; in helper_flogb_s()
332 uint64_t fd; in helper_flogb_d() local
337 fd = float64_log2(fj, status); in helper_flogb_d()
338 fd = float64_round_to_int(fd, status); in helper_flogb_d()
341 return fd; in helper_flogb_d()
385 uint64_t fd; in helper_fmuladd_s() local
387 fd = nanbox_s(float32_muladd((uint32_t)fj, (uint32_t)fk, in helper_fmuladd_s()
390 return fd; in helper_fmuladd_s()
396 uint64_t fd; in helper_fmuladd_d() local
398 fd = float64_muladd(fj, fk, fa, flag, &env->fp_status); in helper_fmuladd_d()
400 return fd; in helper_fmuladd_d()
466 uint64_t fd; in helper_fcvt_s_d() local
468 fd = nanbox_s(float64_to_float32(fj, &env->fp_status)); in helper_fcvt_s_d()
470 return fd; in helper_fcvt_s_d()
475 uint64_t fd; in helper_fcvt_d_s() local
477 fd = float32_to_float64((uint32_t)fj, &env->fp_status); in helper_fcvt_d_s()
479 return fd; in helper_fcvt_d_s()
484 uint64_t fd; in helper_ffint_s_w() local
486 fd = nanbox_s(int32_to_float32((int32_t)fj, &env->fp_status)); in helper_ffint_s_w()
488 return fd; in helper_ffint_s_w()
493 uint64_t fd; in helper_ffint_s_l() local
495 fd = nanbox_s(int64_to_float32(fj, &env->fp_status)); in helper_ffint_s_l()
497 return fd; in helper_ffint_s_l()
502 uint64_t fd; in helper_ffint_d_w() local
504 fd = int32_to_float64((int32_t)fj, &env->fp_status); in helper_ffint_d_w()
506 return fd; in helper_ffint_d_w()
511 uint64_t fd; in helper_ffint_d_l() local
513 fd = int64_to_float64(fj, &env->fp_status); in helper_ffint_d_l()
515 return fd; in helper_ffint_d_l()
520 uint64_t fd; in helper_frint_s() local
522 fd = (uint64_t)(float32_round_to_int((uint32_t)fj, &env->fp_status)); in helper_frint_s()
524 return fd; in helper_frint_s()
529 uint64_t fd; in helper_frint_d() local
531 fd = float64_round_to_int(fj, &env->fp_status); in helper_frint_d()
533 return fd; in helper_frint_d()
538 uint64_t fd; in helper_ftintrm_l_d() local
542 fd = float64_to_int64(fj, &env->fp_status); in helper_ftintrm_l_d()
547 fd = 0; in helper_ftintrm_l_d()
551 return fd; in helper_ftintrm_l_d()
556 uint64_t fd; in helper_ftintrm_l_s() local
560 fd = float32_to_int64((uint32_t)fj, &env->fp_status); in helper_ftintrm_l_s()
565 fd = 0; in helper_ftintrm_l_s()
569 return fd; in helper_ftintrm_l_s()
574 uint64_t fd; in helper_ftintrm_w_d() local
578 fd = (uint64_t)float64_to_int32(fj, &env->fp_status); in helper_ftintrm_w_d()
583 fd = 0; in helper_ftintrm_w_d()
587 return fd; in helper_ftintrm_w_d()
592 uint64_t fd; in helper_ftintrm_w_s() local
596 fd = (uint64_t)float32_to_int32((uint32_t)fj, &env->fp_status); in helper_ftintrm_w_s()
601 fd = 0; in helper_ftintrm_w_s()
605 return fd; in helper_ftintrm_w_s()
610 uint64_t fd; in helper_ftintrp_l_d() local
614 fd = float64_to_int64(fj, &env->fp_status); in helper_ftintrp_l_d()
619 fd = 0; in helper_ftintrp_l_d()
623 return fd; in helper_ftintrp_l_d()
628 uint64_t fd; in helper_ftintrp_l_s() local
632 fd = float32_to_int64((uint32_t)fj, &env->fp_status); in helper_ftintrp_l_s()
637 fd = 0; in helper_ftintrp_l_s()
641 return fd; in helper_ftintrp_l_s()
646 uint64_t fd; in helper_ftintrp_w_d() local
650 fd = (uint64_t)float64_to_int32(fj, &env->fp_status); in helper_ftintrp_w_d()
655 fd = 0; in helper_ftintrp_w_d()
659 return fd; in helper_ftintrp_w_d()
664 uint64_t fd; in helper_ftintrp_w_s() local
668 fd = (uint64_t)float32_to_int32((uint32_t)fj, &env->fp_status); in helper_ftintrp_w_s()
673 fd = 0; in helper_ftintrp_w_s()
677 return fd; in helper_ftintrp_w_s()
682 uint64_t fd; in helper_ftintrz_l_d() local
685 fd = float64_to_int64_round_to_zero(fj, &env->fp_status); in helper_ftintrz_l_d()
690 fd = 0; in helper_ftintrz_l_d()
694 return fd; in helper_ftintrz_l_d()
699 uint64_t fd; in helper_ftintrz_l_s() local
702 fd = float32_to_int64_round_to_zero((uint32_t)fj, &env->fp_status); in helper_ftintrz_l_s()
707 fd = 0; in helper_ftintrz_l_s()
711 return fd; in helper_ftintrz_l_s()
716 uint64_t fd; in helper_ftintrz_w_d() local
719 fd = (uint64_t)float64_to_int32_round_to_zero(fj, &env->fp_status); in helper_ftintrz_w_d()
724 fd = 0; in helper_ftintrz_w_d()
728 return fd; in helper_ftintrz_w_d()
733 uint32_t fd; in helper_ftintrz_w_s() local
736 fd = float32_to_int32_round_to_zero((uint32_t)fj, &env->fp_status); in helper_ftintrz_w_s()
741 fd = 0; in helper_ftintrz_w_s()
745 return (uint64_t)fd; in helper_ftintrz_w_s()
750 uint64_t fd; in helper_ftintrne_l_d() local
754 fd = float64_to_int64(fj, &env->fp_status); in helper_ftintrne_l_d()
759 fd = 0; in helper_ftintrne_l_d()
763 return fd; in helper_ftintrne_l_d()
768 uint64_t fd; in helper_ftintrne_l_s() local
772 fd = float32_to_int64((uint32_t)fj, &env->fp_status); in helper_ftintrne_l_s()
777 fd = 0; in helper_ftintrne_l_s()
781 return fd; in helper_ftintrne_l_s()
786 uint64_t fd; in helper_ftintrne_w_d() local
790 fd = (uint64_t)float64_to_int32(fj, &env->fp_status); in helper_ftintrne_w_d()
795 fd = 0; in helper_ftintrne_w_d()
799 return fd; in helper_ftintrne_w_d()
804 uint32_t fd; in helper_ftintrne_w_s() local
808 fd = float32_to_int32((uint32_t)fj, &env->fp_status); in helper_ftintrne_w_s()
813 fd = 0; in helper_ftintrne_w_s()
817 return (uint64_t)fd; in helper_ftintrne_w_s()
822 uint64_t fd; in helper_ftint_l_d() local
824 fd = float64_to_int64(fj, &env->fp_status); in helper_ftint_l_d()
827 fd = 0; in helper_ftint_l_d()
831 return fd; in helper_ftint_l_d()
836 uint64_t fd; in helper_ftint_l_s() local
838 fd = float32_to_int64((uint32_t)fj, &env->fp_status); in helper_ftint_l_s()
841 fd = 0; in helper_ftint_l_s()
845 return fd; in helper_ftint_l_s()
850 uint64_t fd; in helper_ftint_w_s() local
852 fd = (uint64_t)float32_to_int32((uint32_t)fj, &env->fp_status); in helper_ftint_w_s()
855 fd = 0; in helper_ftint_w_s()
859 return fd; in helper_ftint_w_s()
864 uint64_t fd; in helper_ftint_w_d() local
866 fd = (uint64_t)float64_to_int32(fj, &env->fp_status); in helper_ftint_w_d()
869 fd = 0; in helper_ftint_w_d()
873 return fd; in helper_ftint_w_d()