Lines Matching refs:d2
224 union double_union d, d2, eps; in __dtoa() local
289 d2.d = d.d; in __dtoa()
290 word0 (d2) &= Frac_mask1; in __dtoa()
291 word0 (d2) |= Exp_11; in __dtoa()
293 if (j = 11 - hi0bits (word0 (d2) & Frac_mask)) in __dtoa()
294 d2.d /= 1 << j; in __dtoa()
338 d2.d = x; in __dtoa()
339 word0 (d2) -= 31 * Exp_msk1; /* adjust exponent */ in __dtoa()
345 ds = (d2.d - 1.5) * 0.289529651 + 0.176091269 + i * 0.30103001; in __dtoa()
347 ds = (d2.d - 1.5) * 0.289529654602168 + 0.1760912590558 + i * 0.301029995663981; in __dtoa()
428 d2.d = d.d; in __dtoa()
532 d.d = d2.d; in __dtoa()