HomeSort by relevance Sort by last modified time
    Searched refs:L_num (Results 1 - 16 of 16) sorted by null

  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
div_s.cpp 104 Word32 L_num;
122 L_num = (Word32) var1;
128 L_num <<= 1;
130 if (L_num >= L_denom)
132 L_num -= L_denom;
217 Word32 L_num;
234 L_num = (Word32) var1;
241 L_num <<= 3;
243 if (L_num >= L_denom_by_4)
245 L_num -= L_denom_by_4
    [all...]
div_32.cpp 91 L_num = 32 bit signed integer (Word32) whose value falls in the
92 range : 0x0000 0000 < L_num < L_denom
105 L_num / L_denom (Word32)
117 numerator L_num and the denominator L_denom. The denominator is formed by
125 3. result = L_num * (1/L_denom).
168 Word32 Div_32(Word32 L_num,
196 /* L_num * (1/L_denom) */
201 n_hi = (Word16)(L_num >> 16);
202 n_lo = (L_num >> 1) - (n_hi << 15);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
div_32.h 104 Word32 Div_32(Word32 L_num,
  /external/webrtc/src/common_audio/signal_processing/
auto_corr_to_refl_coef.c 25 WebRtc_Word32 L_num, L_den;
66 L_num = tmp;
72 L_num <<= 1;
73 if (L_num >= L_den)
75 L_num -= L_den;
division_operations.c 64 WebRtc_Word32 L_num = num;
76 L_num = -num;
86 L_num <<= 1;
87 if (L_num >= L_den)
89 L_num -= L_den;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
oper_32b.h 28 Word32 Div_32 (Word32 L_num, Word16 denom_hi, Word16 denom_lo);
basic_op.h     [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwb_math_op.cpp 209 int32 L_num;
223 L_num = (int32) var1;
230 L_num <<= 3;
232 if (L_num >= L_denom_by_4)
234 L_num -= L_denom_by_4;
238 if (L_num >= L_denom_by_2)
240 L_num -= L_denom_by_2;
244 if (L_num >= (L_denom))
246 L_num -= (L_denom);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
oper_32b.c 159 * L_num / L_denom. *
160 * L_num and L_denom must be positive and L_num < L_denom. *
166 * L_num *
168 * range : 0x0000 0000 < L_num < L_denom *
191 * - result = L_num * (1/L_denom) *
195 Word32 Div_32 (Word32 L_num, Word16 denom_hi, Word16 denom_lo)
214 /* L_num * (1/L_denom) */
217 VO_L_Extract (L_num, &n_hi, &n_lo);
  /external/aac/libFDK/src/
fixpoint_math.cpp 449 INT L_num = (LONG)num>>1;
458 if (L_num != 0)
462 L_num <<= 1;
463 if (L_num >= L_denum)
465 L_num -= L_denum;
499 FIXP_DBL fDivNorm(FIXP_DBL L_num, FIXP_DBL L_denum, INT *result_e)
504 FDK_ASSERT (L_num >= (FIXP_DBL)0);
507 if(L_num == (FIXP_DBL)0)
513 norm_num = CountLeadingBits(L_num);
514 L_num = L_num << norm_num
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
basicop2.c     [all...]
oper_32b.h 39 Word32 Div_32 (Word32 L_num, Word32 denom);
oper_32b.c 143 * L_num / L_denom. *
144 * L_num and L_denom must be positive and L_num < L_denom. *
150 * L_num *
152 * range : 0x0000 0000 < L_num < L_denom *
175 * - result = L_num * (1/L_denom) *
179 Word32 Div_32 (Word32 L_num, Word32 denom)
194 /* L_num * (1/L_denom) */
196 L_32 = MULHIGH(L_32, L_num);
basic_op.h 655 Word32 L_num;
662 L_num = (Word32) var1;
666 //return (L_num<<15)/var2;
671 L_num <<= 1;
673 if (L_num >= L_denom)
675 L_num -= L_denom;
  /external/libgsm/src/
add.c 208 longword L_num = num;
226 L_num <<= 1;
228 if (L_num >= L_denum) {
229 L_num -= L_denum;
  /external/aac/libFDK/include/
fixpoint_math.h 305 FIXP_DBL fDivNormHighPrec(FIXP_DBL L_num, FIXP_DBL L_denum, INT *result_e);

Completed in 432 milliseconds