| /linux/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 …]
|
| /linux/arch/arm/crypto/ |
| A D | sha1-armv7-neon.S | 48 #define _b r5 macro 328 _R( _a, _b, _c, _d, _e, F1, 0, 331 _R( _e, _a, _b, _c, _d, F1, 1, 334 _R( _d, _e, _a, _b, _c, F1, 2, 337 _R( _c, _d, _e, _a, _b, F1, 3, 343 _R( _b, _c, _d, _e, _a, F1, 4, 346 _R( _a, _b, _c, _d, _e, F1, 5, 349 _R( _e, _a, _b, _c, _d, F1, 6, 352 _R( _d, _e, _a, _b, _c, F1, 7, 590 add _b, RT1; [all …]
|
| /linux/drivers/iio/adc/ |
| A D | ad7793.c | 616 #define DECLARE_AD7793_CHANNELS(_name, _b, _sb, _s) \ argument 622 AD7793_TEMP_CHANNEL(4, AD7793_CH_TEMP, (_b), (_sb), (_s)), \ 627 #define DECLARE_AD7795_CHANNELS(_name, _b, _sb) \ argument 629 AD7793_DIFF_CHANNEL(0, 0, 0, AD7793_CH_AIN1P_AIN1M, (_b), (_sb), 0), \ 630 AD7793_DIFF_CHANNEL(1, 1, 1, AD7793_CH_AIN2P_AIN2M, (_b), (_sb), 0), \ 631 AD7793_DIFF_CHANNEL(2, 2, 2, AD7793_CH_AIN3P_AIN3M, (_b), (_sb), 0), \ 632 AD7793_DIFF_CHANNEL(3, 3, 3, AD7795_CH_AIN4P_AIN4M, (_b), (_sb), 0), \ 636 AD7793_TEMP_CHANNEL(7, AD7793_CH_TEMP, (_b), (_sb), 0), \ 641 #define DECLARE_AD7797_CHANNELS(_name, _b, _sb) \ argument 645 AD7793_TEMP_CHANNEL(2, AD7793_CH_TEMP, (_b), (_sb), 0), \ [all …]
|
| /linux/scripts/kconfig/ |
| A D | nconf.h | 27 typeof(b) _b = b;\ 28 _a > _b ? _a : _b; }) 32 typeof(b) _b = b;\ 33 _a < _b ? _a : _b; })
|
| /linux/drivers/staging/r8188eu/include/ |
| A D | rtw_io.h | 288 #define PlatformEFIOWrite1Byte(_a,_b,_c) \ argument 289 rtw_write8(_a,_b,_c) 290 #define PlatformEFIOWrite2Byte(_a,_b,_c) \ argument 291 rtw_write16(_a,_b,_c) 293 rtw_write32(_a,_b,_c) 295 #define PlatformEFIORead1Byte(_a,_b) \ argument 296 rtw_read8(_a,_b) 297 #define PlatformEFIORead2Byte(_a,_b) \ argument 298 rtw_read16(_a,_b) 299 #define PlatformEFIORead4Byte(_a,_b) \ argument [all …]
|
| /linux/include/linux/ |
| A D | sh_clk.h | 126 #define SH_CLK_MSTP32(_p, _r, _b, _f) \ argument 127 SH_CLK_MSTP(_p, _r, _b, 0, _f | CLK_ENABLE_REG_32BIT) 129 #define SH_CLK_MSTP32_STS(_p, _r, _b, _s, _f) \ argument 130 SH_CLK_MSTP(_p, _r, _b, _s, _f | CLK_ENABLE_REG_32BIT) 132 #define SH_CLK_MSTP16(_p, _r, _b, _f) \ argument 133 SH_CLK_MSTP(_p, _r, _b, 0, _f | CLK_ENABLE_REG_16BIT) 135 #define SH_CLK_MSTP8(_p, _r, _b, _f) \ argument 136 SH_CLK_MSTP(_p, _r, _b, 0, _f | CLK_ENABLE_REG_8BIT)
|
| /linux/drivers/gpu/drm/i915/gvt/ |
| A D | reg.h | 97 #define IS_MASKED_BITS_ENABLED(_val, _b) \ argument 98 (((_val) & _MASKED_BIT_ENABLE(_b)) == _MASKED_BIT_ENABLE(_b)) 99 #define IS_MASKED_BITS_DISABLED(_val, _b) \ argument 100 ((_val) & _MASKED_BIT_DISABLE(_b))
|
| /linux/drivers/md/bcache/ |
| A D | btree.h | 351 struct btree *_b = (c)->root; \ 352 bool _w = insert_lock(op, _b); \ 353 rw_lock(_w, _b, _b->level); \ 354 if (_b == (c)->root && \ 355 _w == insert_lock(op, _b)) { \ 356 _r = bch_btree_ ## fn(_b, op, ##__VA_ARGS__); \ 358 rw_unlock(_w, _b); \
|
| /linux/fs/afs/ |
| A D | vl_list.c | 81 static u16 afs_extract_le16(const u8 **_b) in afs_extract_le16() argument 85 val = (u16)*(*_b)++ << 0; in afs_extract_le16() 86 val |= (u16)*(*_b)++ << 8; in afs_extract_le16() 93 static struct afs_addr_list *afs_extract_vl_addrs(const u8 **_b, const u8 *end, in afs_extract_vl_addrs() argument 97 const u8 *b = *_b; in afs_extract_vl_addrs() 145 *_b = b; in afs_extract_vl_addrs() 149 *_b = b; in afs_extract_vl_addrs()
|
| /linux/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()
|
| /linux/tools/testing/selftests/net/ |
| A D | pmtu.sh | 428 run_cmd ${ns_b} ip link set ${encap}_b up 560 run_cmd ${ns_b} ip link set vti${proto}_b up 611 run_cmd ${ns_b} ip link set ${type}_b up 824 run_cmd ${ns_b} ip link set ${type}_b up 1078 trace "${ns_a}" ${type}_a "${ns_b}" ${type}_b \ 1097 mtu "${ns_b}" ${type}_b $((${ll_mtu} + 1000)) 1177 mtu "${ns_b}" ${type}_b $((${ll_mtu} + 1000)) 1243 trace "" "${tun_a}" "${ns_b}" ${type}_b \ 1267 mtu "${ns_b}" ${type}_b $((${ll_mtu} + 1000)) 1348 mtu "${ns_b}" ${encap}_b $((${ll_mtu} + 1000)) [all …]
|
| /linux/arch/mips/include/asm/sn/sn0/ |
| A D | hubmd.h | 148 #define MMC_BANK_SHFT(_b) ((_b) * 3) argument 149 #define MMC_BANK_MASK(_b) (UINT64_CAST 7 << MMC_BANK_SHFT(_b)) argument 266 #define MD_BANK_OFFSET(_b) (UINT64_CAST (_b) << MD_BANK_SHFT) argument
|
| /linux/kernel/ |
| A D | static_call.c | 65 static int static_call_site_cmp(const void *_a, const void *_b) in static_call_site_cmp() argument 68 const struct static_call_site *b = _b; in static_call_site_cmp() 81 static void static_call_site_swap(void *_a, void *_b, int size) in static_call_site_swap() argument 83 long delta = (unsigned long)_a - (unsigned long)_b; in static_call_site_swap() 85 struct static_call_site *b = _b; in static_call_site_swap()
|
| A D | groups.c | 76 static int gid_cmp(const void *_a, const void *_b) in gid_cmp() argument 79 kgid_t b = *(kgid_t *)_b; in gid_cmp()
|
| /linux/drivers/block/xen-blkback/ |
| A D | common.h | 362 #define xen_blkif_get(_b) (atomic_inc(&(_b)->refcnt)) argument 363 #define xen_blkif_put(_b) \ argument 365 if (atomic_dec_and_test(&(_b)->refcnt)) \ 366 schedule_work(&(_b)->free_work);\
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| A D | btf_dump.c | 284 #define TEST_BTF_DUMP_DATA(_b, _d, _prefix, _str, _type, _flags, \ argument 292 (void) btf_dump_data(_b, _d, _ptrtype, _prefix, _flags, \ 298 #define TEST_BTF_DUMP_DATA_C(_b, _d, _prefix, _str, _type, _flags, \ argument 300 TEST_BTF_DUMP_DATA(_b, _d, _prefix, _str, _type, _flags, \ 304 #define TEST_BTF_DUMP_DATA_OVER(_b, _d, _prefix, _str, _type, _type_sz, \ argument 312 (void) btf_dump_data(_b, _d, _ptrtype, _prefix, 0, \ 316 #define TEST_BTF_DUMP_VAR(_b, _d, _prefix, _str, _var, _type, _flags, \ argument 322 (void) btf_dump_data(_b, _d, _var, _prefix, _flags, \
|
| /linux/drivers/scsi/fnic/ |
| A D | fnic_trace.h | 87 #define FNIC_TRACE(_fn, _hn, _t, _a, _b, _c, _d, _e) \ argument 101 trace_buf->data[1] = (u64)(unsigned long)_b; \
|
| /linux/drivers/media/platform/exynos4-is/ |
| A D | fimc-isp.h | 107 #define to_isp_video_buf(_b) container_of(_b, struct isp_video_buf, vb) argument
|
| /linux/arch/x86/kernel/ |
| A D | unwind_orc.c | 196 static void orc_sort_swap(void *_a, void *_b, int size) in orc_sort_swap() argument 200 int *a = _a, *b = _b, tmp; in orc_sort_swap() 201 int delta = _b - _a; in orc_sort_swap() 216 static int orc_sort_cmp(const void *_a, const void *_b) in orc_sort_cmp() argument 219 const int *a = _a, *b = _b; in orc_sort_cmp()
|
| /linux/arch/mips/crypto/ |
| A D | chacha-core.S | 128 CONCAT3(.Lchacha_mips_xor_unaligned_, PLUS_ONE(x), _b: ;) \ 145 CONCAT3(.Lchacha_mips_xor_aligned_, PLUS_ONE(x), _b: ;) \ 167 b .Lchacha_mips_xor_aligned_ ## x ## _b; \ 178 b .Lchacha_mips_xor_unaligned_ ## x ## _b; \
|
| /linux/drivers/net/wireless/realtek/rtw89/ |
| A D | phy.h | 22 #define phy_div(a, b) ({typeof(b) _b = (b); (_b) ? ((a) / (_b)) : 0; })
|
| /linux/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()
|
| /linux/drivers/cpufreq/ |
| A D | s3c24xx-cpufreq.c | 500 #define do_min(_a, _b) ((_a) == 0 ? (_b) : (_b) == 0 ? (_a) : min(_a, _b)) argument
|
| /linux/arch/arm/mach-footbridge/ |
| A D | dc21285.c | 275 #define dc21285_request_irq(_a, _b, _c, _d, _e) \ argument 276 WARN_ON(request_irq(_a, _b, _c, _d, _e) < 0)
|
| /linux/drivers/gpu/drm/tiny/ |
| A D | bochs.c | 167 #define bochs_hw_set_native_endian(_b) bochs_hw_set_big_endian(_b) argument 169 #define bochs_hw_set_native_endian(_b) bochs_hw_set_little_endian(_b) argument
|