Lines Matching refs:tm

211 	int tn, tm = 0;  in vfp_propagate_nan()  local
216 tm = vfp_double_type(vdm); in vfp_propagate_nan()
229 if (tn == VFP_SNAN || (tm != VFP_SNAN && tn == VFP_QNAN)) in vfp_propagate_nan()
244 return tn == VFP_SNAN || tm == VFP_SNAN ? FPSCR_IOC : VFP_NAN_FLAG; in vfp_propagate_nan()
271 int ret, tm; in vfp_double_fsqrt() local
274 tm = vfp_double_type(&vdm); in vfp_double_fsqrt()
275 if (tm & (VFP_NAN|VFP_INFINITY)) { in vfp_double_fsqrt()
278 if (tm & VFP_NAN) in vfp_double_fsqrt()
296 if (tm & VFP_ZERO) in vfp_double_fsqrt()
302 if (tm & VFP_DENORMAL) in vfp_double_fsqrt()
443 int tm; in vfp_double_fcvts() local
448 tm = vfp_double_type(&vdm); in vfp_double_fcvts()
453 if (tm == VFP_SNAN) in vfp_double_fcvts()
456 if (tm & VFP_DENORMAL) in vfp_double_fcvts()
465 if (tm & (VFP_INFINITY|VFP_NAN)) { in vfp_double_fcvts()
467 if (tm == VFP_QNAN) in vfp_double_fcvts()
470 } else if (tm & VFP_ZERO) in vfp_double_fcvts()
511 int tm; in vfp_double_ftoui() local
518 tm = vfp_double_type(&vdm); in vfp_double_ftoui()
519 if (tm & VFP_DENORMAL) in vfp_double_ftoui()
522 if (tm & VFP_NAN) in vfp_double_ftoui()
590 int tm; in vfp_double_ftosi() local
598 tm = vfp_double_type(&vdm); in vfp_double_ftosi()
599 if (tm & VFP_DENORMAL) in vfp_double_ftosi()
602 if (tm & VFP_NAN) { in vfp_double_ftosi()
688 int tn, tm; in vfp_double_fadd_nonnumber() local
691 tm = vfp_double_type(vdm); in vfp_double_fadd_nonnumber()
693 if (tn & tm & VFP_INFINITY) { in vfp_double_fadd_nonnumber()
709 } else if (tn & VFP_INFINITY && tm & VFP_NUMBER) { in vfp_double_fadd_nonnumber()
1011 int tm, tn; in vfp_double_fdiv() local
1019 tm = vfp_double_type(&vdm); in vfp_double_fdiv()
1030 if (tm & VFP_NAN) in vfp_double_fdiv()
1037 if (tm & tn & (VFP_INFINITY|VFP_ZERO)) in vfp_double_fdiv()
1049 if (tm & VFP_ZERO) in vfp_double_fdiv()
1055 if (tm & VFP_INFINITY || tn & VFP_ZERO) in vfp_double_fdiv()
1060 if (tm & VFP_DENORMAL) in vfp_double_fdiv()