* @brief Store a vector to a 16B aligned memory address. */
| 631 | * @brief Store a vector to a 16B aligned memory address. |
| 632 | */ |
| 633 | ASTCENC_SIMD_INLINE void storea(vint4 a, int* p) |
| 634 | { |
| 635 | _mm_store_si128(reinterpret_cast<__m128i*>(p), a.m); |
| 636 | } |
| 637 | |
| 638 | /** |
| 639 | * @brief Store a vector to an unaligned memory address. |