Home
last modified time | relevance | path

Searched refs:gcd_range (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/boost/math/
Dcommon_factor_rt.hpp19 using boost::integer::gcd_range;
/third_party/boost/libs/integer/test/
Dcommon_factor_test.cpp541 BOOST_TEST_EQ(boost::integer::gcd_range(i, i + 4).first, 4); in variadics()
542 BOOST_TEST_EQ(boost::integer::gcd_range(i, i + 4).second, i + 4); in variadics()
547 BOOST_TEST_EQ(boost::integer::gcd_range(i_gcd_unity, i_gcd_unity + 4).first, 1); in variadics()
548 BOOST_TEST_EQ(boost::integer::gcd_range(i_gcd_unity, i_gcd_unity + 4).second, i_gcd_unity + 3); in variadics()
/third_party/boost/libs/integer/doc/gcd/
Dmath-gcd.qbk37 gcd_range(I first, I last);
145 gcd_range(I first, I last);
153 `boost::integer::gcd_range` is the iteration of the above gcd algorithm over a
/third_party/boost/boost/math/tools/
Dpolynomial_gcd.hpp57 return x ? boost::integer::gcd_range(x.data().begin(), x.data().end()).first : T(0); in content()
/third_party/boost/boost/integer/
Dcommon_factor_rt.hpp506 gcd_range(I first, I last) BOOST_GCD_NOEXCEPT(I) in gcd_range() function