Home
last modified time | relevance | path

Searched refs:rte_bswap64 (Results 1 – 10 of 10) sorted by relevance

/f-stack/dpdk/lib/librte_eal/ppc/include/
H A Drte_byteorder.h62 #define rte_bswap64(x) ((uint64_t)(__builtin_constant_p(x) ? \ macro
87 #define rte_cpu_to_be_64(x) rte_bswap64(x)
95 #define rte_be_to_cpu_64(x) rte_bswap64(x)
101 #define rte_cpu_to_le_64(x) rte_bswap64(x)
109 #define rte_le_to_cpu_64(x) rte_bswap64(x)
/f-stack/dpdk/lib/librte_eal/arm/include/
H A Drte_byteorder.h48 #define rte_cpu_to_be_64(x) rte_bswap64(x)
56 #define rte_be_to_cpu_64(x) rte_bswap64(x)
62 #define rte_cpu_to_le_64(x) rte_bswap64(x)
70 #define rte_le_to_cpu_64(x) rte_bswap64(x)
/f-stack/dpdk/lib/librte_eal/x86/include/
H A Drte_byteorder.h59 #define rte_bswap64(x) ((uint64_t)(__builtin_constant_p(x) ? \ macro
79 #define rte_cpu_to_be_64(x) rte_bswap64(x)
87 #define rte_be_to_cpu_64(x) rte_bswap64(x)
/f-stack/dpdk/app/test/
H A Dtest_byteorder.c43 res_u64 = rte_bswap64(u64); in test_byteorder()
58 res_u64 = rte_bswap64(0xdeadcafebabefaceULL); in test_byteorder()
/f-stack/dpdk/lib/librte_eal/include/generic/
H A Drte_byteorder.h169 static uint64_t rte_bswap64(uint64_t x);
243 #define rte_bswap64(x) __builtin_bswap64(x) macro
/f-stack/dpdk/drivers/net/txgbe/base/
H A Dtxgbe_osdep.h100 #define le_to_be64(v) rte_bswap64((u64)(v))
103 #define be_to_le64(v) rte_bswap64((u64)(v))
/f-stack/dpdk/drivers/common/dpaax/caamflib/
H A Dcompat.h107 #define swab64(x) rte_bswap64(x)
/f-stack/dpdk/drivers/net/bnxt/tf_core/
H A Dtfp.h254 #define tfp_bswap_64(val) rte_bswap64(val)
/f-stack/dpdk/drivers/crypto/qat/
H A Dqat_sym_session.c1227 rte_bswap64(*(((uint64_t *)digest)+i)); in partial_hash_compute()
1234 rte_bswap64(*(((uint64_t *)digest)+i)); in partial_hash_compute()
/f-stack/dpdk/drivers/crypto/ccp/
H A Dccp_crypto.c2398 *temp++ = rte_bswap64(session->auth.aad_length << 3); in ccp_perform_aes_gcm()
2399 *temp = rte_bswap64(op->sym->aead.data.length << 3); in ccp_perform_aes_gcm()