本文整理汇总了C++中nt2::bitwise_and方法的典型用法代码示例。如果您正苦于以下问题:C++ nt2::bitwise_and方法的具体用法?C++ nt2::bitwise_and怎么用?C++ nt2::bitwise_and使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nt2
的用法示例。
在下文中一共展示了nt2::bitwise_and方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: NT2_TEST_CASE_TPL
NT2_TEST_CASE_TPL ( bitwise_and_real__2_0, NT2_REAL_TYPES)
{
using nt2::bitwise_and;
using nt2::tag::bitwise_and_;
typedef typename nt2::meta::as_integer<T>::type iT;
typedef typename nt2::meta::call<bitwise_and_(T,T)>::type r_t;
typedef typename nt2::meta::scalar_of<r_t>::type ssr_t;
typedef typename nt2::meta::upgrade<T>::type u_t;
typedef T wished_r_t;
// return type conformity test
NT2_TEST( (boost::is_same < r_t, wished_r_t >::value) );
std::cout << std::endl;
double ulpd;
ulpd=0.0;
// specific values tests
NT2_TEST_EQUAL(bitwise_and(nt2::Inf<T>(), nt2::Inf<T>()), nt2::Inf<r_t>());
NT2_TEST_EQUAL(bitwise_and(nt2::Minf<T>(), nt2::Minf<T>()), nt2::Minf<r_t>());
NT2_TEST_EQUAL(bitwise_and(nt2::Nan<T>(), nt2::Nan<T>()), nt2::Nan<r_t>());
NT2_TEST_EQUAL(bitwise_and(nt2::One<T>(),nt2::Zero<T>()), nt2::Zero<r_t>());
NT2_TEST_EQUAL(bitwise_and(nt2::Zero<T>(), nt2::Zero<T>()), nt2::Zero<r_t>());
} // end of test for floating_
示例2: NT2_TEST_CASE_TPL
NT2_TEST_CASE_TPL ( bitwise_and_real__2_0, NT2_SIMD_REAL_TYPES)
{
using nt2::bitwise_and;
using nt2::tag::bitwise_and_;
using nt2::load;
using boost::simd::native;
using nt2::meta::cardinal_of;
typedef NT2_SIMD_DEFAULT_EXTENSION ext_t;
typedef typename nt2::meta::upgrade<T>::type u_t;
typedef native<T,ext_t> n_t;
typedef n_t vT;
typedef typename nt2::meta::as_integer<T>::type iT;
typedef native<iT,ext_t> ivT;
typedef typename nt2::meta::call<bitwise_and_(vT,vT)>::type r_t;
typedef typename nt2::meta::call<bitwise_and_(T,T)>::type sr_t;
typedef typename nt2::meta::scalar_of<r_t>::type ssr_t;
double ulpd;
ulpd=0.0;
// specific values tests
NT2_TEST_EQUAL(bitwise_and(nt2::Inf<vT>(), nt2::Inf<vT>())[0], nt2::Inf<sr_t>());
NT2_TEST_EQUAL(bitwise_and(nt2::Minf<vT>(), nt2::Minf<vT>())[0], nt2::Minf<sr_t>());
NT2_TEST_EQUAL(bitwise_and(nt2::Nan<vT>(), nt2::Nan<vT>())[0], nt2::Nan<sr_t>());
NT2_TEST_EQUAL(bitwise_and(nt2::One<vT>(),nt2::Zero<vT>())[0], nt2::Zero<sr_t>());
NT2_TEST_EQUAL(bitwise_and(nt2::Zero<vT>(), nt2::Zero<vT>())[0], nt2::Zero<sr_t>());
} // end of test for floating_
示例3: NT2_TEST_CASE_TPL
NT2_TEST_CASE_TPL ( bitwise_and_integer__2_0, NT2_INTEGRAL_TYPES)
{
using nt2::bitwise_and;
using nt2::tag::bitwise_and_;
typedef typename nt2::meta::call<bitwise_and_(T,T)>::type r_t;
typedef T wished_r_t;
// return type conformity test
NT2_TEST( (boost::is_same < r_t, wished_r_t >::value) );
std::cout << std::endl;
// specific values tests
NT2_TEST_EQUAL(bitwise_and(nt2::Mone<T>(), nt2::Mone<T>()), nt2::Mone<r_t>());
NT2_TEST_EQUAL(bitwise_and(nt2::One<T>(), nt2::One<T>()), nt2::One<r_t>());
NT2_TEST_EQUAL(bitwise_and(nt2::One<T>(),nt2::Zero<T>()), nt2::Zero<r_t>());
NT2_TEST_EQUAL(bitwise_and(nt2::Zero<T>(), nt2::Zero<T>()), nt2::Zero<r_t>());
} // end of test for integer_