Lines Matching defs:M_BITS
313 #define M_BITS 9 /* Number of bits in mantissa */
326 if (i == M_BITS)
327 flot = NZ | (i << M_BITS) | (cr & M_MASK);
328 else if (i < M_BITS)
329 flot = NZ | (i << M_BITS) | ((cr << (M_BITS - i)) & M_MASK);
331 flot = NZ | (i << M_BITS) | ((cr >> (i - M_BITS)) & M_MASK);
345 exp = (rate >> M_BITS) & E_MASK;
349 cps = (1 << M_BITS) | mantissa;
350 if (exp == M_BITS)
352 else if (exp > M_BITS)
353 cps <<= (exp - M_BITS);
355 cps >>= (M_BITS - exp);