本文整理汇总了C++中mask类的典型用法代码示例。如果您正苦于以下问题:C++ mask类的具体用法?C++ mask怎么用?C++ mask使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了mask类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: archive_option_destroy_mask
void archive_options_extract::set_selection(const mask & selection)
{
NLS_SWAP_IN;
try
{
archive_option_destroy_mask(x_selection);
x_selection = selection.clone();
if(x_selection == NULL)
throw Ememory("archive_options_extract::set_selection");
}
catch(...)
{
NLS_SWAP_OUT;
throw;
}
NLS_SWAP_OUT;
}
示例2: select
KFR_SINTRIN vec<T, N> select(const mask<T, N>& m, const vec<T, N>& x, const vec<T, N>& y)
{
return y ^ ((x ^ y) & m.asvec());
}
示例3: select
KFR_INTRINSIC vec<Tout, N> select(const mask<T1, N>& m, const T2& x, const T3& y)
{
static_assert(sizeof(T1) == sizeof(Tout), "select: incompatible types");
return intrinsics::select(bitcast<Tout>(m.asvec()).asmask(), innercast<Tout>(x), innercast<Tout>(y));
}