Searched refs:deFloatLog (Results 1 – 5 of 5) sorted by relevance
/external/deqp/framework/delibs/debase/ |
D | deMath.h | 119 DE_INLINE float deFloatLog (float a) { return (float)log(a); } in deFloatLog() function 148 DE_INLINE float deFloatAsinh (float a) { return deFloatLog(a + deFloatSqrt(a*a + 1)); } in deFloatAsinh() 149 DE_INLINE float deFloatAcosh (float a) { return deFloatLog(a + deFloatSqrt(a*a - 1)); } in deFloatAcosh() 150 DE_INLINE float deFloatAtanh (float a) { return 0.5f*deFloatLog((1.0f+a)/(1.0f-a)); } in deFloatAtanh()
|
/external/deqp/framework/randomshaders/ |
D | rsgBuiltinFunctions.hpp | 454 inMin = deFloatLog(deFloatMax(outMin, rangeMin)); in transformValueRange() 455 inMax = deFloatLog(deFloatMin(outMax, rangeMax)); in transformValueRange() 491 return deFloatLog(inVal); in evaluateComp()
|
/external/deqp/modules/gles2/functional/ |
D | es2fShaderConstExprTests.cpp | 93 …{"log", "log(${T} (42.12))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatLog(42.12f)… in init()
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderConstExprTests.cpp | 100 …{"log", "log(${T} (42.12))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatLog(42.12f)… in init()
|
/external/deqp/framework/common/ |
D | tcuVectorUtil.hpp | 443 TCU_DECLARE_VECTOR_UNARY_FUNC(log, deFloatLog)
|