| 948 | } |
| 949 | |
| 950 | inline vec_float operator |(const vec_float& v1, const vec_float& v2) |
| 951 | { |
| 952 | #if defined(TERATHON_SSE) |
| 953 | |
| 954 | return (_mm_or_ps(v1, v2)); |
| 955 | |
| 956 | #elif defined(TERATHON_NEON) |
| 957 | |
| 958 | return (vreinterpretq_f32_u32(vorrq_u32(vreinterpretq_u32_f32(v1), vreinterpretq_u32_f32(v2)))); |
| 959 | |
| 960 | #endif |
| 961 | } |
| 962 | |
| 963 | inline vec_float VecXor(const vec_float& v1, const vec_float& v2) |
| 964 | { |
nothing calls this directly
no outgoing calls
no test coverage detected