Searched refs:base_m (Results 1 – 2 of 2) sorted by relevance
/external/aac/libFDK/src/ |
D | fixpoint_math.cpp | 584 FIXP_DBL CalcLog2(FIXP_DBL base_m, INT base_e, INT *result_e) in CalcLog2() argument 586 return fLog2(base_m, base_e, result_e); in CalcLog2() 657 FIXP_DBL base_m, INT base_e, in fPow() argument 666 base_lg2 = fLog2(base_m, base_e, &baselg2_e); in fPow() 730 FIXP_DBL base_m, INT base_e, in fPowInt() argument 740 if (base_m != (FIXP_DBL)0) { in fPowInt() 743 leadingBits = CountLeadingBits( base_m ); in fPowInt() 744 base_m <<= leadingBits; in fPowInt() 748 result = base_m; in fPowInt() 753 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);
|