| 375 | |
| 376 | #ifdef __aarch64__ |
| 377 | inline uint32x4x2_t vld1q_u32_x2_(const uint32_t *ptr) |
| 378 | { |
| 379 | // gcc-7 doesn't support vld1q_u32_x2 instruction |
| 380 | return {vld1q_u32(ptr), vld1q_u32(ptr + 4)}; |
| 381 | } |
| 382 | |
| 383 | inline void vst1q_u32_x2_(const uint32_t *ptr, const uint32x4x2_t &val) |
| 384 | { |
no outgoing calls
no test coverage detected