* @brief Construct from 8 scalar values. * * The value of @c a is stored to lane 0 (LSB) in the SIMD register. */
| 59 | * The value of @c a is stored to lane 0 (LSB) in the SIMD register. |
| 60 | */ |
| 61 | static vint8 vint8_lit( |
| 62 | int a, int b, int c, int d, |
| 63 | int e, int f, int g, int h |
| 64 | ) { |
| 65 | alignas(32) int data[8] { |
| 66 | a, b, c, d, e, f, g, h |
| 67 | }; |
| 68 | |
| 69 | return vint8(data); |
| 70 | } |
| 71 | |
| 72 | #endif |
| 73 |