Searched refs:deFloatLog (Results 1 - 6 of 6) sorted by relevance
/third_party/vk-gl-cts/framework/delibs/debase/ |
H A D | deMath.h | 197 DE_INLINE float deFloatLog (float a) { return (float)log(a); } in deFloatLog() function 226 DE_INLINE float deFloatAsinh (float a) { return deFloatLog(a + deFloatSqrt(a*a + 1)); } in deFloatAsinh() 227 DE_INLINE float deFloatAcosh (float a) { return deFloatLog(a + deFloatSqrt(a*a - 1)); } in deFloatAcosh() 228 DE_INLINE float deFloatAtanh (float a) { return 0.5f*deFloatLog((1.0f+a)/(1.0f-a)); } in deFloatAtanh()
|
/third_party/vk-gl-cts/framework/randomshaders/ |
H A 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()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcShaderConstExprTests.cpp | 353 { "log", "log(${T} (42.12))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, { deFloatLog(42.12f) } }, in init() 391 { "log", "log(${T} (8.0))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_INT, { deFloatLog(8.0f) } }, in init()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fShaderConstExprTests.cpp | 93 {"log", "log(${T} (42.12))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatLog(42.12f) }, in init()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fShaderConstExprTests.cpp | 100 {"log", "log(${T} (42.12))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatLog(42.12f) }, in init()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuVectorUtil.hpp | 470 TCU_DECLARE_VECTOR_UNARY_FUNC(log, deFloatLog)
|
Completed in 6 milliseconds