Home
last modified time | relevance | path

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

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