Searched defs:norm_amt (Results 1 - 1 of 1) sorted by last modified time

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dfloatnum.c214 long norm_amt; local
223 norm_amt = (MANT_BITS-1)-Set_Max(flt->mantissa);
224 if (norm_amt > (long)flt->exponent)
225 norm_amt = (long)flt->exponent;
226 BitVector_Move_Left(flt->mantissa, (N_int)norm_amt);
227 flt->exponent -= (unsigned short)norm_amt;
236 long norm_amt; local
288 norm_amt = (MANT_BITS*2-1)-Set_Max(product);
289 if (norm_amt > (long)acc->exponent)
290 norm_amt
[all...]

Completed in 90 milliseconds