MCPcopy Create free account
hub / github.com/EricLengyel/Terathon-Math-Library / VecMaskCmpeq

Function VecMaskCmpeq

TSSimd.h:1002–1013  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1000 }
1001
1002 inline vec_float VecMaskCmpeq(const vec_float& v1, const vec_float& v2)
1003 {
1004 #if defined(TERATHON_SSE)
1005
1006 return (_mm_cmpeq_ps(v1, v2));
1007
1008 #elif defined(TERATHON_NEON)
1009
1010 return (vreinterpretq_f32_u32(vceqq_f32(v1, v2)));
1011
1012 #endif
1013 }
1014
1015 inline vec_float VecMaskCmplt(const vec_float& v1, const vec_float& v2)
1016 {

Callers 4

VecSqrtFunction · 0.85
VecSqrtScalarFunction · 0.85
VecFsgnFunction · 0.85
VecFnsgnFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected