Searched refs:nextafter (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/ui/gfx/animation/
H A Dtween_unittest.cc26 return nextafter(nextafter(d, d + 1), d + 1);
H A Dtween.cc146 return start + static_cast<int>(value * nextafter(delta, 0));
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DColor.cpp101 const double scaleFactor = nextafter(256.0, 0.0);
120 int r = static_cast<int>(nextafter(256, 0) * (colors * (1 - c)));
121 int g = static_cast<int>(nextafter(256, 0) * (colors * (1 - m)));
122 int b = static_cast<int>(nextafter(256, 0) * (colors * (1 - y)));
123 return makeRGBA(r, g, b, static_cast<float>(nextafter(256, 0) * a));
/external/chromium_org/content/browser/device_sensors/
H A Ddata_fetcher_shared_memory_mac.cc73 gamma = nextafter(90, 0);
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c139 double nextafter(double, double);
289 F(lroundl), F(nearbyint), F(nearbyintf), F(nearbyintl), F(nextafter),
438 // CHECK-NOERRNO: declare double @nextafter(double, double) [[NUW]]
/external/chromium_org/ui/chromeos/network/
H A Dnetwork_icon.cc374 int index = animation * nextafter(static_cast<float>(image_count), 0);
395 int index = animation * nextafter(static_cast<float>(kNumFadeImages), 0);
411 int index = animation * nextafter(static_cast<float>(kNumFadeImages), 0);
432 nextafter(static_cast<float>(count - 1), 0);
/external/libcxx/test/numerics/c.math/
H A Dcmath.disabled.cpp1102 static_assert((std::is_same<decltype(std::nextafter((float)0, (float)0)), float>::value), "");
1103 static_assert((std::is_same<decltype(std::nextafter((bool)0, (float)0)), double>::value), "");
1104 static_assert((std::is_same<decltype(std::nextafter((unsigned short)0, (double)0)), double>::value), "");
1105 static_assert((std::is_same<decltype(std::nextafter((int)0, (long double)0)), long double>::value), "");
1106 static_assert((std::is_same<decltype(std::nextafter((float)0, (unsigned int)0)), double>::value), "");
1107 static_assert((std::is_same<decltype(std::nextafter((double)0, (long)0)), double>::value), "");
1108 static_assert((std::is_same<decltype(std::nextafter((long double)0, (unsigned long)0)), long double>::value), "");
1109 static_assert((std::is_same<decltype(std::nextafter((int)0, (long long)0)), double>::value), "");
1110 static_assert((std::is_same<decltype(std::nextafter((int)0, (unsigned long long)0)), double>::value), "");
1111 static_assert((std::is_same<decltype(std::nextafter((doubl
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMathExtras.h135 inline double nextafter(double x, double y) { return _nextafter(x, y); } function
/external/clang/lib/Headers/
H A Dtgmath.h1047 // nextafter
1055 __tg_nextafter(double __x, double __y) {return nextafter(__x, __y);}
1061 #undef nextafter macro
1062 #define nextafter(__x, __y) __tg_nextafter(__tg_promote2((__x), (__y))(__x), \ macro
/external/libcxx/test/depr/depr.c.headers/
H A Dmath_h.disabled.cpp530 static_assert((std::is_same<decltype(nextafter((double)0, (double)0)), double>::value), "");
533 assert(nextafter(0,1) == hexfloat<double>(0x1, 0, -1074));
/external/ltrace/etc/
H A Dlibm.so.conf388 double nextafter(double, double);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumMac.mm306 static const double scaleFactor = nextafter(256.0, 0.0);
1044 trackInfo.value = lround(renderProgress->position() * nextafter(trackInfo.max, 0));
1045 trackInfo.trackInfo.progress.phase = lround(renderProgress->animationProgress() * nextafter(progressAnimationNumFrames, 0));
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp5033 value = negative ? 0 : static_cast<int>(alpha * nextafter(256.0, 0.0));
5214 colorArray[3] = static_cast<int>(std::max(0.0, std::min(1.0, v->fValue)) * nextafter(256.0, 0.0));

Completed in 402 milliseconds