| 558 | /** \internal \returns the bitwise or of \a a and \a b */ |
| 559 | template <typename Packet> |
| 560 | EIGEN_DEVICE_FUNC inline Packet por(const Packet& a, const Packet& b) { |
| 561 | return bitwise_helper<Packet>::bitwise_or(a, b); |
| 562 | } |
| 563 | |
| 564 | /** \internal \returns the bitwise xor of \a a and \a b */ |
| 565 | template <typename Packet> |
no test coverage detected