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

Function store

Source/astcenc_vecmathlib_none_4.h:663–669  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

661 * @brief Store a vector to an unaligned memory address.
662 */
663ASTCENC_SIMD_INLINE void store(vint4 a, int* p)
664{
665 p[0] = a.m[0];
666 p[1] = a.m[1];
667 p[2] = a.m[2];
668 p[3] = a.m[3];
669}
670
671/**
672 * @brief Store a vector to an unaligned memory address.

Callers 1

store_lanes_maskedFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected