| 404 | |
| 405 | /** \internal \returns the bitwise and of \a a and \a b */ |
| 406 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
| 407 | pand(const Packet& a, const Packet& b) { |
| 408 | return bitwise_helper<Packet>::bitwise_and(a, b); |
| 409 | } |
| 410 | |
| 411 | /** \internal \returns the bitwise or of \a a and \a b */ |
| 412 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
no test coverage detected