D | vfpdouble.c | 207 vfp_propagate_nan(struct vfp_double *vdd, struct vfp_double *vdn, in vfp_propagate_nan() argument 239 *vdd = *nan; in vfp_propagate_nan() 270 struct vfp_double vdm, vdd; in vfp_double_fsqrt() local 276 struct vfp_double *vdp = &vdd; in vfp_double_fsqrt() 316 vdd.sign = 0; in vfp_double_fsqrt() 317 vdd.exponent = ((vdm.exponent - 1023) >> 1) + 1023; in vfp_double_fsqrt() 318 vdd.significand = (u64)vfp_estimate_sqrt_significand(vdm.exponent, vdm.significand >> 32) << 31; in vfp_double_fsqrt() 320 vfp_double_dump("sqrt estimate1", &vdd); in vfp_double_fsqrt() 323 vdd.significand += 2 + vfp_estimate_div128to64(vdm.significand, 0, vdd.significand); in vfp_double_fsqrt() 325 vfp_double_dump("sqrt estimate2", &vdd); in vfp_double_fsqrt() [all …]
|