Home | History | Annotate | Download | only in Support

Lines Matching full:extra

209   uint64_t Extra = 0;
229 Extra = D << (128 + E);
256 // digits. Save the precision we're losing in Extra.
257 Extra = (Below0 & 0xf) << 56 | (Extra >> 8);
269 Extra *= 10;
270 Below0 += (Extra >> 60);
271 Extra = Extra & (UINT64_MAX >> 4);
277 } while (Error && (Below0 << 4 | Extra >> 60) >= Error / 2 &&