Searched defs:L_num (Results 1 - 8 of 8) sorted by relevance

/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Ddiv_s.cpp104 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; local
234 L_num = (Word32) var1;
241 L_num <<= 3;
243 if (L_num >= L_denom_by_4)
245 L_num
[all...]
H A Ddiv_32.cpp91 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, argument
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/amrwbenc/src/
H A Doper_32b.c159 * 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) argument
214 /* L_num * (1/L_denom) */
217 VO_L_Extract (L_num, &n_hi, &n_lo);
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Dbasicop2.c1524 Word32 L_num; local
1539 L_num = L_deposit_l (var1);
1545 L_num <<= 1;
1547 if (L_num >= L_denom)
1549 L_num = L_sub(L_num, L_denom);
H A Doper_32b.c145 * L_num / L_denom. *
146 * L_num and L_denom must be positive and L_num < L_denom. *
152 * L_num *
154 * range : 0x0000 0000 < L_num < L_denom *
177 * - result = L_num * (1/L_denom) *
181 Word32 Div_32 (Word32 L_num, Word32 denom) argument
196 /* L_num * (1/L_denom) */
198 L_32 = MULHIGH(L_32, L_num);
H A Dbasic_op.h652 Word32 L_num; local
659 L_num = (Word32) var1;
663 //return (L_num<<15)/var2;
668 L_num <<= 1;
670 if (L_num >= L_denom)
672 L_num -= L_denom;
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dpvamrwb_math_op.cpp209 int32 L_num; local
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/inc/
H A Dbasic_op.h1003 Word32 L_num; local
1027 L_num = L_deposit_l (var1);
1032 L_num <<= 1;
1033 if (L_num >= L_denom)
1035 L_num -= L_denom;

Completed in 548 milliseconds