| 474 | } |
| 475 | |
| 476 | inline void VecStore(const vec_float& v, float *ptr) |
| 477 | { |
| 478 | #if defined(TERATHON_SSE) |
| 479 | |
| 480 | _mm_store_ps(ptr, v); |
| 481 | |
| 482 | #elif defined(TERATHON_NEON) |
| 483 | |
| 484 | vst1q_f32(ptr, v); |
| 485 | |
| 486 | #endif |
| 487 | } |
| 488 | |
| 489 | inline void VecStoreUnaligned(const vec_float& v, float *ptr) |
| 490 | { |
no outgoing calls
no test coverage detected