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

1 2

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_lroundf.c 9 #define fn lroundf
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Screen.cpp 54 return lroundf(screenRect(m_frame->view()).height() * host->deviceScaleFactor());
64 return lroundf(screenRect(m_frame->view()).width() * host->deviceScaleFactor());
88 return lroundf(screenAvailableRect(m_frame->view()).x() * host->deviceScaleFactor());
98 return lroundf(screenAvailableRect(m_frame->view()).y() * host->deviceScaleFactor());
108 return lroundf(screenAvailableRect(m_frame->view()).height() * host->deviceScaleFactor());
118 return lroundf(screenAvailableRect(m_frame->view()).width() * host->deviceScaleFactor());
LocalDOMWindow.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontMetrics.h 93 return lroundf(m_ascent);
100 return lroundf(m_descent);
109 int lineGap() const { return lroundf(m_lineGap); }
110 int lineSpacing() const { return lroundf(m_lineSpacing); }
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
SimpleFontDataSkia.cpp 132 m_fontMetrics.setLineSpacing(lroundf(ascent) + lroundf(descent) + lroundf(lineGap));
198 const float scaledSize = lroundf(fontDescription.computedSize() * scaleFactor);
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
IntPoint.h 63 m_x = lroundf(static_cast<float>(m_x * sx));
64 m_y = lroundf(static_cast<float>(m_y * sy));
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXInlineTextBox.cpp 101 offsets[i] = lroundf(widthSoFar);
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaValues.cpp 53 deviceWidth = lroundf(deviceWidth * frame->host()->deviceScaleFactor());
62 deviceHeight = lroundf(deviceHeight * frame->host()->deviceScaleFactor());
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
Scrollbar.h 85 virtual int value() const OVERRIDE { return lroundf(m_currentPos); }
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
SimpleFontDataMac.mm 235 m_fontMetrics.setLineSpacing(lroundf(ascent) + lroundf(descent) + lroundf(lineGap));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumSkia.cpp 205 int cancelButtonSize = lroundf(std::min(std::max(minCancelButtonSize, defaultCancelButtonSize * fontScale), maxCancelButtonSize));
261 int magnifierSize = lroundf(std::min(std::max(minSearchFieldResultsDecorationSize, defaultSearchFieldResultsDecorationSize * fontScale),
InlineFlowBox.cpp 77 int snappedX = lroundf(x());
78 int snappedY = lroundf(y());
80 int snappedMaxX = lroundf(x() + width());
81 int snappedMaxY = lroundf(y() + height());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
FontHarfBuzz.cpp 158 x + SkIntToScalar(lroundf(translations[i].x())),
159 y + -SkIntToScalar(-lroundf(currentWidth - translations[i].y())));
  /external/clang/test/CodeGen/
libcall-declarations.c 134 long int lroundf(float);
288 F(lrint), F(lrintf), F(lrintl), F(lround), F(lroundf),
433 // CHECK-NOERRNO: declare i64 @lroundf(float) [[NUW]]
  /bionic/libm/include/
math.h 353 long lroundf(float);
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 99 inline long lroundf(float num) { return static_cast<long>(roundf(num)); } function
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Color.cpp 63 // We use lroundf and 255 instead of nextafterf(256, 0) to match CG's rounding
64 return std::max(0, std::min(static_cast<int>(lroundf(255.0f * f)), 255));
  /external/ltrace/etc/
libm.so.conf 129 long lroundf(float);
  /development/ndk/platforms/android-13/include/
math.h 358 long lroundf(float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-18/include/
math.h 360 long lroundf(float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-3/include/
math.h 356 long lroundf(float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-9/include/
math.h 356 long lroundf(float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-L/include/
math.h 353 long lroundf(float) __NDK_FPABI_MATH__;
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp 508 static_assert((std::is_same<decltype(lroundf(0)), long>::value), "");
  /bionic/tests/
math_test.cpp 853 ASSERT_EQ(1234, lroundf(1234.01f));
    [all...]

Completed in 647 milliseconds

1 2