Searched refs:base_m (Results 1 – 2 of 2) sorted by relevance
/external/aac/libFDK/src/ |
D | fixpoint_math.cpp | 626 FIXP_DBL CalcLog2(FIXP_DBL base_m, INT base_e, INT *result_e) in CalcLog2() argument 628 return fLog2(base_m, base_e, result_e); in CalcLog2() 699 FIXP_DBL base_m, INT base_e, in fPow() argument 708 base_lg2 = fLog2(base_m, base_e, &baselg2_e); in fPow() 772 FIXP_DBL base_m, INT base_e, in fPowInt() argument 782 if (base_m != (FIXP_DBL)0) { in fPowInt() 785 leadingBits = CountLeadingBits( base_m ); in fPowInt() 786 base_m <<= leadingBits; in fPowInt() 790 result = base_m; in fPowInt() 795 result = fMult(result, base_m); in fPowInt()
|
/external/aac/libFDK/include/ |
D | fixpoint_math.h | 375 FIXP_DBL fPow(FIXP_DBL base_m, INT base_e, FIXP_DBL exp_m, INT exp_e, INT *result_e); 385 FIXP_DBL fPowInt(FIXP_DBL base_m, INT base_e, INT N, INT *result_e);
|