Lines Matching refs:_B3
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
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