Searched refs:m_ulps (Results 1 – 3 of 3) sorted by relevance
/external/catch2/include/internal/ |
D | catch_matchers_floating.cpp | 101 :m_target{ target }, m_ulps{ ulps }, m_type{ baseType } { in WithinUlpsMatcher() 115 … return almostEqualUlps<float>(static_cast<float>(matchee), static_cast<float>(m_target), m_ulps); in match() 117 return almostEqualUlps<double>(matchee, m_target, m_ulps); in match() 128 …return "is within " + Catch::to_string(m_ulps) + " ULPs of " + ::Catch::Detail::stringify(m_target… in describe()
|
D | catch_matchers_floating.h | 37 int m_ulps; member
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 3063 int m_ulps; member 9370 :m_target{ target }, m_ulps{ ulps }, m_type{ baseType } { in WithinUlpsMatcher() 9384 … return almostEqualUlps<float>(static_cast<float>(matchee), static_cast<float>(m_target), m_ulps); in match() 9386 return almostEqualUlps<double>(matchee, m_target, m_ulps); in match() 9397 …return "is within " + Catch::to_string(m_ulps) + " ULPs of " + ::Catch::Detail::stringify(m_target… in describe()
|