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

Function operator>

Source/astcenc_vecmathlib_none_4.h:554–560  ·  view source on GitHub ↗

* @brief Overload: vector by vector greater than. */

Source from the content-addressed store, hash-verified

552 * @brief Overload: vector by vector greater than.
553 */
554ASTCENC_SIMD_INLINE vmask4 operator>(vint4 a, vint4 b)
555{
556 return vmask4(a.m[0] > b.m[0],
557 a.m[1] > b.m[1],
558 a.m[2] > b.m[2],
559 a.m[3] > b.m[3]);
560}
561
562/**
563 * @brief Logical shift left.

Callers

nothing calls this directly

Calls 1

vmask4Class · 0.70

Tested by

no test coverage detected