sets the 4 signed 32-bit integer values and returns the xmm_t variable */
| 19 | |
| 20 | /* sets the 4 signed 32-bit integer values and returns the xmm_t variable */ |
| 21 | static __rte_always_inline xmm_t |
| 22 | vect_set_epi32(int i3, int i2, int i1, int i0) |
| 23 | { |
| 24 | int32_t data[4] = {i0, i1, i2, i3}; |
| 25 | |
| 26 | return vld1q_s32(data); |
| 27 | } |
| 28 | |
| 29 | #elif defined(RTE_ARCH_X86) |
| 30 |