Searched refs:frac_offset (Results 1 - 1 of 1) sorted by path

/freebsd-11-stable/contrib/ntp/libparse/
H A Dieee754io.c324 int frac_offset; /* where the fraction starts */ local
326 frac_offset = mbits - exponent;
349 if (frac_offset > mbits)
352 frac_offset -= mbits + 1; /* will now contain right shift count - 1*/
357 lfpp->l_uf >>= frac_offset;
361 lfpp->l_uf = mantissa_low >> frac_offset;
366 if (frac_offset > 32)
371 lfpp->l_ui = mantissa_high >> (frac_offset - 32);
372 lfpp->l_uf = (mantissa_high & ((1 << (frac_offset - 32)) - 1)) << (64 - frac_offset);
[all...]

Completed in 116 milliseconds