Home
last modified time | relevance | path

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

/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DFastMath.java297 double hiPrec[] = new double[2]; in cosh() local
301 exp(x, 0.0, hiPrec); in cosh()
303 double ya = hiPrec[0] + hiPrec[1]; in cosh()
304 double yb = -(ya - hiPrec[0] - hiPrec[1]); in cosh()
364 double hiPrec[] = new double[2]; in sinh() local
365 exp(x, 0.0, hiPrec); in sinh()
367 double ya = hiPrec[0] + hiPrec[1]; in sinh()
368 double yb = -(ya - hiPrec[0] - hiPrec[1]); in sinh()
400 double hiPrec[] = new double[2]; in sinh() local
401 expm1(x, hiPrec); in sinh()
[all …]