/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/ |
H A D | esextcGeometryShaderAdjacency.cpp | 176 , m_epsilon(0.00001F) in GeometryShaderAdjacency() 458 m_test_data.m_expected_adjacency_geometry[n]) >= m_epsilon) in iterate() 465 m_epsilon) in iterate() 477 << m_epsilon << " )" in iterate() 489 << m_epsilon << " )" in iterate() 547 if (matchesExpected && de::abs(result_geometry_ptr[n] - m_test_data.m_expected_geometry[n]) >= m_epsilon) in iterate() 553 de::abs(result_geometry_ptr[n] - m_test_data.m_alternate_expected_geometry[n]) >= m_epsilon) in iterate() 565 << m_epsilon << " )" in iterate() 574 << m_epsilon << " )" in iterate()
|
H A D | esextcGeometryShaderAdjacency.hpp | 329 glw::GLfloat m_epsilon; member in glcts::GeometryShaderAdjacency
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
H A D | vktDrawDepthClampTests.cpp | 271 const float m_epsilon; member in vkt::Draw::__anon27901::DepthClampTestInstance 296 , m_epsilon (epsilon) in DepthClampTestInstance() 694 if (std::abs(expectedValue - resultImage.getPixDepth(x, y, 0)) >= m_epsilon) in iterate() 719 , m_epsilon (epsilon) in DepthClampTest() 799 return new DepthClampTestInstance(context, m_params, m_format, m_epsilon, m_groupParams); in createInstance() 805 const float m_epsilon; member in vkt::Draw::__anon27901::DepthClampTest
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/ |
H A D | vktDrawDepthClampTests.cpp | 271 const float m_epsilon; member in vkt::Draw::__anon29147::DepthClampTestInstance 296 , m_epsilon (epsilon) in DepthClampTestInstance() 694 if (std::abs(expectedValue - resultImage.getPixDepth(x, y, 0)) >= m_epsilon) in iterate() 719 , m_epsilon (epsilon) in DepthClampTest() 799 return new DepthClampTestInstance(context, m_params, m_format, m_epsilon, m_groupParams); in createInstance() 805 const float m_epsilon; member in vkt::Draw::__anon29147::DepthClampTest
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_buffer/ |
H A D | esextcTextureBufferParamValueIntToFloatConversion.hpp | 129 static const glw::GLfloat m_epsilon; member in glcts::TextureBufferParamValueIntToFloatConversion
|
H A D | esextcTextureBufferParamValueIntToFloatConversion.cpp | 41 const glw::GLfloat TextureBufferParamValueIntToFloatConversion::m_epsilon = 1.0f / 256.0f; member in glcts::TextureBufferParamValueIntToFloatConversion 226 if (de::abs(result[i] - (static_cast<glw::GLubyte>(i) / 255.0f)) > m_epsilon) in iterate()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cVertexAttrib64BitTest.cpp | 669 const GLdouble m_epsilon; member in VertexAttrib64Bit::GetVertexAttribTest 686 , m_epsilon(0.0) in GetVertexAttribTest() 1001 if ((b[i] > a[i] + m_epsilon) || (b[i] < a[i] - m_epsilon)) in compareDoubles()
|
H A D | gl4cGPUShaderFP64Tests.cpp | 12951 static const glw::GLdouble m_epsilon; member in gl4cts::BuiltinFunctionTest 12972 const glw::GLdouble BuiltinFunctionTest::m_epsilon = 0.00002; member in gl4cts::BuiltinFunctionTest 13827 if ((left_value != right_value) && (m_epsilon < de::abs(left_value - right_value)) && in compare() 15306 bool possible_edge_case = m_epsilon > de::abs((argument_1_component / argument_2_component) - in isResultEdgeCase() 15309 (m_epsilon > de::abs(argument_2_component - actual_result_component)); in isResultEdgeCase()
|
H A D | gl4cShaderSubroutineTests.cpp | 1393 static const glw::GLfloat m_epsilon = 0.00001f; in compare() local 1395 if (m_epsilon < std::abs(right - left)) in compare()
|
/third_party/json/tests/thirdparty/doctest/ |
H A D | doctest.h | 965 m_epsilon = static_cast<double>(newEpsilon); 1019 double m_epsilon; 3545 : m_epsilon(static_cast<double>(std::numeric_limits<float>::epsilon()) * 100) 3551 approx.epsilon(m_epsilon); 3557 m_epsilon = newEpsilon; 3568 rhs.m_epsilon * (rhs.m_scale + std::max<double>(std::fabs(lhs), std::fabs(rhs.m_value)));
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 3099 approx.m_epsilon = m_epsilon; 3173 double m_epsilon; 3461 double m_epsilon; 7880 : m_epsilon( std::numeric_limits<float>::epsilon()*100 ), 7906 || marginComparison(m_value, other, m_epsilon * (m_scale + std::fabs(std::isinf(m_value)? 0 : m_value))); 7920 m_epsilon = newEpsilon; 11645 m_epsilon(epsilon){ 11646 CATCH_ENFORCE(m_epsilon >= 0., "Relative comparison with epsilon < 0 does not make sense."); 11647 CATCH_ENFORCE(m_epsilon < [all...] |