HomeSort by relevance Sort by last modified time
    Searched refs:floorf (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_roundf.c 41 t = floorf(x);
46 t = floorf(-x);
s_floorf.c 20 * floorf(x)
25 * Inexact flag raised if x not equal to floorf(x).
34 floorf(float x) function
e_lgammaf_r.c 107 z = floorf(y);
110 y = (float)2.0*(y - floorf(y)); /* y = |x| mod 2.0 */
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
IntRectCG.cpp 40 int l = static_cast<int>(floorf(rect.origin.x));
41 int t = static_cast<int>(floorf(rect.origin.y));
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/mac/
IntRectMac.mm 40 int l = static_cast<int>(floorf(rect.origin.x));
41 int t = static_cast<int>(floorf(rect.origin.y));
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatSize.h 184 return IntSize(clampToInteger(floorf(p.width())), clampToInteger(floorf(p.height())));
194 return IntPoint(clampToInteger(floorf(p.width())), clampToInteger(floorf(p.height())));
FloatPoint.h 223 return IntPoint(clampToInteger(floorf(p.x())), clampToInteger(floorf(p.y())));
233 return IntSize(clampToInteger(floorf(p.x())), clampToInteger(floorf(p.y())));
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
FontComplexTextMac.cpp 64 return FloatRect(floorf(point.x() + totalWidth - afterWidth), point.y(), roundf(point.x() + totalWidth - beforeWidth) - floorf(point.x() + totalWidth - afterWidth), h);
67 return FloatRect(floorf(point.x() + beforeWidth), point.y(), roundf(point.x() + afterWidth) - floorf(point.x() + beforeWidth), h);
136 glyphBounds->setTop(floorf(-controller.minGlyphBoundingBoxY()));
138 glyphBounds->setLeft(std::max<int>(0, floorf(-controller.minGlyphBoundingBoxX())));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GradientGeneratedImage.cpp 52 int firstColumn = static_cast<int>(floorf((((destRect.x() - phase.x()) / scale.width()) - srcRect.x()) / srcRect.width()));
53 int firstRow = static_cast<int>(floorf((((destRect.y() - phase.y()) / scale.height()) - srcRect.y()) / srcRect.height()));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEGaussianBlur.cpp 89 int size = std::max<unsigned>(2, static_cast<unsigned>(floorf(std.x() * gaussianKernelFactor() + 0.5f)));
94 int size = std::max<unsigned>(2, static_cast<unsigned>(floorf(std.y() * gaussianKernelFactor() + 0.5f)));
FETurbulence.cpp 278 float lowFrequency = floorf(tileWidth * baseFrequencyX) / tileWidth;
287 float lowFrequency = floorf(tileHeight * baseFrequencyY) / tileHeight;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
SkiaUtils.cpp 162 int x = static_cast<int>(floorf(0.5f + point.x() * scale));
163 int y = static_cast<int>(floorf(0.5f + point.y() * scale));
191 return fabs(value - floorf(value)) < std::numeric_limits<float>::epsilon();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_arit.c 191 x -= floorf(x);
240 {"floor", &lp_build_floor, &floorf, round_values, Elements(round_values), 24.0 },
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_arit.c 191 x -= floorf(x);
240 {"floor", &lp_build_floor, &floorf, round_values, Elements(round_values), 24.0 },
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h 127 #define floorf(f) ((float) floor(f)) macro
149 static inline float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); }
255 *** FLOORF: floor of float
265 #define FLOORF(x) floorf(x)
273 #define FLOORF(x) ((GLfloat) floor(x))
  /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/chromium_org/third_party/WebKit/Source/core/frame/
LocalFrame.cpp 263 resultSize.setWidth(floorf(expectedSize.width()));
264 resultSize.setHeight(floorf(resultSize.width() * ratio));
268 resultSize.setHeight(floorf(expectedSize.height()));
269 resultSize.setWidth(floorf(resultSize.height() * ratio));
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontDescription.cpp 152 return floorf(size * FontCacheKey::precisionMultiplier()) / FontCacheKey::precisionMultiplier();
  /external/chromium_org/third_party/skia/include/core/
SkFloatingPoint.h 74 #define sk_float_floor(x) floorf(x)
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEConvolveMatrixElement.cpp 211 targetXValue = static_cast<int>(floorf(orderXValue / 2));
216 targetYValue = static_cast<int>(floorf(orderYValue / 2));
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 261 /// float floorf(float x);
262 floorf, enumerator in enum:llvm::LibFunc::Func
737 case LibFunc::floor: case LibFunc::floorf: case LibFunc::floorl:
  /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/platform/fonts/harfbuzz/
FontHarfBuzz.cpp 269 glyphBounds->setTop(floorf(-shaper.glyphBoundingBox().top()));
271 glyphBounds->setLeft(std::max<int>(0, floorf(-shaper.glyphBoundingBox().left())));

Completed in 441 milliseconds

1 2 3 4