OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tmp_exp
(Results
1 - 2
of
2
) sorted by null
/external/aac/libFDK/include/
fixpoint_math.h
176
INT
tmp_exp
;
local
177
FIXP_DBL tmp_inv = invSqrtNorm2(op, &
tmp_exp
) ;
178
FDK_ASSERT((31-(2*
tmp_exp
+1))>=0) ;
179
return ( fPow2Div2( (FIXP_DBL)tmp_inv ) >> (31-(2*
tmp_exp
+1)) ) ;
/external/aac/libFDK/src/
fixpoint_math.cpp
472
INT
tmp_exp
= 0;
local
473
FIXP_DBL tmp_inv = invSqrtNorm2(op, &
tmp_exp
);
475
FDK_ASSERT(
tmp_exp
> 0) ;
476
return( (FIXP_DBL) ( fMultDiv2( (op<<(
tmp_exp
-1)), tmp_inv ) << 2 ));
Completed in 27 milliseconds