Home
last modified time | relevance | path

Searched refs:_width (Results 1 – 5 of 5) sorted by relevance

/f-stack/dpdk/drivers/net/axgbe/
H A Daxgbe_common.h1375 #define GET_BITS(_var, _index, _width) \ argument
1376 (((_var) >> (_index)) & ((0x1 << (_width)) - 1))
1378 #define SET_BITS(_var, _index, _width, _val) \ argument
1380 (_var) &= ~(((0x1 << (_width)) - 1) << (_index)); \
1381 (_var) |= (((_val) & ((0x1 << (_width)) - 1)) << (_index)); \
1384 #define GET_BITS_LE(_var, _index, _width) \ argument
1385 ((rte_le_to_cpu_32((_var)) >> (_index)) & ((0x1 << (_width)) - 1))
1387 #define SET_BITS_LE(_var, _index, _width, _val) \ argument
1389 (_var) &= rte_cpu_to_le_32(~(((0x1U << (_width)) - 1) << (_index)));\
1391 ((0x1U << (_width)) - 1)) << (_index))); \
/f-stack/freebsd/arm64/freescale/imx/
H A Dimx_ccm_clk.h197 #define DIV(_id, _name, _pname, _o, _shift, _width) \ argument
208 .i_width = _width, \
/f-stack/freebsd/arm/allwinner/clkng/
H A Daw_clk.h558 _offset, _shift, _width) \ argument
568 .width = _width, \
/f-stack/freebsd/contrib/alpine-hal/
H A Dal_hal_serdes_25g.c760 int _width = 0; in al_serdes_25g_calc_eye_size() local
818 i++, (_width)++) in al_serdes_25g_calc_eye_size()
822 i--, (_width)++) in al_serdes_25g_calc_eye_size()
826 *width = _width; in al_serdes_25g_calc_eye_size()
/f-stack/dpdk/drivers/net/ice/base/
H A Dice_lan_tx_rx.h929 #define ICE_CTX_STORE(_struct, _ele, _width, _lsb) { \ argument
932 .width = _width, \