Home
last modified time | relevance | path

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

/external/deqp/framework/delibs/debase/
DdeMath.h97 DE_INLINE double deSign (double x) { return deIsNaN(x) ? x : (double)((x > 0.0) - (x < 0.0)… in deSign() function
106 DE_INLINE double deTrunc (double a) { return deSign(a) * floor(fabs(a)); } in deTrunc()
130 DE_INLINE double deCbrt (double a) { return deSign(a) * dePow(deAbs(a), 1.0 / 3.0); } in deCbrt()
/external/deqp/framework/common/
DtcuFloatFormat.cpp157 const double rSign = deSign(d); in clampValue()
208 return deSign(d) * getMaxValue(); in roundOut()
/external/deqp/modules/glshared/
DglsBuiltinPrecisionTests.cpp3061 Sign (void) : PreciseFunc1("sign", deSign) {} in Sign()
3091 ret |= truncated + deSign(fract); in applyPoint()
3235 if (deSign(loFrac) != deSign(hiFrac)) in doApply()
3239 if (deSign(loFrac) < 0) in doApply()
3241 if (deSign(hiFrac) > 0) in doApply()
3250 ret = deSign(loFrac) * Interval(0.5, 1.0 - DBL_EPSILON*0.5); in doApply()