Home
last modified time | relevance | path

Searched refs:b_m (Results 1 – 3 of 3) sorted by relevance

/external/aac/libSBRdec/src/
Dtranscendent.h140 FIXP_SGL b_m, /*!< Mantissa of 2nd operand b */ in FDK_add_MantExp() argument
160 shiftedMantissa = (shift > 0) ? (FX_SGL2FX_DBL(b_m) >> shiftAbs) in FDK_add_MantExp()
162 otherMantissa = (shift > 0) ? FX_SGL2FX_DBL(a_m) : FX_SGL2FX_DBL(b_m); in FDK_add_MantExp()
229 FIXP_SGL b_m, /*!< Mantissa of divisor b */ in FDK_divide_MantExp() argument
239 preShift = CntLeadingZeros(FX_SGL2FX_DBL(b_m)); in FDK_divide_MantExp()
259 index = (shift < 0) ? (LONG)b_m << (-shift) : (LONG)b_m >> shift; in FDK_divide_MantExp()
285 FIXP_DBL b_m, /*!< Mantissa of divisor b */ in FDK_divide_MantExp() argument
295 preShift = CntLeadingZeros(b_m); in FDK_divide_MantExp()
315 index = (shift < 0) ? (LONG)b_m << (-shift) : (LONG)b_m >> shift; in FDK_divide_MantExp()
/external/aac/libFDK/include/
Dfixpoint_math.h173 FDK_INLINE INT fIsLessThan(FIXP_DBL a_m, INT a_e, FIXP_DBL b_m, INT b_e) { in fIsLessThan() argument
180 n = fixnorm_D(b_m); in fIsLessThan()
181 b_m <<= n; in fIsLessThan()
185 if (b_m == (FIXP_DBL)0) b_e = a_e; in fIsLessThan()
188 return ((b_m >> fMin(a_e - b_e, DFRACT_BITS - 1)) > a_m); in fIsLessThan()
190 return ((a_m >> fMin(b_e - a_e, DFRACT_BITS - 1)) < b_m); in fIsLessThan()
194 FDK_INLINE INT fIsLessThan(FIXP_SGL a_m, INT a_e, FIXP_SGL b_m, INT b_e) { in fIsLessThan() argument
201 n = fixnorm_S(b_m); in fIsLessThan()
202 b_m <<= n; in fIsLessThan()
206 if (b_m == (FIXP_SGL)0) b_e = a_e; in fIsLessThan()
[all …]
/external/libxaac/decoder/
Dixheaacd_basic_funcs.h29 VOID ixheaacd_fix_mant_exp_add(WORD16 a_m, WORD16 a_e, WORD16 b_m, WORD16 b_e,
32 WORD32 ixheaacd_fix_mant_div(WORD16 a_m, WORD16 b_m, WORD16 *ptr_result,
41 VOID ixheaacd_mantisa_mod(WORD32 b_m, WORD32 b_e, WORD32 *ptr_sum_mant,