Lines Matching refs:_B2
2976 template<typename _B1, typename _B2>
2977 struct __or_<_B1, _B2>
2978 : public conditional<_B1::value, _B1, _B2>::type
2981 template<typename _B1, typename _B2, typename _B3, typename... _Bn>
2982 struct __or_<_B1, _B2, _B3, _Bn...>
2983 : public conditional<_B1::value, _B1, __or_<_B2, _B3, _Bn...>>::type
2999 template<typename _B1, typename _B2>
3000 struct __and_<_B1, _B2>
3001 : public conditional<_B1::value, _B2, _B1>::type
3004 template<typename _B1, typename _B2, typename _B3, typename... _Bn>
3005 struct __and_<_B1, _B2, _B3, _Bn...>
3006 : public conditional<_B1::value, __and_<_B2, _B3, _Bn...>, _B1>::type