Home
last modified time | relevance | path

Searched refs:ceilInt (Results 1 – 1 of 1) sorted by relevance

/external/aac/libFDK/src/
Dfixpoint_math.cpp782 INT ceilInt = (INT)(f_inp >> sx); in fixp_ceilToInt() local
785 ceilInt++; // increment only, if there is at least one set mantissaBit in fixp_ceilToInt()
789 return ceilInt; in fixp_ceilToInt()
795 INT ceilInt = fixp_ceilToInt(f_inp, sf); in fixp_ceil() local
797 ceilInt = ceilInt in fixp_ceil()
800 if ((f_inp > FL2FXCONST_DBL(0.0f)) && (ceilInt & mask)) { in fixp_ceil()
801 --ceilInt; in fixp_ceil()
803 FIXP_DBL f_ceil = (FIXP_DBL)ceilInt; in fixp_ceil()