* @brief Factory that returns a vector loaded from unaligned memory. */
| 188 | * @brief Factory that returns a vector loaded from unaligned memory. |
| 189 | */ |
| 190 | static ASTCENC_SIMD_INLINE vint8 load(const uint8_t* p) |
| 191 | { |
| 192 | svuint8_8_t data = svld1_u8(svptrue_b8(), p); |
| 193 | return vint8(svreinterpret_s32_u8(data)); |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * @brief Factory that returns a vector loaded from 32B aligned memory. |