Home
last modified time | relevance | path

Searched refs:m_epsilon (Results 1 – 11 of 11) sorted by relevance

/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderAdjacency.cpp176 , 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 …tchesExpected && 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()
DesextcGeometryShaderAdjacency.hpp329 glw::GLfloat m_epsilon; member in glcts::GeometryShaderAdjacency
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
DvktDrawDepthClampTests.cpp271 const float m_epsilon; member in vkt::Draw::__anonb247ea320111::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::__anonb247ea320111::DepthClampTest
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/
DvktDrawDepthClampTests.cpp271 const float m_epsilon; member in vkt::Draw::__anon7cbe58b20111::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::__anon7cbe58b20111::DepthClampTest
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_buffer/
DesextcTextureBufferParamValueIntToFloatConversion.cpp41 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()
DesextcTextureBufferParamValueIntToFloatConversion.hpp129 static const glw::GLfloat m_epsilon; member in glcts::TextureBufferParamValueIntToFloatConversion
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cVertexAttrib64BitTest.cpp669 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()
Dgl4cGPUShaderFP64Tests.cpp12948 static const glw::GLdouble m_epsilon; member in gl4cts::BuiltinFunctionTest
12969 const glw::GLdouble BuiltinFunctionTest::m_epsilon = 0.00002; member in gl4cts::BuiltinFunctionTest
13824 if ((left_value != right_value) && (m_epsilon < de::abs(left_value - right_value)) && in compare()
15303 … bool possible_edge_case = m_epsilon > de::abs((argument_1_component / argument_2_component) - in isResultEdgeCase()
15306 … (m_epsilon > de::abs(argument_2_component - actual_result_component)); in isResultEdgeCase()
Dgl4cShaderSubroutineTests.cpp1393 static const glw::GLfloat m_epsilon = 0.00001f; in compare() local
1395 if (m_epsilon < std::abs(right - left)) in compare()
/third_party/json/test/thirdparty/doctest/
Ddoctest.h965 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/
Dcatch.hpp3099 approx.m_epsilon = m_epsilon; in operator ()()
3173 double m_epsilon; member in Catch::Detail::Approx
3461 double m_epsilon; member
7880 : m_epsilon( std::numeric_limits<float>::epsilon()*100 ), in Approx()
7906 …|| marginComparison(m_value, other, m_epsilon * (m_scale + std::fabs(std::isinf(m_value)? 0 : m_va… in equalityComparisonImpl()
7920 m_epsilon = newEpsilon; in setEpsilon()
11645 m_epsilon(epsilon){ in WithinRelMatcher()
11646 … CATCH_ENFORCE(m_epsilon >= 0., "Relative comparison with epsilon < 0 does not make sense."); in WithinRelMatcher()
11647 … CATCH_ENFORCE(m_epsilon < 1., "Relative comparison with epsilon >= 1 does not make sense."); in WithinRelMatcher()
11651 const auto relMargin = m_epsilon * (std::max)(std::fabs(matchee), std::fabs(m_target)); in match()
[all …]