* @brief Store lowest N (vector width) bytes into an unaligned address. */
| 680 | * @brief Store lowest N (vector width) bytes into an unaligned address. |
| 681 | */ |
| 682 | ASTCENC_SIMD_INLINE void store_nbytes(vint4 a, uint8_t* p) |
| 683 | { |
| 684 | std::memcpy(p, a.m, sizeof(uint8_t) * 4); |
| 685 | } |
| 686 | |
| 687 | /** |
| 688 | * @brief Pack low 8 bits of N (vector width) lanes into bottom of vector. |
no outgoing calls
no test coverage detected