(a: &[u64], b: &[u64], out: &mut [u64])
| 154 | |
| 155 | #[cfg(target_arch = "x86_64")] |
| 156 | fn avx2_and(a: &[u64], b: &[u64], out: &mut [u64]) { |
| 157 | if a.len().min(b.len()) < 8 { |
| 158 | return scalar_and(a, b, out); |
| 159 | } |
| 160 | unsafe { avx2_and_inner(a, b, out) } |
| 161 | } |
| 162 | |
| 163 | #[cfg(target_arch = "x86_64")] |
| 164 | #[target_feature(enable = "avx2")] |
nothing calls this directly
no test coverage detected