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

Function storea

Source/astcenc_vecmathlib_none_4.h:652–658  ·  view source on GitHub ↗

* @brief Store a vector to an aligned memory address. */

Source from the content-addressed store, hash-verified

650 * @brief Store a vector to an aligned memory address.
651 */
652ASTCENC_SIMD_INLINE void storea(vint4 a, int* p)
653{
654 p[0] = a.m[0];
655 p[1] = a.m[1];
656 p[2] = a.m[2];
657 p[3] = a.m[3];
658}
659
660/**
661 * @brief Store a vector to an unaligned memory address.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected