OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:b_e
(Results
1 - 3
of
3
) sorted by null
/external/aac/libSBRdec/src/
transcendent.h
123
SCHAR
b_e
, /*!< Exponent of 2nd operand b */
138
shift = (int)(a_e -
b_e
);
144
*ptrSum_e = (shift>0)? a_e :
b_e
;
161
SCHAR
b_e
, /*!< Exponent of 2nd operand b */
176
shift = (int)(a_e -
b_e
);
182
*ptrSum_e = (shift>0)? a_e :
b_e
;
210
SCHAR
b_e
, /*!< Exponent of divisor b */
260
*ptrResult_e = a_e -
b_e
+ 1 + preShift - postShift;
266
SCHAR
b_e
, /*!< Exponent of divisor b */
316
*ptrResult_e = a_e -
b_e
+ 1 + preShift - postShift
[
all
...]
env_calc.cpp
1628
SCHAR a_e,
b_e
, c_e;
local
[
all
...]
/external/aac/libFDK/include/
fixpoint_math.h
103
* \param
b_e
exponent of the second input value.
104
* \return non-zero if (a_m*2^a_e) < (b_m*2^
b_e
), 0 otherwise
106
FDK_INLINE INT fIsLessThan(FIXP_DBL a_m, INT a_e, FIXP_DBL b_m, INT
b_e
)
108
if (a_e >
b_e
) {
109
return (b_m >> fMin(a_e-
b_e
, DFRACT_BITS-1) > a_m);
111
return (a_m >> fMin(
b_e
-a_e, DFRACT_BITS-1) < b_m);
115
FDK_INLINE INT fIsLessThan(FIXP_SGL a_m, INT a_e, FIXP_SGL b_m, INT
b_e
)
117
if (a_e >
b_e
) {
118
return (b_m >> fMin(a_e-
b_e
, FRACT_BITS-1) > a_m);
120
return (a_m >> fMin(
b_e
-a_e, FRACT_BITS-1) < b_m)
[
all
...]
Completed in 537 milliseconds