Home | History | Annotate | Download | only in src

Lines Matching refs:specExp

178       INT ex,specExp,tabIndex;
185 specExp = (DFRACT_BITS-1) - ex;
187 FDK_ASSERT(specExp < 14); /* this fails if abs(value) > 8191 */
194 /* get approperiate exponent multiplier for specExp^3/4 combined with scfMod */
195 t = FDKaacEnc_specExpMantTableCombElc[iquantizermod][specExp];
201 specExp = FDKaacEnc_specExpTableComb[iquantizermod][specExp]-1; /* -1 to avoid overflows in accu */
203 if ((-iquantizershift-specExp) < 0)
204 accu <<= -(-iquantizershift-specExp);
206 accu >>= -iquantizershift-specExp;
212 INT ex,specExp,tabIndex;
219 specExp = (DFRACT_BITS-1) - ex;
221 FDK_ASSERT(specExp < 14); /* this fails if abs(value) > 8191 */
228 /* get approperiate exponent multiplier for specExp^3/4 combined with scfMod */
229 t = FDKaacEnc_specExpMantTableCombElc[iquantizermod][specExp];
235 specExp = FDKaacEnc_specExpTableComb[iquantizermod][specExp]-1; /* -1 to avoid overflows in accu */
237 if (( -iquantizershift-specExp) < 0)
238 accu <<= -(-iquantizershift-specExp);
240 accu >>= -iquantizershift-specExp;