HomeSort by relevance Sort by last modified time
    Searched refs:nextafter (Results 1 - 23 of 23) sorted by null

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestNextafter.rs 26 return nextafter(inX, inY);
31 return nextafter(inX, inY);
36 return nextafter(inX, inY);
41 return nextafter(inX, inY);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_nextafter.c 17 * nextafter(x,y)
29 nextafter(double x, double y) function
80 __weak_reference(nextafter, nexttoward);
81 __weak_reference(nextafter, nexttowardl);
82 __weak_reference(nextafter, nextafterl);
s_fma.c 222 return (nextafter(z, 0));
227 return (nextafter(z, -INFINITY));
230 return (nextafter(z, INFINITY));
  /external/chromium_org/ui/gfx/animation/
tween_unittest.cc 26 return nextafter(nextafter(d, d + 1), d + 1);
tween.cc 146 return start + static_cast<int>(value * nextafter(delta, 0));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Color.cpp 101 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/
data_fetcher_shared_memory_mac.cc 73 gamma = nextafter(90, 0);
  /external/clang/test/CodeGen/
libcall-declarations.c 139 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/
network_icon.cc 374 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);
    [all...]
  /external/libcxx/test/numerics/c.math/
cmath.disabled.cpp     [all...]
  /bionic/tests/
math_test.cpp 1032 TEST(math, nextafter) {
1033 ASSERT_DOUBLE_EQ(0.0, nextafter(0.0, 0.0));
1034 ASSERT_DOUBLE_EQ(4.9406564584124654e-324, nextafter(0.0, 1.0));
1035 ASSERT_DOUBLE_EQ(0.0, nextafter(0.0, -1.0));
    [all...]
  /bionic/libm/include/
math.h 245 double nextafter(double, double);
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 135 inline double nextafter(double x, double y) { return _nextafter(x, y); } function
  /external/clang/lib/Headers/
tgmath.h 1047 // 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/
math_h.disabled.cpp 530 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/
libm.so.conf 388 double nextafter(double, double);
  /development/ndk/platforms/android-13/include/
math.h 255 double nextafter(double, double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-18/include/
math.h 256 double nextafter(double, double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-3/include/
math.h 254 double nextafter(double, double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-9/include/
math.h 254 double nextafter(double, double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-L/include/
math.h 245 double nextafter(double, double) __NDK_FPABI_MATH__;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumMac.mm 306 static const double scaleFactor = nextafter(256.0, 0.0);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSPropertyParser.cpp     [all...]

Completed in 609 milliseconds