MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vect_set_epi32

Function vect_set_epi32

dpdk/app/test/test_xmmt_ops.h:21–27  ·  view source on GitHub ↗

sets the 4 signed 32-bit integer values and returns the xmm_t variable */

Source from the content-addressed store, hash-verified

19
20/* sets the 4 signed 32-bit integer values and returns the xmm_t variable */
21static __rte_always_inline xmm_t
22vect_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

Callers 4

test7Function · 0.85
test8Function · 0.85
test12Function · 0.85
test14Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected