| 207 | |
| 208 | /** \internal \returns the bitwise andnot of \a a and \a b */ |
| 209 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
| 210 | pandnot(const Packet& a, const Packet& b) { return a & (!b); } |
| 211 | |
| 212 | /** \internal \returns a packet version of \a *from, from must be 16 bytes aligned */ |
| 213 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
no outgoing calls
no test coverage detected