Lines Matching defs:mantissa_low

172   u_long mantissa_low;
221 mantissa_low = (val &0x7F) << 16;
222 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8;
223 mantissa_low |= get_byte(bufp, offsets, &fieldindex);
234 mantissa_low = (u_long)get_byte(bufp, offsets, &fieldindex) << 24;
235 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 16;
236 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8;
237 mantissa_low |= get_byte(bufp, offsets, &fieldindex);
270 fmt_flt(sign, mantissa_high, mantissa_low, characteristic),
285 if (mantissa_low || mantissa_high)
341 mantissa_low |= 1 << mbits;
354 lfpp->l_uf |= mantissa_low >> (mbits - 33);
359 lfpp->l_uf = mantissa_low >> frac_offset;
371 lfpp->l_uf |= mantissa_low >> (frac_offset - 32);
379 lfpp->l_ui |= (mantissa_low >> frac_offset) & ((1 << (32 - frac_offset)) - 1);
380 lfpp->l_uf = (mantissa_low & ((1 << frac_offset) - 1)) << (32 - frac_offset);
401 * is never referenced, and the calculated mantissa_high & mantissa_low
406 * ieee754io.c:414:10: warning: variable 'mantissa_low' set but not used
429 u_long mantissa_low = 0;
484 exponent = mantissa_high = mantissa_low = 0; /* true zero */
518 mantissa_low = (outlfp.l_ui & ((1 << (msb - 32)) - 1)) << (mbits - (msb - 32));
519 mantissa_low |= outlfp.l_uf >> (mbits - (msb - 32));
523 mantissa_low = (outlfp.l_uf << (mbits - msb)) & ((1 << mbits) - 1);
532 mantissa_low = (outlfp.l_ui & ((1 << (msb - mbits)) - 1)) << (32 - (msb - mbits));
533 mantissa_low |= outlfp.l_uf >> (msb - mbits);
538 mantissa_low = outlfp.l_uf << (mbits - 32);
547 printf("FP: %s\n", fmt_flt(sign, mantissa_high, mantissa_low, characteristic));