HomeSort by relevance Sort by last modified time
    Searched refs:deIsNaN (Results 1 - 6 of 6) sorted by null

  /external/deqp/framework/common/
tcuFloatFormat.cpp 103 if (deIsNaN(frac))
160 DE_ASSERT(!deIsNaN(d));
229 if (deIsNaN(x))
tcuInterval.hpp 69 : m_hasNaN (!!deIsNaN(val))
tcuImageCompare.cpp 406 DE_ASSERT(!deIsNaN(x)); // not sane
438 if (deIsNaN(a) && deIsNaN(b))
440 else if (deIsNaN(a) || deIsNaN(b))
    [all...]
  /external/deqp/framework/delibs/debase/
deMath.h 69 DE_INLINE deBool deIsNaN (double x) { return (x != x); }
99 DE_INLINE double deSign (double x) { return deIsNaN(x) ? x : (double)((x > 0.0) - (x < 0.0)); }
  /external/deqp/modules/glshared/
glsStateQueryUtil.cpp 1087 deIsNaN(state.getFloatAccess()))
1159 if (state.getFloatAccess() < deInt32ToFloatRoundToNegInf(minValue) || deIsNaN(state.getFloatAccess()))
1213 if (state.getFloatAccess() > deInt32ToFloatRoundToPosInf(maxValue) || deIsNaN(state.getFloatAccess()))
1348 if (state.getFloatAccess() < minValue || deIsNaN(state.getFloatAccess()))
1402 if (state.getFloatAccess() > maxValue || deIsNaN(state.getFloatAccess()))
    [all...]
glsBuiltinPrecisionTests.cpp     [all...]

Completed in 92 milliseconds