| 1026 | } |
| 1027 | |
| 1028 | inline vec_float VecMaskCmpgt(const vec_float& v1, const vec_float& v2) |
| 1029 | { |
| 1030 | #if defined(TERATHON_SSE) |
| 1031 | |
| 1032 | return (_mm_cmplt_ps(v2, v1)); |
| 1033 | |
| 1034 | #elif defined(TERATHON_NEON) |
| 1035 | |
| 1036 | return (vreinterpretq_f32_u32(vcgtq_f32(v1, v2))); |
| 1037 | |
| 1038 | #endif |
| 1039 | } |
| 1040 | |
| 1041 | inline bool VecCmpeqScalar(const vec_float& v1, const vec_float& v2) |
| 1042 | { |
nothing calls this directly
no outgoing calls
no test coverage detected