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

Function operator-

Source/astcenc_vecmathlib_none_4.h:455–461  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

453 * @brief Overload: vector by vector subtraction.
454 */
455ASTCENC_SIMD_INLINE vint4 operator-(vint4 a, vint4 b)
456{
457 return vint4(a.m[0] - b.m[0],
458 a.m[1] - b.m[1],
459 a.m[2] - b.m[2],
460 a.m[3] - b.m[3]);
461}
462
463/**
464 * @brief Overload: vector by vector multiplication.

Callers

nothing calls this directly

Calls 2

vint4Class · 0.70
vfloat4Class · 0.70

Tested by

no test coverage detected