| 896 | } |
| 897 | |
| 898 | inline vec_float VecAnd(const vec_float& v1, const vec_float& v2) |
| 899 | { |
| 900 | #if defined(TERATHON_SSE) |
| 901 | |
| 902 | return (_mm_and_ps(v1, v2)); |
| 903 | |
| 904 | #elif defined(TERATHON_NEON) |
| 905 | |
| 906 | return (vreinterpretq_f32_u32(vandq_u32(vreinterpretq_u32_f32(v1), vreinterpretq_u32_f32(v2)))); |
| 907 | |
| 908 | #endif |
| 909 | } |
| 910 | |
| 911 | inline vec_float operator &(const vec_float& v1, const vec_float& v2) |
| 912 | { |
nothing calls this directly
no outgoing calls
no test coverage detected