Searched refs:deSign (Results 1 – 5 of 5) sorted by relevance
157 const double rSign = deSign(d); in clampValue()208 return deSign(d) * getMaxValue(); in roundOut()329 return deSign(d); in roundOut()
100 DE_INLINE double deSign (double x) { return deIsNaN(x) ? x : (double)((x > 0.0) - (x < 0.0)… in deSign() function109 DE_INLINE double deTrunc (double a) { return deSign(a) * floor(fabs(a)); } in deTrunc()133 DE_INLINE double deCbrt (double a) { return deSign(a) * dePow(deAbs(a), 1.0 / 3.0); } in deCbrt()
3251 Sign (void) : PreciseFunc1("sign", deSign) {} in Sign()3281 ret |= truncated + deSign(fract); in applyPoint()3519 if (deSign(loFrac) != deSign(hiFrac)) in doApply()3523 if (deSign(loFrac) < 0) in doApply()3525 if (deSign(hiFrac) > 0) in doApply()3534 ret = deSign(loFrac) * Interval(0.5, 1.0 - DBL_EPSILON*0.5); in doApply()
3819 Sign (void) : PreciseFunc1<T> ("sign", deSign) {} in Sign()3852 ret |= truncated + deSign(fract); in applyPoint()4091 if (deSign(loFrac) != deSign(hiFrac)) in doApply()4095 if (deSign(loFrac) < 0) in doApply()4097 if (deSign(hiFrac) > 0) in doApply()4106 ret = deSign(loFrac) * Interval(0.5, 1.0 - DBL_EPSILON*0.5); in doApply()
13926 const double result (deSign(d)); in calc()14105 if (deSign(c1 * c2) < 0.0) in calc()14422 result = deSign(d) * lsxsq.asDouble(); in calc()