| 2367 | } |
| 2368 | |
| 2369 | inline vec_float VecInt32ConvertFloat(const vec_int32& v) |
| 2370 | { |
| 2371 | #if defined(TERATHON_SSE) |
| 2372 | |
| 2373 | return (_mm_cvtepi32_ps(v)); |
| 2374 | |
| 2375 | #elif defined(TERATHON_NEON) |
| 2376 | |
| 2377 | return (vcvtq_f32_s32(v)); |
| 2378 | |
| 2379 | #endif |
| 2380 | } |
| 2381 | |
| 2382 | inline vec_int32 VecConvertInt32(const vec_float& v) |
| 2383 | { |
nothing calls this directly
no outgoing calls
no test coverage detected