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

Function operator<

Source/astcenc_vecmathlib_none_4.h:543–549  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

541 * @brief Overload: vector by vector less than.
542 */
543ASTCENC_SIMD_INLINE vmask4 operator<(vint4 a, vint4 b)
544{
545 return vmask4(a.m[0] < b.m[0],
546 a.m[1] < b.m[1],
547 a.m[2] < b.m[2],
548 a.m[3] < b.m[3]);
549}
550
551/**
552 * @brief Overload: vector by vector greater than.

Callers

nothing calls this directly

Calls 1

vmask4Class · 0.70

Tested by

no test coverage detected