| 434 | } |
| 435 | |
| 436 | inline vec_float VecLoadUnaligned(const float *ptr) |
| 437 | { |
| 438 | #if defined(TERATHON_SSE) |
| 439 | |
| 440 | return (_mm_loadu_ps(ptr)); |
| 441 | |
| 442 | #elif defined(TERATHON_NEON) |
| 443 | |
| 444 | return (vld1q_f32(ptr)); |
| 445 | |
| 446 | #endif |
| 447 | } |
| 448 | |
| 449 | inline vec_float VecLoadScalar(const float *ptr) |
| 450 | { |
no outgoing calls
no test coverage detected