| 773 | } |
| 774 | |
| 775 | inline vec_float operator *(const vec_float& v1, const vec_float& v2) |
| 776 | { |
| 777 | #if defined(TERATHON_SSE) |
| 778 | |
| 779 | return (_mm_mul_ps(v1, v2)); |
| 780 | |
| 781 | #elif defined(TERATHON_NEON) |
| 782 | |
| 783 | return (vmulq_f32(v1, v2)); |
| 784 | |
| 785 | #endif |
| 786 | } |
| 787 | |
| 788 | inline vec_float VecMulScalar(const vec_float& v1, const vec_float& v2) |
| 789 | { |
nothing calls this directly
no outgoing calls
no test coverage detected