Searched refs:exp_m (Results 1 – 2 of 2) sorted by relevance
/external/aac/libFDK/src/ |
D | fixpoint_math.cpp | 593 FIXP_DBL f2Pow(const FIXP_DBL exp_m, const INT exp_e, INT *result_e) { in f2Pow() argument 599 int_part = exp_m >> exp_bits; in f2Pow() 600 frac_part = exp_m - (FIXP_DBL)(int_part << exp_bits); in f2Pow() 604 frac_part = exp_m >> -exp_e; in f2Pow() 638 FIXP_DBL f2Pow(const FIXP_DBL exp_m, const INT exp_e) { in f2Pow() argument 642 result_m = f2Pow(exp_m, exp_e, &result_e); in f2Pow() 648 FIXP_DBL fPow(FIXP_DBL base_m, INT base_e, FIXP_DBL exp_m, INT exp_e, in fPow() argument 666 leadingBits = CountLeadingBits(fAbs(exp_m)); in fPow() 667 exp_m = exp_m << leadingBits; in fPow() 672 ans_lg2 = fMult(base_lg2, exp_m); in fPow() [all …]
|
/external/aac/libFDK/include/ |
D | fixpoint_math.h | 723 FIXP_DBL f2Pow(const FIXP_DBL exp_m, const INT exp_e, INT *result_e); 732 FIXP_DBL f2Pow(const FIXP_DBL exp_m, const INT exp_e); 746 FIXP_DBL fLdPow(FIXP_DBL baseLd_m, INT baseLd_e, FIXP_DBL exp_m, INT exp_e, 760 FIXP_DBL fLdPow(FIXP_DBL baseLd_m, INT baseLd_e, FIXP_DBL exp_m, INT exp_e); 773 FIXP_DBL fPow(FIXP_DBL base_m, INT base_e, FIXP_DBL exp_m, INT exp_e,
|