| 935 | } |
| 936 | |
| 937 | inline vec_float VecOr(const vec_float& v1, const vec_float& v2) |
| 938 | { |
| 939 | #if defined(TERATHON_SSE) |
| 940 | |
| 941 | return (_mm_or_ps(v1, v2)); |
| 942 | |
| 943 | #elif defined(TERATHON_NEON) |
| 944 | |
| 945 | return (vreinterpretq_f32_u32(vorrq_u32(vreinterpretq_u32_f32(v1), vreinterpretq_u32_f32(v2)))); |
| 946 | |
| 947 | #endif |
| 948 | } |
| 949 | |
| 950 | inline vec_float operator |(const vec_float& v1, const vec_float& v2) |
| 951 | { |
nothing calls this directly
no outgoing calls
no test coverage detected