* @brief Store a vector to an aligned memory address. */
| 650 | * @brief Store a vector to an aligned memory address. |
| 651 | */ |
| 652 | ASTCENC_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. |
nothing calls this directly
no outgoing calls
no test coverage detected