Searched refs:vd (Results 1 – 2 of 2) sorted by relevance
192 struct vax_double vd; in xdr_double() local200 vd = *((struct vax_double *) dp); in xdr_double()204 if ((vd.mantissa4 == lim->d.mantissa4) && in xdr_double()205 (vd.mantissa3 == lim->d.mantissa3) && in xdr_double()206 (vd.mantissa2 == lim->d.mantissa2) && in xdr_double()207 (vd.mantissa1 == lim->d.mantissa1) && (vd.exp == lim->d.exp)) in xdr_double()213 id.exp = vd.exp - VAX_DBL_BIAS + IEEE_DBL_BIAS; in xdr_double()214 id.mantissa1 = (vd.mantissa1 << 13) | (vd.mantissa2 >> 3); in xdr_double()215 id.mantissa2 = ((vd.mantissa2 & MASK (3)) << 29) | in xdr_double()216 (vd.mantissa3 << 13) | ((vd.mantissa4 >> 3) & MASK (13)); in xdr_double()[all …]
104 #define vd ((long double)vd2 + (long double)vd1) in cbrtl() macro106 t = (long double)dt + vd - 0x1.0p32l; in cbrtl()