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

Function operator!=

Source/astcenc_vecmathlib_none_4.h:532–538  ·  view source on GitHub ↗

* @brief Overload: vector by vector inequality. */

Source from the content-addressed store, hash-verified

530 * @brief Overload: vector by vector inequality.
531 */
532ASTCENC_SIMD_INLINE vmask4 operator!=(vint4 a, vint4 b)
533{
534 return vmask4(a.m[0] != b.m[0],
535 a.m[1] != b.m[1],
536 a.m[2] != b.m[2],
537 a.m[3] != b.m[3]);
538}
539
540/**
541 * @brief Overload: vector by vector less than.

Callers

nothing calls this directly

Calls 1

vmask4Class · 0.70

Tested by

no test coverage detected