| 712 | return vmulq_f32(a, b); |
| 713 | } |
| 714 | inline float32x4_t vmax(float32x4_t a, float32x4_t b) { |
| 715 | return vmaxq_f32(a, b); |
| 716 | } |
| 717 | inline void vset(float* src, float32x4_t dst) { |
| 718 | vst1q_f32(src, dst); |
| 719 | } |
no outgoing calls
no test coverage detected