Home
last modified time | relevance | path

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

1234

/openbmc/linux/drivers/input/mouse/
H A Dalps.h60 #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 …]
/openbmc/linux/arch/arm/crypto/
H A Dsha1-armv7-neon.S48 #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 …]
/openbmc/libmctp/
H A Drange.h12 typeof(b) _b = b; \
13 _a < _b ? _a : _b; \
21 typeof(b) _b = b; \
22 _a > _b ? _a : _b; \
/openbmc/qemu/include/qemu/
H A Dosdep.h395 #define MIN_INTERNAL(a, b, _a, _b) \ argument
397 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \
398 _a < _b ? _a : _b; \
402 MIN_INTERNAL((a), (b), MAKE_IDENTFIER(_a), MAKE_IDENTFIER(_b))
404 #define MAX_INTERNAL(a, b, _a, _b) \ argument
406 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \
407 _a > _b ? _a : _b; \
411 MAX_INTERNAL((a), (b), MAKE_IDENTFIER(_a), MAKE_IDENTFIER(_b))
437 #define MIN_NON_ZERO_INTERNAL(a, b, _a, _b) \ argument
439 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \
[all …]
/openbmc/u-boot/scripts/kconfig/
H A Dnconf.h29 typeof(b) _b = b;\
30 _a > _b ? _a : _b; })
34 typeof(b) _b = b;\
35 _a < _b ? _a : _b; })
/openbmc/linux/scripts/kconfig/
H A Dnconf.h27 typeof(b) _b = b;\
28 _a > _b ? _a : _b; })
32 typeof(b) _b = b;\
33 _a < _b ? _a : _b; })
/openbmc/linux/drivers/iio/adc/
H A Dad7793.c616 #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 …]
/openbmc/linux/include/linux/
H A Dsh_clk.h126 #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)
/openbmc/linux/drivers/gpu/drm/i915/gvt/
H A Dreg.h96 #define IS_MASKED_BITS_ENABLED(_val, _b) \ argument
97 (((_val) & _MASKED_BIT_ENABLE(_b)) == _MASKED_BIT_ENABLE(_b))
98 #define IS_MASKED_BITS_DISABLED(_val, _b) \ argument
99 ((_val) & _MASKED_BIT_DISABLE(_b))
/openbmc/linux/drivers/md/bcache/
H A Dbtree.h352 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); \
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dget_func_args_test.c71 int BPF_PROG(fmod_ret_test, int _a, int *_b, int _ret) in BPF_PROG() argument
84 test3_result &= err == 0 && ((int *) b == _b); in BPF_PROG()
100 int BPF_PROG(fexit_test, int _a, int *_b, int _ret) in BPF_PROG() argument
113 test4_result &= err == 0 && ((int *) b == _b); in BPF_PROG()
H A Dtest_perf_branches.c17 __u64 _b; member
/openbmc/linux/fs/afs/
H A Dvl_list.c74 static u16 afs_extract_le16(const u8 **_b) in afs_extract_le16() argument
78 val = (u16)*(*_b)++ << 0; in afs_extract_le16()
79 val |= (u16)*(*_b)++ << 8; in afs_extract_le16()
86 static struct afs_addr_list *afs_extract_vl_addrs(const u8 **_b, const u8 *end, in afs_extract_vl_addrs() argument
90 const u8 *b = *_b; in afs_extract_vl_addrs()
138 *_b = b; in afs_extract_vl_addrs()
142 *_b = b; in afs_extract_vl_addrs()
/openbmc/linux/drivers/soc/fsl/qbman/
H A Dqman_priv.h135 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()
/openbmc/linux/drivers/block/xen-blkback/
H A Dcommon.h365 #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);\
/openbmc/qemu/include/hw/
H A Dloader.h345 #define rom_add_blob_fixed(_f, _b, _l, _a) \ argument
346 rom_add_blob(_f, _b, _l, _l, _a, NULL, NULL, NULL, NULL, true)
353 #define rom_add_blob_fixed_as(_f, _b, _l, _a, _as) \ argument
354 rom_add_blob(_f, _b, _l, _l, _a, NULL, NULL, NULL, _as, true)
/openbmc/linux/arch/mips/include/asm/sn/sn0/
H A Dhubmd.h148 #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
/openbmc/linux/tools/testing/selftests/net/
H A Dpmtu.sh444 run_cmd ${ns_b} ip link set ${encap}_b up
580 run_cmd ${ns_b} ip link set vti${proto}_b up
631 run_cmd ${ns_b} ip link set ${type}_b up
864 run_cmd ${ns_b} ip link set ${type}_b up
1216 trace "${ns_a}" ${type}_a "${ns_b}" ${type}_b \
1235 mtu "${ns_b}" ${type}_b $((${ll_mtu} + 1000))
1315 mtu "${ns_b}" ${type}_b $((${ll_mtu} + 1000))
1416 trace "" "${tun_a}" "${ns_b}" ${type}_b \
1440 mtu "${ns_b}" ${type}_b $((${ll_mtu} + 1000))
1521 mtu "${ns_b}" ${encap}_b $((${ll_mtu} + 1000))
[all …]
/openbmc/linux/kernel/
H A Dstatic_call_inline.c76 static int static_call_site_cmp(const void *_a, const void *_b) in static_call_site_cmp() argument
79 const struct static_call_site *b = _b; in static_call_site_cmp()
92 static void static_call_site_swap(void *_a, void *_b, int size) in static_call_site_swap() argument
94 long delta = (unsigned long)_a - (unsigned long)_b; in static_call_site_swap()
96 struct static_call_site *b = _b; in static_call_site_swap()
/openbmc/linux/drivers/scsi/fnic/
H A Dfnic_trace.h73 #define FNIC_TRACE(_fn, _hn, _t, _a, _b, _c, _d, _e) \ argument
87 trace_buf->data[1] = (u64)(unsigned long)_b; \
/openbmc/linux/drivers/media/platform/samsung/exynos4-is/
H A Dfimc-isp.h107 #define to_isp_video_buf(_b) container_of(_b, struct isp_video_buf, vb) argument
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dbtf_dump.c307 #define TEST_BTF_DUMP_DATA(_b, _d, _prefix, _str, _type, _flags, \ argument
315 (void) btf_dump_data(_b, _d, _ptrtype, _prefix, _flags, \
321 #define TEST_BTF_DUMP_DATA_C(_b, _d, _prefix, _str, _type, _flags, \ argument
323 TEST_BTF_DUMP_DATA(_b, _d, _prefix, _str, _type, _flags, \
327 #define TEST_BTF_DUMP_DATA_OVER(_b, _d, _prefix, _str, _type, _type_sz, \ argument
335 (void) btf_dump_data(_b, _d, _ptrtype, _prefix, 0, \
339 #define TEST_BTF_DUMP_VAR(_b, _d, _prefix, _str, _var, _type, _flags, \ argument
345 (void) btf_dump_data(_b, _d, _var, _prefix, _flags, \
/openbmc/linux/arch/x86/kernel/
H A Dunwind_orc.c250 static void orc_sort_swap(void *_a, void *_b, int size) in orc_sort_swap() argument
253 int *a = _a, *b = _b, tmp; in orc_sort_swap()
254 int delta = _b - _a; in orc_sort_swap()
267 static int orc_sort_cmp(const void *_a, const void *_b) in orc_sort_cmp() argument
270 const int *a = _a, *b = _b; in orc_sort_cmp()
/openbmc/linux/drivers/sh/intc/
H A Dinternals.h109 const struct intc_handle_int *_b = b; in intc_handle_int_cmp() local
111 return _a->irq - _b->irq; in intc_handle_int_cmp()
/openbmc/linux/arch/mips/crypto/
H A Dchacha-core.S128 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; \

1234