Searched refs:p_zero (Results 1 – 16 of 16) sorted by relevance
/third_party/jerryscript/tests/jerry/ |
D | math-abs.js | 16 var p_zero = 0.0; variable 17 var m_zero = -p_zero; 22 assert (Math['abs'](p_zero) === p_zero); 23 assert (Math['abs'](m_zero) === p_zero);
|
D | math-round.js | 16 var p_zero = 0.0; variable 17 var m_zero = -p_zero; 22 assert (Math['round'](p_zero) === p_zero);
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | math-trunc.js | 16 var p_zero = 0.0; variable 17 var m_zero = -p_zero; 27 assert (isSameZero (Math['trunc'](p_zero), p_zero)); 31 assert (isSameZero (Math['trunc'](0.5), p_zero));
|
D | math-sign.js | 16 var p_zero = 0.0; variable 17 var m_zero = -p_zero; 20 assert (Math['sign'](p_zero) === p_zero);
|
D | math-tanh.js | 15 var p_zero = 0.0; variable 16 var n_zero = -p_zero; 24 assert(isSameZero(Math.tanh(p_zero), p_zero));
|
D | math-sinh.js | 15 var p_zero = 0.0; variable 16 var n_zero = -p_zero; 24 assert(isSameZero(Math.sinh(p_zero), p_zero));
|
D | math-log10.js | 15 var p_zero = 0.0; variable 16 var n_zero = -p_zero; 22 assert(Math.log10(p_zero) === Number.NEGATIVE_INFINITY); 23 assert(Math.log10(1) === p_zero);
|
D | math-asinh.js | 16 var p_zero = 0.0; variable 17 var m_zero = -p_zero; 25 assert(isSameZero(Math.asinh(p_zero), p_zero));
|
D | math-log2.js | 15 var p_zero = 0.0; variable 16 var n_zero = -p_zero; 22 assert(Math.log2(p_zero) === Number.NEGATIVE_INFINITY); 23 assert(Math.log2(1) === p_zero);
|
D | math-cbrt.js | 15 var p_zero = 0.0; variable 16 var n_zero = -p_zero; 24 assert(isSameZero(Math.cbrt(p_zero), p_zero));
|
D | math-log1p.js | 15 var p_zero = 0.0; variable 16 var n_zero = -p_zero; 27 assert(isSameZero(Math.log1p(p_zero), p_zero));
|
D | math-atanh.js | 16 var p_zero = 0.0; variable 17 var m_zero = -p_zero; 29 assert(isSameZero(Math.atanh(p_zero), p_zero));
|
D | math-expm1.js | 15 var p_zero = 0.0; variable 16 var n_zero = -p_zero; 24 assert(isSameZero(Math.expm1(p_zero), p_zero));
|
D | math-cosh.js | 15 var p_zero = 0.0; variable 16 var n_zero = -p_zero; 19 assert(Math.cosh(p_zero) === 1);
|
D | math-acosh.js | 16 var p_zero = 0.0; variable 17 var m_zero = -p_zero; 27 assert(isSameZero(Math.acosh(1), p_zero));
|
/third_party/boost/libs/test/test/utils-ts/ |
D | class_properties-test.cpp | 66 readonly_property<int> p_zero; in BOOST_AUTO_TEST_CASE() local 106 BOOST_TEST( p_zero == 0 ); in BOOST_AUTO_TEST_CASE()
|