Searched defs:roundf (Results 1 - 4 of 4) sorted by relevance

/external/skia/samplecode/
H A DSampleAAClip2.cpp20 // windows doesn't have roundf
21 inline float roundf(float x) { return (x-floor(x))>0.5 ? ceil(x) : floor(x); } function
H A DSampleRegion.cpp19 // windows doesn't have roundf
20 inline float roundf(float x) { return (x-floor(x))>0.5 ? ceil(x) : floor(x); } function
63 dst->fLeft = (int)::roundf(src.fLeft * scale);
64 dst->fTop = (int)::roundf(src.fTop * scale);
65 dst->fRight = (int)::roundf(src.fRight * scale);
66 dst->fBottom = (int)::roundf(src.fBottom * scale);
/external/webkit/Source/JavaScriptCore/wtf/
H A DMathExtras.h119 static float roundf(float num) function
127 inline long long llroundf(float num) { return static_cast<long long>(roundf(num)); }
129 inline long lroundf(float num) { return static_cast<long>(roundf(num)); }
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h255 /// float roundf(float x);
256 roundf, enumerator in enum:llvm::LibFunc::Func

Completed in 177 milliseconds