HomeSort by relevance Sort by last modified time
    Searched refs:floorf (Results 26 - 50 of 177) sorted by null

12 3 4 5 6 7 8

  /external/mesa3d/src/mesa/main/
imports.h 127 #define floorf(f) ((float) floor(f)) macro
148 static inline float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); }
253 *** FLOORF: floor of float
263 #define FLOORF(x) floorf(x)
271 #define FLOORF(x) ((GLfloat) floor(x))
  /external/skia/src/core/
SkPoint.cpp 242 return (int)floorf(sqrtf(fx*fx + fy*fy) + 0.5f);
441 SkFixed xx = (int)floorf(fx * 65536 + 0.5f);
442 SkFixed yy = (int)floorf(fy * 65536 + 0.5f);
  /external/chromium_org/cc/output/
filter_operations.cc 52 float d = floorf(std_deviation * 3.f * sqrt(8.f * atan(1.f)) / 4.f + 0.5f);
  /external/chromium_org/third_party/WebKit/Source/core/page/
Frame.cpp 264 resultSize.setWidth(floorf(expectedSize.width()));
265 resultSize.setHeight(floorf(resultSize.width() * ratio));
269 resultSize.setHeight(floorf(expectedSize.height()));
270 resultSize.setWidth(floorf(resultSize.height() * ratio));
  /external/valgrind/main/memcheck/tests/
vcpu_fnfns.c 27 printf("floorF(%+20.4e) = %+20.4e\n", (double)f, (double)floorf(f));
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_lgammaf_r.c 107 z = floorf(y);
110 y = (float)2.0*(y - floorf(y)); /* y = |x| mod 2.0 */
  /external/chromium_org/remoting/client/plugin/
pepper_view.cc 149 floorf(pp_clip.x() * dips_to_view_scale_),
150 floorf(pp_clip.y() * dips_to_view_scale_),
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEMorphology.cpp 223 int radiusX = static_cast<int>(floorf(filter->applyHorizontalScale(m_radiusX)));
224 int radiusY = static_cast<int>(floorf(filter->applyVerticalScale(m_radiusY)));
FEGaussianBlur.cpp 240 kernelSizeX = max<unsigned>(2, static_cast<unsigned>(floorf(stdX * gaussianKernelFactor() + 0.5f)));
243 kernelSizeY = max<unsigned>(2, static_cast<unsigned>(floorf(stdY * gaussianKernelFactor() + 0.5f)));
FETurbulence.cpp 280 float lowFrequency = floorf(tileWidth * baseFrequencyX) / tileWidth;
289 float lowFrequency = floorf(tileHeight * baseFrequencyY) / tileHeight;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEConvolveMatrixElement.cpp 311 targetXValue = static_cast<int>(floorf(orderXValue / 2));
316 targetYValue = static_cast<int>(floorf(orderYValue / 2));
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 238 /// float floorf(float x);
239 floorf, enumerator in enum:llvm::LibFunc::Func
694 case LibFunc::floor: case LibFunc::floorf: case LibFunc::floorl:
  /frameworks/base/libs/hwui/
OpenGLRenderer.cpp     [all...]
  /external/bison/darwin-lib/
math.h 1055 # undef floorf macro
    [all...]
  /external/bison/lib/
math.in.h 729 # undef floorf macro
730 # define floorf rpl_floorf macro
732 _GL_FUNCDECL_RPL (floorf, float, (float x));
733 _GL_CXXALIAS_RPL (floorf, float, (float x));
736 # undef floorf macro
737 _GL_FUNCDECL_SYS (floorf, float, (float x));
739 _GL_CXXALIAS_SYS (floorf, float, (float x));
741 _GL_CXXALIASWARN (floorf); variable
743 # undef floorf macro
745 _GL_WARN_ON_USE (floorf, "floorf is unportable -
    [all...]
  /external/bison/linux-lib/
math.h 1055 # undef floorf macro
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCanvasElement.cpp 423 float x = floorf(deviceRect.x());
424 float y = floorf(deviceRect.y());
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_math.h 83 static INLINE float floorf( float f ) function
134 return x >= 0.0f ? floorf(x + 0.5f) : ceilf(x - 0.5f);
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 83 static INLINE float floorf( float f ) function
134 return x >= 0.0f ? floorf(x + 0.5f) : ceilf(x - 0.5f);
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_utils.h 160 cropI.right = int(floorf(cropF.right));
161 cropI.bottom = int(floorf(cropF.bottom));
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
gles3jni.cpp 166 (int)floorf(NCELLS_MAJOR * aspect[1])
  /development/ndk/platforms/android-3/include/
math.h 338 float floorf(float);
  /development/ndk/platforms/android-9/include/
math.h 338 float floorf(float);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FontFastPath.cpp 563 return FloatRect(floorf(point.x() + totalWidth - afterWidth), point.y(), roundf(point.x() + totalWidth - beforeWidth) - floorf(point.x() + totalWidth - afterWidth), h);
566 return FloatRect(floorf(point.x() + beforeWidth), point.y(), roundf(point.x() + afterWidth) - floorf(point.x() + beforeWidth), h);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
math.h 338 float floorf(float);

Completed in 1354 milliseconds

12 3 4 5 6 7 8