Searched refs:isSameZero (Results 1 – 9 of 9) sorted by relevance
/third_party/jerryscript/tests/jerry/es2015/ |
D | math-trunc.js | 21 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));
|
D | math-tanh.js | 18 function isSameZero (x, y) function 24 assert(isSameZero(Math.tanh(p_zero), p_zero)); 25 assert(isSameZero(Math.tanh(n_zero), n_zero));
|
D | math-sinh.js | 18 function isSameZero (x, y) function 24 assert(isSameZero(Math.sinh(p_zero), p_zero)); 25 assert(isSameZero(Math.sinh(n_zero), n_zero));
|
D | math-asinh.js | 19 function isSameZero (x, y) function 25 assert(isSameZero(Math.asinh(p_zero), p_zero)); 26 assert(isSameZero(Math.asinh(m_zero), m_zero));
|
D | math-cbrt.js | 18 function isSameZero (x, y) function 24 assert(isSameZero(Math.cbrt(p_zero), p_zero)); 25 assert(isSameZero(Math.cbrt(n_zero), n_zero));
|
D | math-log1p.js | 18 function isSameZero (x, y) function 26 assert(isSameZero(Math.log1p(n_zero), n_zero)); 27 assert(isSameZero(Math.log1p(p_zero), p_zero));
|
D | math-atanh.js | 19 function isSameZero (x, y) function 29 assert(isSameZero(Math.atanh(p_zero), p_zero)); 30 assert(isSameZero(Math.atanh(m_zero), m_zero));
|
D | math-expm1.js | 18 function isSameZero (x, y) function 24 assert(isSameZero(Math.expm1(p_zero), p_zero)); 25 assert(isSameZero(Math.expm1(n_zero), n_zero));
|
D | math-acosh.js | 19 function isSameZero (x, y) function 27 assert(isSameZero(Math.acosh(1), p_zero));
|