MCPcopy Create free account
hub / github.com/ARM-software/astc-encoder / operator^

Function operator^

Source/astcenc_vecmathlib_none_4.h:389–395  ·  view source on GitHub ↗

* @brief Overload: mask difference (xor). */

Source from the content-addressed store, hash-verified

387 * @brief Overload: mask difference (xor).
388 */
389ASTCENC_SIMD_INLINE vmask4 operator^(vmask4 a, vmask4 b)
390{
391 return vmask4(a.m[0] ^ b.m[0],
392 a.m[1] ^ b.m[1],
393 a.m[2] ^ b.m[2],
394 a.m[3] ^ b.m[3]);
395}
396
397/**
398 * @brief Overload: mask invert (not).

Callers

nothing calls this directly

Calls 2

vmask4Class · 0.70
vint4Class · 0.70

Tested by

no test coverage detected