| /drivers/input/mouse/ |
| A D | alps.h | 60 #define IS_SS4PLUS_DEV(_b) (((_b[0]) == 0x73) && \ argument 65 #define SS4_IS_IDLE_V2(_b) (((_b[0]) == 0x18) && \ argument 73 #define SS4_1F_X_V2(_b) (((_b[0]) & 0x0007) | \ argument 79 #define SS4_1F_Y_V2(_b) (((_b[2]) & 0x000F) | \ argument 85 #define SS4_1F_Z_V2(_b) (((_b[5]) & 0x0F) | \ argument 90 #define SS4_1F_LFB_V2(_b) (((_b[2] >> 4) & 0x01) == 0x01) argument 109 #define SS4_BTL_MF_X_V2(_b, _i) (SS4_STD_MF_X_V2(_b, _i) | \ argument 117 #define SS4_BTL_MF_Y_V2(_b, _i) (SS4_STD_MF_Y_V2(_b, _i) | \ argument 125 #define SS4_IS_MF_CONTINUE(_b) ((_b[2] & 0x10) == 0x10) argument 126 #define SS4_IS_5F_DETECTED(_b) ((_b[2] & 0x10) == 0x10) argument [all …]
|
| /drivers/iio/adc/ |
| A D | ad7793.c | 620 #define DECLARE_AD7793_CHANNELS(_name, _b, _sb, _s) \ argument 626 AD7793_TEMP_CHANNEL(4, AD7793_CH_TEMP, (_b), (_sb), (_s)), \ 631 #define DECLARE_AD7795_CHANNELS(_name, _b, _sb) \ argument 633 AD7793_DIFF_CHANNEL(0, 0, 0, AD7793_CH_AIN1P_AIN1M, (_b), (_sb), 0), \ 634 AD7793_DIFF_CHANNEL(1, 1, 1, AD7793_CH_AIN2P_AIN2M, (_b), (_sb), 0), \ 635 AD7793_DIFF_CHANNEL(2, 2, 2, AD7793_CH_AIN3P_AIN3M, (_b), (_sb), 0), \ 636 AD7793_DIFF_CHANNEL(3, 3, 3, AD7795_CH_AIN4P_AIN4M, (_b), (_sb), 0), \ 640 AD7793_TEMP_CHANNEL(7, AD7793_CH_TEMP, (_b), (_sb), 0), \ 645 #define DECLARE_AD7797_CHANNELS(_name, _b, _sb) \ argument 649 AD7793_TEMP_CHANNEL(2, AD7793_CH_TEMP, (_b), (_sb), 0), \ [all …]
|
| /drivers/hid/bpf/progs/ |
| A D | hid_bpf_helpers.h | 177 …RG11(_1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b) _1; _2; _3; _4; _5; _6; _7; _8; _… argument 178 …RG12(_1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b, _c) _1; _2; _3; _4; _5; _6; _7; _8; _… argument 179 …RG13(_1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b, _c, _d) _1; _2; _3; _4; _5; _6; _7; _8; _… argument 180 …RG14(_1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b, _c, _d, _e) _1; _2; _3; _4; _5; _6; _7; _8; _… argument 181 …RG15(_1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b, _c, _d, _e, _f) _1; _2; _3; _4; _5; _6; _7; _8; _… argument
|
| /drivers/gpu/drm/i915/gvt/ |
| A D | reg.h | 93 #define IS_MASKED_BITS_ENABLED(_val, _b) \ argument 94 (((_val) & _MASKED_BIT_ENABLE(_b)) == _MASKED_BIT_ENABLE(_b)) 95 #define IS_MASKED_BITS_DISABLED(_val, _b) \ argument 96 ((_val) & _MASKED_BIT_DISABLE(_b))
|
| /drivers/md/bcache/ |
| A D | btree.h | 352 struct btree *_b = (c)->root; \ 353 bool _w = insert_lock(op, _b); \ 354 rw_lock(_w, _b, _b->level); \ 355 if (_b == (c)->root && \ 356 _w == insert_lock(op, _b)) { \ 357 _r = bch_btree_ ## fn(_b, op, ##__VA_ARGS__); \ 359 rw_unlock(_w, _b); \
|
| /drivers/block/xen-blkback/ |
| A D | common.h | 365 #define xen_blkif_get(_b) (atomic_inc(&(_b)->refcnt)) argument 366 #define xen_blkif_put(_b) \ argument 368 if (atomic_dec_and_test(&(_b)->refcnt)) \ 369 schedule_work(&(_b)->free_work);\
|
| /drivers/soc/fsl/qbman/ |
| A D | qman_priv.h | 135 const u32 *_b = b->q.state; in qman_cgrs_and() local 138 *_d++ = *_a++ & *_b++; in qman_cgrs_and() 147 const u32 *_b = b->q.state; in qman_cgrs_xor() local 150 *_d++ = *_a++ ^ *_b++; in qman_cgrs_xor()
|
| /drivers/gpu/drm/imagination/ |
| A D | pvr_rogue_meta.h | 321 u32 _a = (a), _b = (b); \ 323 ((_a) < (ROGUE_META_COREMEM_CODE_ADDR + (_b))); \ 327 u32 _a = (a), _b = (b); \ 329 ((_a) < (ROGUE_META_COREMEM_DATA_ADDR + (_b))); \
|
| /drivers/media/platform/samsung/exynos4-is/ |
| A D | fimc-isp.h | 107 #define to_isp_video_buf(_b) container_of(_b, struct isp_video_buf, vb) argument
|
| /drivers/scsi/fnic/ |
| A D | fnic_trace.h | 73 #define FNIC_TRACE(_fn, _hn, _t, _a, _b, _c, _d, _e) \ argument 87 trace_buf->data[1] = (u64)(unsigned long)_b; \
|
| /drivers/dma-buf/ |
| A D | dma-fence-unwrap.c | 64 static int fence_cmp(const void *_a, const void *_b) in fence_cmp() argument 67 struct dma_fence *b = *(struct dma_fence **)_b; in fence_cmp()
|
| /drivers/sh/intc/ |
| A D | internals.h | 109 const struct intc_handle_int *_b = b; in intc_handle_int_cmp() local 111 return _a->irq - _b->irq; in intc_handle_int_cmp()
|
| /drivers/crypto/intel/qat/qat_common/ |
| A D | adf_tl_debugfs.c | 88 __unqual_scalar_typeof(_array[0]) _a, _b; \ 94 _b = do_div(_a, _len); \ 96 if (_y >= _len - _b) { \ 98 _y -= _len - _b; \ 100 _y += _b; \
|
| /drivers/net/ethernet/airoha/ |
| A D | airoha_regs.h | 436 #define REG_INT_ENABLE(_b, _n) \ argument 437 (((_n) == 4) ? 0x0750 + ((_b) << 5) : \ 438 ((_n) == 3) ? 0x0744 + ((_b) << 5) : \ 439 ((_n) == 2) ? 0x0740 + ((_b) << 5) : \ 440 ((_n) == 1) ? 0x002c + ((_b) << 3) : \ 441 0x0028 + ((_b) << 3))
|
| /drivers/gpu/drm/tiny/ |
| A D | bochs.c | 188 #define bochs_hw_set_native_endian(_b) bochs_hw_set_big_endian(_b) argument 190 #define bochs_hw_set_native_endian(_b) bochs_hw_set_little_endian(_b) argument
|
| /drivers/gpu/drm/amd/amdgpu/ |
| A D | amdgpu_bo_list.c | 59 static int amdgpu_bo_list_entry_cmp(const void *_a, const void *_b) in amdgpu_bo_list_entry_cmp() argument 61 const struct amdgpu_bo_list_entry *a = _a, *b = _b; in amdgpu_bo_list_entry_cmp()
|
| /drivers/comedi/drivers/ |
| A D | ni_stc.h | 435 #define NISTC_RTSI_TRIG_TO_SRC(_c, _b) (((_b) >> (((_c) % 4) * 4)) & 0xf) argument 808 #define NI_M_PFI_OUT_SEL_TO_SRC(_c, _b) (((_b) >> NI_M_PFI_CHAN(_c)) & 0x1f) argument
|
| /drivers/net/wireless/intersil/p54/ |
| A D | eeprom.c | 105 const void *_b) in p54_compare_channels() argument 108 const struct p54_channel_entry *b = _b; in p54_compare_channels() 114 const void *_b) in p54_compare_rssichan() argument 117 const struct p54_rssi_db_entry *b = _b; in p54_compare_rssichan()
|
| /drivers/ps3/ |
| A D | ps3-vuart.c | 102 #define dump_ports_bmp(_b) _dump_ports_bmp(_b, __func__, __LINE__) argument 109 #define dump_port_params(_b) _dump_port_params(_b, __func__, __LINE__) argument
|
| /drivers/clk/tegra/ |
| A D | clk-tegra124-emc.c | 429 static int cmp_timings(const void *_a, const void *_b) in cmp_timings() argument 432 const struct emc_timing *b = _b; in cmp_timings()
|
| /drivers/scsi/csiostor/ |
| A D | csio_hw.h | 559 #define csio_reg(_b, _r) ((_b) + (_r)) argument
|
| /drivers/net/wireless/realtek/rtw89/ |
| A D | phy.h | 23 #define phy_div(a, b) ({typeof(b) _b = (b); (_b) ? ((a) / (_b)) : 0; })
|
| /drivers/clk/nxp/ |
| A D | clk-lpc32xx.c | 1166 #define LPC32XX_DEFINE_CLK(_idx, _reg, _e, _em, _d, _dm, _b, _bm, _ops) \ argument 1179 .busy = (_b), \ 1187 #define LPC32XX_DEFINE_USB(_idx, _ce, _cd, _cm, _e, _b, _ops) \ argument 1199 .busy = (_b), \
|
| /drivers/base/regmap/ |
| A D | regcache.c | 710 const struct reg_default *_b = b; in regcache_default_cmp() local 712 return _a->reg - _b->reg; in regcache_default_cmp()
|
| /drivers/gpu/drm/i915/display/ |
| A D | intel_dpll_mgr.c | 662 const struct intel_dpll_hw_state *_b) in ibx_compare_hw_state() argument 665 const struct i9xx_dpll_hw_state *b = &_b->i9xx; in ibx_compare_hw_state() 1264 const struct intel_dpll_hw_state *_b) in hsw_compare_hw_state() argument 1267 const struct hsw_dpll_hw_state *b = &_b->hsw; in hsw_compare_hw_state() 1997 const struct intel_dpll_hw_state *_b) in skl_compare_hw_state() argument 2000 const struct skl_dpll_hw_state *b = &_b->skl; in skl_compare_hw_state() 2472 const struct intel_dpll_hw_state *_b) in bxt_compare_hw_state() argument 2475 const struct bxt_dpll_hw_state *b = &_b->bxt; in bxt_compare_hw_state() 4110 const struct intel_dpll_hw_state *_b) in icl_compare_hw_state() argument 4113 const struct icl_dpll_hw_state *b = &_b->icl; in icl_compare_hw_state()
|