OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lroundf
(Results
26 - 50
of
92
) sorted by null
1
2
3
4
/external/webkit/Source/WebCore/platform/graphics/
Color.cpp
63
// We use
lroundf
and 255 instead of nextafterf(256, 0) to match CG's rounding
64
return max(0, min(static_cast<int>(
lroundf
(255.0f * f)), 255));
/external/webkit/Source/WebCore/rendering/
RenderThemeWin.cpp
898
int cancelButtonSize =
lroundf
(min(max(minCancelButtonSize, defaultCancelButtonSize * fontScale), maxCancelButtonSize));
[
all
...]
RenderImage.cpp
420
int mapX =
lroundf
((x - tx - this->x() - contentBox.x()) / zoom);
421
int mapY =
lroundf
((y - ty - this->y() - contentBox.y()) / zoom);
InlineFlowBox.cpp
72
int snappedX =
lroundf
(x());
73
int snappedY =
lroundf
(y());
75
int snappedMaxX =
lroundf
(x() + width());
76
int snappedMaxY =
lroundf
(y() + height());
[
all
...]
/external/webkit/Source/JavaScriptCore/wtf/
MathExtras.h
129
inline long
lroundf
(float num) { return static_cast<long>(roundf(num)); }
function
/external/webkit/Source/WebCore/platform/graphics/win/
QTMovie.cpp
380
QTRestartAtTimeRecord restart = {
lroundf
(time * scale) , 0 };
383
SetMovieTimeValue(m_private->m_movie, TimeValue(
lroundf
(time * scale)));
FontCGWin.cpp
157
gdiAdvances.append(
lroundf
(glyphBuffer.advanceAt(from + i)));
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1_impl/
cmath
99
#undef
lroundf
240
using ::
lroundf
;
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
cmath
99
#undef
lroundf
240
using ::
lroundf
;
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
cmath
99
#undef
lroundf
240
using ::
lroundf
;
/bionic/libm/
Makefile-orig
141
lround.3
lroundf
.3 lround.3 lroundl.3
/bionic/libm/include/
math.h
358
long
lroundf
(float);
/development/ndk/platforms/android-3/include/
math.h
356
long
lroundf
(float);
/development/ndk/platforms/android-9/include/
math.h
356
long
lroundf
(float);
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
math.h
356
long
lroundf
(float);
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
math.h
356
long
lroundf
(float);
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
math.h
356
long
lroundf
(float);
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
math.h
356
long
lroundf
(float);
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
math.h
356
long
lroundf
(float);
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
math.h
356
long
lroundf
(float);
/prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/
math.h
356
long
lroundf
(float);
/prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/
math.h
356
long
lroundf
(float);
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/
math.h
356
long
lroundf
(float);
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/
math.h
356
long
lroundf
(float);
/prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/
math.h
356
long
lroundf
(float);
Completed in 1751 milliseconds
1
2
3
4