* @brief Store a vector to an unaligned memory address. */
| 540 | * @brief Store a vector to an unaligned memory address. |
| 541 | */ |
| 542 | ASTCENC_SIMD_INLINE void store(vint a, int* p) |
| 543 | { |
| 544 | __riscv_vse32(p, a.m, vint::vl()); |
| 545 | } |
| 546 | |
| 547 | /** |
| 548 | * @brief Store lowest N (vector width) bytes into an unaligned address. |
nothing calls this directly
no outgoing calls
no test coverage detected