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

Function VecAnd

TSSimd.h:898–909  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected