Home | History | Annotate | Download | only in src

Lines Matching defs:bit

20 individually for the purpose of encoding or decoding bit streams in products that are compliant with
687 int bit, mask;
701 mask = 1; /* begin with lowest bit of exponent */
703 for ( bit=ENV_EXP_FRACT-1; bit>=0; bit-- ) {
705 /* The current bit of the exponent is set,
707 mantissa = (FIXP_SGL)( (mantissa * pow2[bit]) << 1);
709 /* Advance to next bit */
717 /* In case of the high amplitude resolution, 1 bit of the exponent gets lost by the shift.
718 This will be compensated by a mantissa of 0.5*sqrt(2) instead of 0.5 if that bit is 1. */