Home
last modified time | relevance | path

Searched refs:isSameZero (Results 1 – 9 of 9) sorted by relevance

/third_party/jerryscript/tests/jerry/es2015/
Dmath-trunc.js21 function isSameZero (x, y) function
27 assert (isSameZero (Math['trunc'](p_zero), p_zero));
28 assert (isSameZero (Math['trunc'](m_zero), m_zero));
31 assert (isSameZero (Math['trunc'](0.5), p_zero));
32 assert (isSameZero (Math['trunc'](-0.5), m_zero));
Dmath-tanh.js18 function isSameZero (x, y) function
24 assert(isSameZero(Math.tanh(p_zero), p_zero));
25 assert(isSameZero(Math.tanh(n_zero), n_zero));
Dmath-sinh.js18 function isSameZero (x, y) function
24 assert(isSameZero(Math.sinh(p_zero), p_zero));
25 assert(isSameZero(Math.sinh(n_zero), n_zero));
Dmath-asinh.js19 function isSameZero (x, y) function
25 assert(isSameZero(Math.asinh(p_zero), p_zero));
26 assert(isSameZero(Math.asinh(m_zero), m_zero));
Dmath-cbrt.js18 function isSameZero (x, y) function
24 assert(isSameZero(Math.cbrt(p_zero), p_zero));
25 assert(isSameZero(Math.cbrt(n_zero), n_zero));
Dmath-log1p.js18 function isSameZero (x, y) function
26 assert(isSameZero(Math.log1p(n_zero), n_zero));
27 assert(isSameZero(Math.log1p(p_zero), p_zero));
Dmath-atanh.js19 function isSameZero (x, y) function
29 assert(isSameZero(Math.atanh(p_zero), p_zero));
30 assert(isSameZero(Math.atanh(m_zero), m_zero));
Dmath-expm1.js18 function isSameZero (x, y) function
24 assert(isSameZero(Math.expm1(p_zero), p_zero));
25 assert(isSameZero(Math.expm1(n_zero), n_zero));
Dmath-acosh.js19 function isSameZero (x, y) function
27 assert(isSameZero(Math.acosh(1), p_zero));