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

Function operator |

TSSimd.h:950–961  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

948 }
949
950 inline vec_float operator |(const vec_float& v1, const vec_float& v2)
951 {
952 #if defined(TERATHON_SSE)
953
954 return (_mm_or_ps(v1, v2));
955
956 #elif defined(TERATHON_NEON)
957
958 return (vreinterpretq_f32_u32(vorrq_u32(vreinterpretq_u32_f32(v1), vreinterpretq_u32_f32(v2))));
959
960 #endif
961 }
962
963 inline vec_float VecXor(const vec_float& v1, const vec_float& v2)
964 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected