OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fixabs_S
(Results
1 - 4
of
4
) sorted by null
/external/aac/libFDK/include/
abs.h
118
inline FIXP_SGL
fixabs_S
(FIXP_SGL x) { return ((x) > (FIXP_SGL)(0)) ? (x) : -(x) ; }
common_fix.h
226
{ return
fixabs_S
(x); }
/external/aac/libFDK/include/mips/
abs_mips.h
100
inline FIXP_SGL
fixabs_S
(FIXP_SGL x) { return ((x) > (FIXP_SGL)(0)) ? (x) : -(x) ; }
/external/aac/libFDK/include/x86/
abs_x86.h
95
inline INT
fixabs_S
(INT x) { return ((x) > (INT)(0)) ? (x) : -(x) ; }
Completed in 941 milliseconds