* @brief Store a vector to a 16B aligned memory address. */
| 532 | * @brief Store a vector to a 16B aligned memory address. |
| 533 | */ |
| 534 | ASTCENC_SIMD_INLINE void storea(vint a, int* p) |
| 535 | { |
| 536 | __riscv_vse32(p, a.m, vint::vl()); |
| 537 | } |
| 538 | |
| 539 | /** |
| 540 | * @brief Store a vector to an unaligned memory address. |
nothing calls this directly
no outgoing calls
no test coverage detected