Home
last modified time | relevance | path

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

/dpdk/lib/eal/ppc/include/
H A Drte_byteorder.h23 static inline uint16_t rte_arch_bswap16(uint16_t _x) in rte_arch_bswap16() argument
25 return (_x >> 8) | ((_x << 8) & 0xff00); in rte_arch_bswap16()
33 static inline uint32_t rte_arch_bswap32(uint32_t _x) in rte_arch_bswap32() argument
35 return (_x >> 24) | ((_x >> 8) & 0xff00) | ((_x << 8) & 0xff0000) | in rte_arch_bswap32()
36 ((_x << 24) & 0xff000000); in rte_arch_bswap32()
45 static inline uint64_t rte_arch_bswap64(uint64_t _x) in rte_arch_bswap64() argument
47 return (_x >> 5 in rte_arch_bswap64()
[all...]
/dpdk/app/test-flow-perf/
H A Dconfig.h5 #define FLOW_ITEM_MASK(_x) (UINT64_C(1) << _x) argument
6 #define FLOW_ACTION_MASK(_x) (UINT64_C(1) << _x) argument
7 #define FLOW_ATTR_MASK(_x) (UINT64_C(1) << _x) argument
/dpdk/lib/eal/x86/include/
H A Drte_byteorder.h27 static inline uint16_t rte_arch_bswap16(uint16_t _x) in rte_arch_bswap16() argument
29 uint16_t x = _x; in rte_arch_bswap16()
42 static inline uint32_t rte_arch_bswap32(uint32_t _x) in rte_arch_bswap32() argument
44 uint32_t x = _x; in rte_arch_bswap32()
H A Drte_byteorder_64.h21 static inline uint64_t rte_arch_bswap64(uint64_t _x) in rte_arch_bswap64() argument
23 uint64_t x = _x; in rte_arch_bswap64()
/dpdk/drivers/common/sfc_efx/base/
H A Defx_types.h259 #define __SWAP16(_x) \ argument
260 ((((_x) & 0xff) << 8) | \
261 (((_x) >> 8) & 0xff))
263 #define __SWAP32(_x) \ argument
264 ((__SWAP16((_x) & 0xffff) << 16) | \
265 __SWAP16(((_x) >> 16) & 0xffff))
267 #define __SWAP64(_x) \ argument
268 ((__SWAP32((_x) & 0xffffffff) << 32) | \
269 __SWAP32(((_x) >> 32) & 0xffffffff))
271 #define __NOSWAP16(_x) (_x) argument
[all …]
H A Defx_annote.h56 #define __success(_x) argument
H A Defx_regs_mcdi.h225 #define MC_CMD_SENSOR_INFO_OUT_OFFSET_OFST(_x) \ argument
226 (MC_CMD_SENSOR_ENTRY_OFST + (_x))
/dpdk/drivers/common/sfc_efx/
H A Defsys.h757 #define EFSYS_ASSERT3(_x, _op, _y, _t) EFSYS_ASSERT((_t)(_x) _op (_t)(_y)) argument
759 #define EFSYS_ASSERT3U(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, uint64_t) argument
760 #define EFSYS_ASSERT3S(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, int64_t) argument
761 #define EFSYS_ASSERT3P(_x, _op, _y) EFSYS_ASSERT3(_x, _op, _y, uintptr_t) argument
/dpdk/drivers/common/nfp/
H A Dnfp_common.h19 #define NFP_QCP_QUEUE_OFF(_x) ((_x) * 0x800) argument
/dpdk/lib/eal/include/generic/
H A Drte_byteorder.h165 static uint16_t rte_bswap16(uint16_t _x);