/third_party/jerryscript/tests/jerry/es2015/ |
D | math-atanh.js | 24 assert(isNaN(Math.atanh(NaN))); 25 assert(isNaN(Math.atanh(2))); 26 assert(isNaN(Math.atanh(44))); 27 assert(isNaN(Math.atanh(-2))); 28 assert(isNaN(Math.atanh(-13))); 29 assert(isSameZero(Math.atanh(p_zero), p_zero)); 30 assert(isSameZero(Math.atanh(m_zero), m_zero)); 31 assert(Math.atanh(-1) === Number.NEGATIVE_INFINITY); 32 assert(Math.atanh(1) === Number.POSITIVE_INFINITY);
|
/third_party/skia/resources/sksl/intrinsics/ |
D | Atanh.sksl | 6 return (atanh(inputVal.x) == expected.x && 7 atanh(inputVal.xy) == expected.xy && 8 atanh(inputVal.xyz) == expected.xyz && 9 atanh(inputVal.xyzw) == expected.xyzw && 10 atanh(constVal1.x) == expected.x && 11 atanh(constVal1.xy) == expected.xy && 12 atanh(constVal1.xyz) == expected.xyz && 13 atanh(constVal1.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
/third_party/python/Lib/test/ |
D | cmath_testcases.txt | 914 -- atanh: Inverse hyperbolic tangent -- 919 -- atanh0000 atanh 0.0 0.0 -> 0.0 0.0 920 -- atanh0001 atanh 0.0 -0.0 -> 0.0 -0.0 921 -- atanh0002 atanh -0.0 0.0 -> -0.0 0.0 922 -- atanh0003 atanh -0.0 -0.0 -> -0.0 -0.0 925 atanh0010 atanh -9.8813129168249309e-324 0.0 -> -9.8813129168249309e-324 0.0 926 atanh0011 atanh -9.8813129168249309e-324 -0.0 -> -9.8813129168249309e-324 -0.0 927 atanh0012 atanh -1e-305 0.0 -> -1e-305 0.0 928 atanh0013 atanh -1e-305 -0.0 -> -1e-305 -0.0 929 atanh0014 atanh -1e-150 0.0 -> -1e-150 0.0 [all …]
|
/third_party/skia/tests/sksl/intrinsics/ |
D | Atanh.glsl | 8 …return ((((((atanh(inputVal.x) == expected.x && atanh(inputVal.xy) == expected.xy) && atanh(inputV…
|
D | Atanh.metal | 18 …atanh(_uniforms.inputVal.x) == _uniforms.expected.x && all(atanh(_uniforms.inputVal.xy) == _unifor…
|
/third_party/jerryscript/tests/unit-libm/ |
D | test-libm.inc.h | 224 check_double ("atanh (0.0)", atanh (0.0), 0.00000000000000000000E+00); 225 check_double ("atanh (-0.0)", atanh (-0.0), -0.00000000000000000000E+00); 226 check_double ("atanh (1.0)", atanh (1.0), INF); 227 check_double ("atanh (-1.0)", atanh (-1.0), -INF); 228 check_double ("atanh (INFINITY)", atanh (INFINITY), -NAN); 229 check_double ("atanh (-INFINITY)", atanh (-INFINITY), -NAN); 230 check_double ("atanh (NAN)", atanh (NAN), NAN); 231 check_double ("atanh (7.08e+02)", atanh (7.08e+02), -NAN); 232 check_double ("atanh (7.10e+02)", atanh (7.10e+02), -NAN); 233 check_double ("atanh (-7.40e+02)", atanh (-7.40e+02), -NAN); [all …]
|
/third_party/jerryscript/tools/unit-tests/ |
D | gen-test-libm.c | 272 GEN_DBL_TEST (atanh (0.0)); in main() 273 GEN_DBL_TEST (atanh (-0.0)); in main() 274 GEN_DBL_TEST (atanh (1.0)); in main() 275 GEN_DBL_TEST (atanh (-1.0)); in main() 276 GEN_DBL_TEST (atanh (INFINITY)); in main() 277 GEN_DBL_TEST (atanh (-INFINITY)); in main() 278 GEN_DBL_TEST (atanh (NAN)); in main() 279 GEN_DBL_TEST (atanh (7.08e+02)); in main() 280 GEN_DBL_TEST (atanh (7.10e+02)); in main() 281 GEN_DBL_TEST (atanh (-7.40e+02)); in main() [all …]
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
D | func_trigonometric.inl | 175 // atanh 177 using std::atanh; 180 GLM_FUNC_QUALIFIER genType atanh(genType x) function 182 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'atanh' only accept floating-point inp… 191 GLM_FUNC_QUALIFIER vecType<T, P> atanh(vecType<T, P> const & v) function 193 return detail::functor1<T, T, P, vecType>::call(atanh, v);
|
/third_party/vk-gl-cts/android/cts/master/src/ |
D | gles3-test-issues.txt | 12 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.scalar 13 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec2 14 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec3 15 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec4 91 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.highp_*
|
/third_party/rust/crates/num-traits/src/ |
D | real.rs | 779 fn atanh(self) -> Self; in atanh() method 832 Float::atanh(self) -> Self;
|
D | float.rs | 1844 fn atanh(self) -> Self; in atanh() method 1970 Self::atanh(self) -> Self; 2106 libm::atanhf as atanh(self) -> Self; 2154 libm::atanh as atanh(self) -> Self;
|
/third_party/musl/libc-test/src/api/ |
D | tgmath.c | 36 #ifdef atanh in f() 37 {double r = atanh(x);} in f() 39 #error no atanh(x) in f()
|
/third_party/vk-gl-cts/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.6.x/src/ |
D | gles3-test-issues.txt | 12 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.scalar 13 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec2 14 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec3 15 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec4 91 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.highp_*
|
/third_party/vk-gl-cts/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.5.x/src/ |
D | gles3-test-issues.txt | 12 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.scalar 13 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec2 14 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec3 15 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec4 91 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.highp_*
|
/third_party/vk-gl-cts/external/openglcts/data/mustpass/gles/aosp_mustpass/master/src/ |
D | gles3-test-issues.txt | 12 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.scalar 13 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec2 14 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec3 15 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec4 91 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.highp_*
|
/third_party/vk-gl-cts/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.4.x/src/ |
D | gles3-test-issues.txt | 12 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.scalar 13 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec2 14 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec3 15 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec4 91 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.highp_*
|
/third_party/vk-gl-cts/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.3.x/src/ |
D | gles3-test-issues.txt | 12 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.scalar 13 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec2 14 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec3 15 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec4 91 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.highp_*
|
/third_party/python/Modules/ |
D | _math.h | 20 # define m_atanh atanh
|
/third_party/musl/src/math/ |
D | atanh.c | 4 double atanh(double x) in atanh() function
|
D | atanhl.c | 6 return atanh(x); in atanhl()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | atanh.c | 4 double atanh(double x) in atanh() function
|
D | atanhl.c | 6 return atanh(x); in atanhl()
|
/third_party/jerryscript/jerry-libm/include/ |
D | math.h | 67 double atanh (double);
|
/third_party/typescript/tests/baselines/reference/ |
D | doYouNeedToChangeYourTargetLibraryES2015.js | 52 const testMathAtanh = Math.atanh(0); 150 var testMathAtanh = Math.atanh(0);
|
/third_party/jerryscript/jerry-libm/ |
D | atanh.c | 53 atanh (double x) in atanh() function
|