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

Function VecOr

TSSimd.h:937–948  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

935 }
936
937 inline vec_float VecOr(const vec_float& v1, const vec_float& v2)
938 {
939 #if defined(TERATHON_SSE)
940
941 return (_mm_or_ps(v1, v2));
942
943 #elif defined(TERATHON_NEON)
944
945 return (vreinterpretq_f32_u32(vorrq_u32(vreinterpretq_u32_f32(v1), vreinterpretq_u32_f32(v2))));
946
947 #endif
948 }
949
950 inline vec_float operator |(const vec_float& v1, const vec_float& v2)
951 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected