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

Function operator*

Source/astcenc_vecmathlib_none_4.h:466–472  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

464 * @brief Overload: vector by vector multiplication.
465 */
466ASTCENC_SIMD_INLINE vint4 operator*(vint4 a, vint4 b)
467{
468 return vint4(a.m[0] * b.m[0],
469 a.m[1] * b.m[1],
470 a.m[2] * b.m[2],
471 a.m[3] * b.m[3]);
472}
473
474/**
475 * @brief Overload: vector bit invert.

Callers

nothing calls this directly

Calls 2

vint4Class · 0.70
vfloat4Class · 0.70

Tested by

no test coverage detected