Lines Matching refs:tm

219 	int tn, tm = 0;  in vfp_propagate_nan()  local
224 tm = vfp_single_type(vsm); in vfp_propagate_nan()
237 if (tn == VFP_SNAN || (tm != VFP_SNAN && tn == VFP_QNAN)) in vfp_propagate_nan()
252 return tn == VFP_SNAN || tm == VFP_SNAN ? FPSCR_IOC : VFP_NAN_FLAG; in vfp_propagate_nan()
319 int ret, tm; in vfp_single_fsqrt() local
322 tm = vfp_single_type(&vsm); in vfp_single_fsqrt()
323 if (tm & (VFP_NAN|VFP_INFINITY)) { in vfp_single_fsqrt()
326 if (tm & VFP_NAN) in vfp_single_fsqrt()
344 if (tm & VFP_ZERO) in vfp_single_fsqrt()
350 if (tm & VFP_DENORMAL) in vfp_single_fsqrt()
486 int tm; in vfp_single_fcvtd() local
491 tm = vfp_single_type(&vsm); in vfp_single_fcvtd()
496 if (tm == VFP_SNAN) in vfp_single_fcvtd()
499 if (tm & VFP_DENORMAL) in vfp_single_fcvtd()
508 if (tm & (VFP_INFINITY|VFP_NAN)) { in vfp_single_fcvtd()
510 if (tm == VFP_QNAN) in vfp_single_fcvtd()
513 } else if (tm & VFP_ZERO) in vfp_single_fcvtd()
552 int tm; in vfp_single_ftoui() local
560 tm = vfp_single_type(&vsm); in vfp_single_ftoui()
561 if (tm & VFP_DENORMAL) in vfp_single_ftoui()
564 if (tm & VFP_NAN) in vfp_single_ftoui()
632 int tm; in vfp_single_ftosi() local
640 tm = vfp_single_type(&vsm); in vfp_single_ftosi()
644 if (tm & VFP_NAN) { in vfp_single_ftosi()
734 int tn, tm; in vfp_single_fadd_nonnumber() local
737 tm = vfp_single_type(vsm); in vfp_single_fadd_nonnumber()
739 if (tn & tm & VFP_INFINITY) { in vfp_single_fadd_nonnumber()
755 } else if (tn & VFP_INFINITY && tm & VFP_NUMBER) { in vfp_single_fadd_nonnumber()
1057 int tm, tn; in vfp_single_fdiv() local
1067 tm = vfp_single_type(&vsm); in vfp_single_fdiv()
1078 if (tm & VFP_NAN) in vfp_single_fdiv()
1085 if (tm & tn & (VFP_INFINITY|VFP_ZERO)) in vfp_single_fdiv()
1097 if (tm & VFP_ZERO) in vfp_single_fdiv()
1103 if (tm & VFP_INFINITY || tn & VFP_ZERO) in vfp_single_fdiv()
1108 if (tm & VFP_DENORMAL) in vfp_single_fdiv()