Home
last modified time | relevance | path

Searched refs:_b (Results 1 – 8 of 8) sorted by relevance

/dpdk/drivers/common/sfc_efx/base/
H A Defx_hash.c47 _c += _b; \
48 _b -= _a; \
51 _c -= _b; \
53 _b += _a; \
56 _c += _b; \
57 _b -= _a; \
60 _c -= _b; \
62 _b += _a; \
69 _c ^= _b; \
73 _b ^= _a; \
[all …]
/dpdk/drivers/net/nfp/nfpcore/nfp-common/
H A Dnfp_resid.h180 typeof(b) _b = (b); \
182 (((int)(_b) >= 0) && ((int)(_b) < 12))) ? \
183 (int)(((_a) << 4) | ((_b) + 4)) : -1) \
/dpdk/drivers/net/sfc/
H A Dsfc_dp.h28 typeof(b) _b = (b); \
30 (_a + (_b - 1)) / _b; \
/dpdk/drivers/bus/dpaa/base/qbman/
H A Dqman_priv.h70 const u32 *_b = b->q.state; in qman_cgrs_and() local
73 *(_d++) = *(_a++) & *(_b++); in qman_cgrs_and()
83 const u32 *_b = b->q.state; in qman_cgrs_xor() local
86 *(_d++) = *(_a++) ^ *(_b++); in qman_cgrs_xor()
/dpdk/lib/eal/include/
H A Drte_common.h621 typeof (b) _b = (b); \
622 _a < _b ? _a : _b; \
631 typeof (b) _b = (b); \
632 _a > _b ? _a : _b; \
/dpdk/drivers/net/bnx2x/
H A Decore_sp.h115 #define ECORE_MEMCMP(_a, _b, _s) memcmp(_a, _b, _s) argument
116 #define ECORE_MEMCPY(_a, _b, _s) rte_memcpy(_a, _b, _s) argument
198 #define ecore_sp_post(_sc, _a, _b, _c, _d) \ argument
199 bnx2x_sp_post(_sc, _a, _b, U64_HI(_c), U64_LO(_c), _d)
/dpdk/drivers/net/avp/
H A Davp_ethdev.c1200 uint16_t *_b = (uint16_t *)&b->addr_bytes[0]; in _avp_cmp_ether_addr() local
1201 return (_a[0] ^ _b[0]) | (_a[1] ^ _b[1]) | (_a[2] ^ _b[2]); in _avp_cmp_ether_addr()
/dpdk/drivers/net/ice/base/
H A Dice_type.h33 #define MIN_T(_t, _a, _b) min((_t)(_a), (_t)(_b)) argument