Lines Matching refs:exponent
153 s16 exponent; member
196 s->exponent = vfp_single_packed_exponent(val); in vfp_single_unpack()
200 if (s->exponent && s->exponent != 255) in vfp_single_unpack()
213 (s->exponent << VFP_SINGLE_MANTISSA_BITS) + in vfp_single_pack()
231 if (s->exponent == 255) { in vfp_single_type()
238 } else if (s->exponent == 0) { in vfp_single_type()
258 s16 exponent; member
305 s->exponent = vfp_double_packed_exponent(val); in vfp_double_unpack()
309 if (s->exponent && s->exponent != 2047) in vfp_double_unpack()
322 ((u64)s->exponent << VFP_DOUBLE_MANTISSA_BITS) + in vfp_double_pack()
330 if (s->exponent == 2047) { in vfp_double_type()
337 } else if (s->exponent == 0) { in vfp_double_type()
348 u32 vfp_estimate_sqrt_significand(u32 exponent, u32 significand);