| 570 | /** \internal \returns the bitwise not of \a a */ |
| 571 | template <typename Packet> |
| 572 | EIGEN_DEVICE_FUNC inline Packet pnot(const Packet& a) { |
| 573 | return bitwise_helper<Packet>::bitwise_not(a); |
| 574 | } |
| 575 | |
| 576 | /** \internal \returns the bitwise and of \a a and not \a b */ |
| 577 | template <typename Packet> |
no outgoing calls
no test coverage detected