Searched defs:ceilf (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_math.h78 static INLINE float ceilf( float f ) function
137 return x >= 0.0f ? floorf(x + 0.5f) : ceilf(x - 0.5f);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dimports.h122 #define ceilf(f) ((float) ceil(f)) macro
149 static inline float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); }
264 #define CEILF(x) ceilf(x)
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_math.h78 static INLINE float ceilf( float f ) function
134 return x >= 0.0f ? floorf(x + 0.5f) : ceilf(x - 0.5f);
/external/mesa3d/src/mesa/main/
H A Dimports.h122 #define ceilf(f) ((float) ceil(f)) macro
148 static inline float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); }
262 #define CEILF(x) ceilf(x)
/external/bison/darwin-lib/
H A Dmath.h694 # undef ceilf
695 # define ceilf rpl_ceilf
697 _GL_FUNCDECL_RPL (ceilf, float, (float x));
698 _GL_CXXALIAS_RPL (ceilf, float, (float x));
701 # undef ceilf
702 _GL_FUNCDECL_SYS (ceilf, float, (float x));
704 _GL_CXXALIAS_SYS (ceilf, float, (float x));
706 _GL_CXXALIASWARN (ceilf);
708 # undef ceilf macro
710 _GL_WARN_ON_USE (ceilf, "ceil
[all...]
/external/bison/lib/
H A Dmath.in.h382 # undef ceilf macro
383 # define ceilf rpl_ceilf macro
385 _GL_FUNCDECL_RPL (ceilf, float, (float x));
386 _GL_CXXALIAS_RPL (ceilf, float, (float x));
389 # undef ceilf macro
390 _GL_FUNCDECL_SYS (ceilf, float, (float x));
392 _GL_CXXALIAS_SYS (ceilf, float, (float x));
394 _GL_CXXALIASWARN (ceilf); variable
396 # undef ceilf macro
398 _GL_WARN_ON_USE (ceilf, "ceil
[all...]
/external/bison/linux-lib/
H A Dmath.h694 # undef ceilf
695 # define ceilf rpl_ceilf
697 _GL_FUNCDECL_RPL (ceilf, float, (float x));
698 _GL_CXXALIAS_RPL (ceilf, float, (float x));
701 # undef ceilf
702 _GL_FUNCDECL_SYS (ceilf, float, (float x));
704 _GL_CXXALIAS_SYS (ceilf, float, (float x));
706 _GL_CXXALIASWARN (ceilf);
708 # undef ceilf macro
710 _GL_WARN_ON_USE (ceilf, "ceil
[all...]
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h169 /// float ceilf(float x);
170 ceilf, enumerator in enum:llvm::LibFunc::Func
739 case LibFunc::ceil: case LibFunc::ceilf: case LibFunc::ceill:

Completed in 297 milliseconds