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

  /external/deqp/framework/delibs/debase/
deMath.h 117 DE_INLINE float deFloatLog (float a) { return (float)log(a); }
146 DE_INLINE float deFloatAsinh (float a) { return deFloatLog(a + deFloatSqrt(a*a + 1)); }
147 DE_INLINE float deFloatAcosh (float a) { return deFloatLog(a + deFloatSqrt(a*a - 1)); }
148 DE_INLINE float deFloatAtanh (float a) { return 0.5f*deFloatLog((1.0f+a)/(1.0f-a)); }
  /external/deqp/framework/randomshaders/
rsgBuiltinFunctions.hpp 454 inMin = deFloatLog(deFloatMax(outMin, rangeMin));
455 inMax = deFloatLog(deFloatMin(outMax, rangeMax));
491 return deFloatLog(inVal);
  /external/deqp/modules/gles2/functional/
es2fShaderConstExprTests.cpp 93 {"log", "log(${T} (42.12))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatLog(42.12f) },
  /external/deqp/modules/gles3/functional/
es3fShaderConstExprTests.cpp 100 {"log", "log(${T} (42.12))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatLog(42.12f) },
  /external/deqp/framework/common/
tcuVectorUtil.hpp 445 TCU_DECLARE_VECTOR_UNARY_FUNC(log, deFloatLog)

Completed in 146 milliseconds