Home
last modified time | relevance | path

Searched refs:rte_bswap16 (Results 1 – 14 of 14) sorted by relevance

/f-stack/dpdk/lib/librte_eal/ppc/include/
H A Drte_byteorder.h54 #define rte_bswap16(x) ((uint16_t)(__builtin_constant_p(x) ? \ macro
70 #define rte_bswap16(x) ((uint16_t)(__builtin_constant_p(x) ? \ macro
85 #define rte_cpu_to_be_16(x) rte_bswap16(x)
93 #define rte_be_to_cpu_16(x) rte_bswap16(x)
99 #define rte_cpu_to_le_16(x) rte_bswap16(x)
107 #define rte_le_to_cpu_16(x) rte_bswap16(x)
/f-stack/dpdk/lib/librte_eal/arm/include/
H A Drte_byteorder.h34 #define rte_bswap16(x) ((uint16_t)(__builtin_constant_p(x) ? \ macro
46 #define rte_cpu_to_be_16(x) rte_bswap16(x)
54 #define rte_be_to_cpu_16(x) rte_bswap16(x)
60 #define rte_cpu_to_le_16(x) rte_bswap16(x)
68 #define rte_le_to_cpu_16(x) rte_bswap16(x)
/f-stack/dpdk/lib/librte_eal/x86/include/
H A Drte_byteorder.h51 #define rte_bswap16(x) ((uint16_t)(__builtin_constant_p(x) ? \ macro
67 #define rte_bswap16(x) ((uint16_t)(__builtin_constant_p(x) ? \ macro
77 #define rte_cpu_to_be_16(x) rte_bswap16(x)
85 #define rte_be_to_cpu_16(x) rte_bswap16(x)
/f-stack/dpdk/app/test/
H A Dtest_byteorder.c33 res_u16 = rte_bswap16(u16); in test_byteorder()
48 res_u16 = rte_bswap16(0x1337); in test_byteorder()
H A Dtest_table_acl.c663 five_tuple.port_src = rte_bswap16(100 + j); in test_pipeline_single_filter()
664 five_tuple.port_dst = rte_bswap16(200 + j); in test_pipeline_single_filter()
/f-stack/dpdk/lib/librte_eal/include/generic/
H A Drte_byteorder.h159 static uint16_t rte_bswap16(uint16_t _x);
238 #define rte_bswap16(x) __builtin_bswap16(x) macro
/f-stack/dpdk/drivers/net/txgbe/base/
H A Dtxgbe_osdep.h98 #define le_to_be16(v) rte_bswap16((u16)(v))
101 #define be_to_le16(v) rte_bswap16((u16)(v))
/f-stack/dpdk/drivers/common/dpaax/caamflib/
H A Dcompat.h105 #define swab16(x) rte_bswap16(x)
/f-stack/dpdk/drivers/net/bnxt/tf_core/
H A Dtfp.h252 #define tfp_bswap_16(val) rte_bswap16(val)
/f-stack/dpdk/drivers/net/sfc/
H A Dsfc_flow.c352 efx_spec->efs_ether_type = rte_bswap16(spec->type); in sfc_flow_parse_eth()
410 vid = rte_bswap16(spec->tci & mask->tci); in sfc_flow_parse_vlan()
441 efx_spec->efs_ether_type = rte_bswap16(spec->inner_type); in sfc_flow_parse_vlan()
713 efx_spec->efs_rem_port = rte_bswap16(spec->hdr.src_port); in sfc_flow_parse_tcp()
720 efx_spec->efs_loc_port = rte_bswap16(spec->hdr.dst_port); in sfc_flow_parse_tcp()
795 efx_spec->efs_rem_port = rte_bswap16(spec->hdr.src_port); in sfc_flow_parse_udp()
802 efx_spec->efs_loc_port = rte_bswap16(spec->hdr.dst_port); in sfc_flow_parse_udp()
/f-stack/dpdk/lib/librte_net/
H A Drte_ip.h260 tmp = rte_bswap16((uint16_t)tmp); in rte_raw_cksum_mbuf()
/f-stack/dpdk/examples/l3fwd-acl/
H A Dmain.c597 rte_bswap16(*(uint16_t *)(ipv4_hdr + 1)), in dump_acl4_rule()
598 rte_bswap16(*((uint16_t *)(ipv4_hdr + 1) + 1))); in dump_acl4_rule()
626 rte_bswap16(*(uint16_t *)(ipv6_hdr + 1)), in dump_acl6_rule()
627 rte_bswap16(*((uint16_t *)(ipv6_hdr + 1) + 1))); in dump_acl6_rule()
/f-stack/dpdk/drivers/crypto/qat/
H A Dqat_sym.c418 = rte_bswap16(aad_ccm_real_len); in qat_sym_build_request()
H A Dqat_sym_hw_dp.c171 rte_bswap16(aad_ccm_real_len); in enqueue_one_aead_job()