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

Function operator &

TSSimd.h:911–922  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

909 }
910
911 inline vec_float operator &(const vec_float& v1, const vec_float& v2)
912 {
913 #if defined(TERATHON_SSE)
914
915 return (_mm_and_ps(v1, v2));
916
917 #elif defined(TERATHON_NEON)
918
919 return (vreinterpretq_f32_u32(vandq_u32(vreinterpretq_u32_f32(v1), vreinterpretq_u32_f32(v2))));
920
921 #endif
922 }
923
924 inline vec_float VecAndc(const vec_float& v1, const vec_float& v2)
925 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected