| /freebsd-13.1/sys/dev/bhnd/nvram/ |
| H A D | bhnd_nvram_value_prf.c | 588 #define NV_ENCODE_INT(_width) do { \ in bhnd_nvram_val_vprintf() argument 589 arg_type = (is_signed) ? BHND_NVRAM_TYPE_INT ## _width : \ in bhnd_nvram_val_vprintf() 590 BHND_NVRAM_TYPE_UINT ## _width; \ in bhnd_nvram_val_vprintf() 591 arg_size = sizeof(v.u ## _width); \ in bhnd_nvram_val_vprintf() 593 &v.u ## _width, &arg_size, arg_type); \ in bhnd_nvram_val_vprintf() 601 if (v.i ## _width < 0) { \ in bhnd_nvram_val_vprintf() 603 numval = (int64_t)-(v.i ## _width); \ in bhnd_nvram_val_vprintf() 605 numval = (int64_t) (v.i ## _width); \ in bhnd_nvram_val_vprintf() 608 numval = v.u ## _width; \ in bhnd_nvram_val_vprintf()
|
| /freebsd-13.1/sys/dev/hwpmc/ |
| H A D | hwpmc_uncore.h | 119 int pmc_ucf_initialize(struct pmc_mdep *_md, int _maxcpu, int _npmc, int _width); 122 int pmc_ucp_initialize(struct pmc_mdep *_md, int _maxcpu, int _npmc, int _width,
|
| H A D | hwpmc_core.h | 189 int pmc_iaf_initialize(struct pmc_mdep *_md, int _maxcpu, int _npmc, int _width); 192 int pmc_iap_initialize(struct pmc_mdep *_md, int _maxcpu, int _npmc, int _width,
|
| /freebsd-13.1/sys/dev/axgbe/ |
| H A D | xgbe-common.h | 1428 #define GET_BITS(_var, _index, _width) \ argument 1429 (((_var) >> (_index)) & ((0x1 << (_width)) - 1)) 1431 #define SET_BITS(_var, _index, _width, _val) \ argument 1433 (_var) &= ~(((0x1 << (_width)) - 1) << (_index)); \ 1434 (_var) |= (((_val) & ((0x1 << (_width)) - 1)) << (_index)); \ 1437 #define GET_BITS_LE(_var, _index, _width) \ argument 1438 ((le32_to_cpu((_var)) >> (_index)) & ((0x1 << (_width)) - 1)) 1440 #define SET_BITS_LE(_var, _index, _width, _val) \ argument 1442 (_var) &= cpu_to_le32(~(((0x1 << (_width)) - 1) << (_index))); \ 1444 ((0x1 << (_width)) - 1)) << (_index))); \
|
| /freebsd-13.1/sys/dev/bhnd/tools/ |
| H A D | nvram_map_gen.awk | 791 _width, _offset, _delta) 823 _delta % _width == 0 && 824 (_delta/_width) <= SPROM_OP_IMM_MAX) 829 value = (_delta / _width) 867 } else if (value % _width == 0 && (value / _width) <= UInt8Max) { 1115 _width = get(_type, p_width) 1123 set(_obj, p_width, _width) 1153 _width = get(bind, p_width) 1170 if ((_delta % _width) != 0) 1174 _skip_in = _delta / _width [all …]
|
| /freebsd-13.1/sys/arm64/freescale/imx/ |
| H A D | imx_ccm_clk.h | 197 #define DIV(_id, _name, _pname, _o, _shift, _width) \ argument 208 .i_width = _width, \
|
| /freebsd-13.1/contrib/file/magic/Magdir/ |
| H A D | xwindows | 39 >&0 regex [a-zA-Z0-9]+_width\040 xbm image
|
| /freebsd-13.1/lib/libpmc/ |
| H A D | pmc.h | 96 int pmc_width(pmc_id_t _pmc, uint32_t *_width);
|
| /freebsd-13.1/sys/dev/bhnd/ |
| H A D | bhnd.h | 263 #define BHND_DMA_ADDR_BITMASK(_width) \ argument 264 ((_width >= 64) ? ~0ULL : \ 265 (_width == 0) ? 0x0 : \ 266 ((1ULL << (_width)) - 1)) \
|
| /freebsd-13.1/sys/contrib/alpine-hal/ |
| H A D | al_hal_serdes_25g.c | 760 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()
|
| /freebsd-13.1/sys/ofed/drivers/infiniband/core/ |
| H A D | ib_sysfs.c | 450 #define PORT_PMA_ATTR(_name, _counter, _width, _offset) \ argument 453 .index = (_offset) | ((_width) << 16) | ((_counter) << 24), \ 457 #define PORT_PMA_ATTR_EXT(_name, _width, _offset) \ argument 460 .index = (_offset) | ((_width) << 16), \
|
| /freebsd-13.1/sys/arm/allwinner/clkng/ |
| H A D | aw_clk.h | 558 _offset, _shift, _width) \ argument 568 .width = _width, \
|
| /freebsd-13.1/sys/dev/ice/ |
| H A D | ice_lan_tx_rx.h | 851 #define ICE_CTX_STORE(_struct, _ele, _width, _lsb) { \ argument 854 .width = _width, \
|