/external/mesa3d/src/util/ |
D | roundeven_test.c | 38 { nextafterf(0.5, 0.0), 0.0 }, in main() 40 { nextafterf(0.5, 1.0), 1.0 }, in main() 42 { nextafterf(1.5, 1.0), 1.0 }, in main() 44 { nextafterf(1.5, 2.0), 2.0 }, in main() 46 { nextafterf(2.5, 2.0), 2.0 }, in main() 48 { nextafterf(2.5, 3.0), 3.0 }, in main()
|
/external/skqp/src/core/ |
D | SkScaleToSides.h | 55 newMaxRadius = nextafterf(newMaxRadius, 0.0f); in AdjustRadii() 57 newMaxRadius = nextafterf(newMaxRadius, 0.0f); in AdjustRadii()
|
/external/OpenCL-CTS/test_conformance/conversions/ |
D | fplib.cpp | 103 …return nextafterf(as_float(result), as_float(high_float)); // could be simplified with some inc an… in qcom_s64_2_f32() 144 …return nextafterf(as_float(result), as_float(low_float)); // could be simplified with some inc and… in qcom_s64_2_f32() 198 …return nextafterf(as_float(result), as_float(high_float)); // could be simplified with some inc an… in qcom_u64_2_f32()
|
/external/oboe/samples/RhythmGame/third_party/glm/gtc/ |
D | ulp.inl | 71 GLM_FUNC_QUALIFIER float nextafterf(float x, float y) function 180 return detail::nextafterf(x, FLT_MAX); 184 return nextafterf(x, FLT_MAX); 216 return detail::nextafterf(x, FLT_MIN); 220 return nextafterf(x, FLT_MIN);
|
/external/rust/crates/libm/src/math/ |
D | mod.rs | 150 mod nextafterf; module 264 pub use self::nextafterf::nextafterf;
|
D | nextafterf.rs | 2 pub fn nextafterf(x: f32, y: f32) -> f32 { in nextafterf() function
|
/external/tensorflow/tensorflow/core/kernels/ |
D | nextafter_op.h | 38 return nextafterf(x1, x2);
|
/external/skia/src/core/ |
D | SkScaleToSides.h | 51 newMaxRadius = nextafterf(newMaxRadius, 0.0f); in AdjustRadii()
|
/external/libtextclassifier/abseil-cpp/absl/strings/ |
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()
|
/external/webrtc/third_party/abseil-cpp/absl/strings/ |
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()
|
/external/angle/third_party/abseil-cpp/absl/strings/ |
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()
|
/external/abseil-cpp/absl/strings/ |
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()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/ |
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()
|
/external/openscreen/third_party/abseil/src/absl/strings/ |
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()
|
/external/clang/test/CodeGen/ |
D | libcall-declarations.c | 140 float nextafterf(float, float); 290 F(nextafterf), F(nextafterl), F(nexttoward), F(nexttowardf), F(nexttowardl),
|
/external/skqp/src/shaders/gradients/ |
D | Sk4fLinearGradient.cpp | 61 f = SkTMin(f + 1, nextafterf(1, 0)); in pinFx() 72 f = SkTMin(f + 2, nextafterf(2, 0)); in pinFx()
|
/external/skia/src/shaders/gradients/ |
D | Sk4fLinearGradient.cpp | 62 f = std::min(f + 1, nextafterf(1, 0)); in pinFx() 73 f = std::min(f + 2, nextafterf(2, 0)); in pinFx()
|
/external/llvm-project/clang/test/CodeGen/ |
D | libcall-declarations.c | 140 float nextafterf(float, float); 290 F(nextafterf), F(nextafterl), F(nexttoward), F(nexttowardf), F(nexttowardl),
|
D | math-libcalls.c | 399 nextafter(f,f); nextafterf(f,f); nextafterl(f,f); in foo()
|
/external/llvm-project/clang/lib/Headers/openmp_wrappers/ |
D | cmath | 63 return ::nextafterf(__x, __y);
|
/external/catch2/include/internal/ |
D | catch_matchers_floating.cpp | 65 return ::nextafterf(x, y); in nextafter()
|
/external/skqp/src/shaders/ |
D | SkImageShader.cpp | 302 matrix.setTranslateX(nextafterf(matrix.getTranslateX(), in onAppendStages() 306 matrix.setTranslateY(nextafterf(matrix.getTranslateY(), in onAppendStages()
|
/external/llvm-project/clang/test/Headers/Inputs/include/ |
D | math.h | 115 float nextafterf(float __a, float __b);
|
/external/libcxx/include/ |
D | cmath | 261 float nextafterf(float x, float y); 449 using ::nextafterf;
|
/external/catch2/projects/SelfTest/UsageTests/ |
D | Matchers.tests.cpp | 103 return ::nextafterf(from, to); in nextafter()
|