HomeSort by relevance Sort by last modified time
    Searched full:roundf (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /bionic/libm/src/
s_llroundf.c 5 #define roundit roundf
s_lroundf.c 5 #define roundit roundf
s_roundf.c 33 roundf(float x) function
  /bionic/libm/man/
round.3 32 .Nm roundf ,
42 .Fn roundf "float x"
48 .Fn roundf ,
74 .Fn roundf
  /external/skia/samplecode/
SampleRegion.cpp 19 // 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);
  /development/ndk/platforms/android-3/arch-arm/symbols/
libm.so.functions.txt 195 roundf
  /development/ndk/platforms/android-9/arch-mips/symbols/
libm.so.functions.txt 147 roundf
  /development/ndk/platforms/android-9/arch-x86/symbols/
libm.so.functions.txt 163 roundf
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontWx.cpp 92 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning
97 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
100 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
104 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
  /external/llvm/test/Transforms/SimplifyLibCalls/
floor.ll 10 ; DO-SIMPLIFY: call float @roundf(
49 ; --> roundf
win-math.ll 259 ; WIN32-NOT: float @roundf
262 ; WIN64-NOT: float @roundf
265 ; MINGW32: float @roundf
268 ; MINGW64: float @roundf
  /external/webkit/Source/WebCore/css/
CSSCursorImageValue.cpp 95 float x = roundf(cursorElement->x().value(0));
98 float y = roundf(cursorElement->y().value(0));
  /external/webkit/Source/WebCore/platform/chromium/
DragImageChromiumMac.cpp 59 size_t width = roundf(CGImageGetWidth(image) * scale.width());
60 size_t height = roundf(CGImageGetHeight(image) * scale.height());
  /hardware/invensense/mlsdk/platform/include/
mlmath.h 35 #define roundf(x)(((float )((long long)((x)>0?(x)+.5f:(x)-.5f)))) macro
71 #define roundf(x) (((float )((long long)((x)>0?(x)+.5f:(x)-.5f)))) macro
  /frameworks/base/core/jni/android/graphics/
Region.cpp 130 dst->fLeft = (int)::roundf(src.fLeft * scale);
131 dst->fTop = (int)::roundf(src.fTop * scale);
132 dst->fRight = (int)::roundf(src.fRight * scale);
133 dst->fBottom = (int)::roundf(src.fBottom * scale);
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontComplexTextMac.cpp 50 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning
53 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
56 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
  /external/webkit/Source/WebCore/platform/graphics/win/
FontWin.cpp 62 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning
66 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
69 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
  /external/webkit/Source/WebCore/platform/graphics/
SimpleFontData.cpp 101 m_fontMetrics.setLineSpacing(roundf(ascent) + roundf(descent) + roundf(lineGap));
  /prebuilts/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/lib/
libm.so 
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/lib/
libm.so 
  /prebuilts/ndk/android-ndk-r7/platforms/android-3/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/android-ndk-r7/platforms/android-4/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/lib/
libm.so 

Completed in 669 milliseconds

1 2 3 4 5 6 7