/third_party/mesa3d/src/util/tests/ |
H A D | roundeven_test.cpp | 40 { nextafterf(0.5, 0.0), 0.0 }, in TEST() 42 { nextafterf(0.5, 1.0), 1.0 }, in TEST() 44 { nextafterf(1.5, 1.0), 1.0 }, in TEST() 46 { nextafterf(1.5, 2.0), 2.0 }, in TEST() 48 { nextafterf(2.5, 2.0), 2.0 }, in TEST() 50 { nextafterf(2.5, 3.0), 3.0 }, in TEST()
|
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_nextafter_test.cpp | 44 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the nextafterf interface. 51 bool testResult = FloatUlpCmp(g_nextafterfData[i].expected, nextafterf(g_nextafterfData[i].input1, in HWTEST_F() 64 EXPECT_FLOAT_EQ(0.0f, nextafterf(0.0f, 0.0f)); in HWTEST_F() 65 EXPECT_FLOAT_EQ(1.4012985e-45f, nextafterf(0.0f, 1.0f)); in HWTEST_F() 66 EXPECT_FLOAT_EQ(-1.4012985e-45f, nextafterf(0.0f, -1.0f)); in HWTEST_F()
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | prev.c | 17 f = nextafterf(f, -INFINITY); in main()
|
H A D | next.c | 17 f = nextafterf(f, INFINITY); in main()
|
H A D | mplibm.c | 172 int mpnextafterf(struct t *t) { return mpf2(t, nextafterf); } in mpnextafterf()
|
H A D | mp.c | 92 // dn = nextafterf(d, INFINITY); in adjust() 93 // dp = nextafterf(d, -INFINITY); in adjust() 533 t->y = nextafterf(t->x, t->x2); in mpnextafterf()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | nextafterf.c | 3 float nextafterf(float x, float y) in nextafterf() function
|
/third_party/musl/src/math/ |
H A D | nextafterf.c | 3 float nextafterf(float x, float y) in nextafterf() function
|
/third_party/skia/src/core/ |
H A D | SkScaleToSides.h | 51 newMaxRadius = nextafterf(newMaxRadius, 0.0f); in AdjustRadii()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | charconv_test.cc | 391 const float first_subnormal = nextafterf(zero, 1.0); in TEST() 392 const float second_subnormal = nextafterf(first_subnormal, 1.0); in TEST() 395 const float last_subnormal = nextafterf(first_normal, 0.0); in TEST() 396 const float second_normal = nextafterf(first_normal, 1.0); in TEST() 399 const float penultimate_normal = nextafterf(last_normal, 0.0); in TEST()
|
H A D | numbers_test.cc | 932 f = nextafterf(f, std::numeric_limits<float>::max()); in ExhaustiveFloat()
|
/third_party/musl/libc-test/src/math/ |
H A D | nextafterf.c | 6 #include "sanity/nextafterf.h" 7 #include "special/nextafterf.h" 26 y = nextafterf(p->x, p->x2); in main() 30 printf("%s:%d: bad fp exception: %s nextafterf(%a,%a)=%a, want %s", in main() 37 printf("%s:%d: %s nextafterf(%a,%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
|
/third_party/skia/src/shaders/gradients/ |
H A D | Sk4fLinearGradient.cpp | 62 f = std::min(f + 1, nextafterf(1, 0)); in pinFx() 73 f = std::min(f + 2, nextafterf(2, 0));
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 300 float nextafterf(float, float);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | math.h | 300 float nextafterf(float, float);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | math.h | 300 float nextafterf(float, float);
|
/third_party/musl/include/ |
H A D | math.h | 300 float nextafterf(float, float);
|
/third_party/musl/libc-test/src/api/ |
H A D | math.c | 183 {float(*p)(float,float) = nextafterf;} in f()
|
/third_party/skia/src/shaders/ |
H A D | SkImageShader.cpp | 368 matrix.setTranslateX(nextafterf(matrix.getTranslateX(), in tweak_inv_matrix() 372 matrix.setTranslateY(nextafterf(matrix.getTranslateY(), in tweak_inv_matrix()
|
/third_party/skia/modules/skottie/src/ |
H A D | Skottie.cpp | 512 const auto kLastValidFrame = std::nextafterf(fOutPoint, fInPoint), in seekFrame()
|
/third_party/optimized-routines/math/test/ |
H A D | ulp.c | 598 #define nextafter_f nextafterf
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_arit.c | 2371 half = lp_build_const_vec(bld->gallivm, type, nextafterf(0.5, 0.0)); in lp_build_iround()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fShaderOperatorTests.cpp | 418 const float maxRepresentableAsFloat = floorf(nextafterf(maxAsFloat, 0)); in getGLSLUintMaxAsFloat()
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 11527 return ::nextafterf(x, y);
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 33987 extern float nextafterf (float __x, float __y) throw () __attribute__ ((__const__)); extern float __nextafterf (float __x, float __y) throw () __attribute__ ((__const__)); 35314 using ::nextafterf; [all...] |