| 487 | } |
| 488 | |
| 489 | inline void VecStoreUnaligned(const vec_float& v, float *ptr) |
| 490 | { |
| 491 | #if defined(TERATHON_SSE) |
| 492 | |
| 493 | _mm_storeu_ps(ptr, v); |
| 494 | |
| 495 | #elif defined(TERATHON_NEON) |
| 496 | |
| 497 | vst1q_f32(ptr, v); |
| 498 | |
| 499 | #endif |
| 500 | } |
| 501 | |
| 502 | inline void VecStoreX(const vec_float& v, float *ptr) |
| 503 | { |
nothing calls this directly
no outgoing calls
no test coverage detected