/linux/fs/bcachefs/ |
H A D | siphash.h | 75 #define SipHash24_Init(_c, _k) SipHash_Init((_c), (_k)) argument 76 #define SipHash24_Update(_c, _p, _l) SipHash_Update((_c), 2, 4, (_p), (_l)) argument 78 #define SipHash24_Final(_d, _c) SipHash_Final((_d), (_c), 2, 4) argument 81 #define SipHash48_Init(_c, _k) SipHash_Init((_c), (_k)) argument 82 #define SipHash48_Update(_c, _p, _l) SipHash_Update((_c), 4, 8, (_p), (_l)) argument 84 #define SipHash48_Final(_d, _c) SipHash_Final((_d), (_c), 4, 8) argument
|
H A D | async_objs.h | 18 #define async_object_list_del(_c, _list, idx) \ argument 21 #define async_object_list_add(_c, _list, obj, idx) \ argument 30 #define async_object_list_del(_c, _n, idx) do {} while (0) argument 36 #define async_object_list_add(_c, _n, obj, idx) __async_object_list_add() argument
|
H A D | sb-members.h | 101 #define for_each_member_device_rcu(_c, _ca, _mask) \ argument 105 #define for_each_online_member_rcu(_c, _ca) \ argument 108 #define for_each_rw_member_rcu(_c, _ca) \ argument 152 #define __for_each_member_device(_c, _ca) \ argument 155 #define for_each_member_device(_c, _ca) \ argument 176 #define __for_each_online_member(_c, _ca, state_mask, rw, ref_idx) \ argument
|
H A D | bcachefs.h | 257 #define count_event(_c, _name) this_cpu_inc((_c)->counters[BCH_COUNTER_##_name]) argument 259 #define trace_and_count(_c, _name, ...) \ argument 278 #define bch2_log_msg(_c, fmt) "bcachefs (%s): " fmt, ((_c)->name) argument 281 #define bch2_fmt_inum(_c, _inum, fmt) "bcachefs (%s inum %llu): " fmt "\n", ((_c)->name), (_inum) argument 282 #define bch2_fmt_inum_offset(_c, _inum, _offset, fmt) \ argument 287 #define bch2_log_msg(_c, fmt) fmt argument 290 #define bch2_fmt_inum(_c, _inum, fmt) "inum %llu: " fmt "\n", (_inum) argument 291 #define bch2_fmt_inum_offset(_c, _inum, _offset, fmt) \ argument 296 #define bch2_fmt(_c, fmt) bch2_log_msg(_c, fmt "\n") argument 306 #define maybe_dev_to_fs(_c) _Generic((_c), \ argument [all …]
|
H A D | error.h | 82 #define fsck_err_count(_c, _err) bch2_sb_err_count(_c, BCH_FSCK_ERR_##_err) argument 85 #define bch2_count_fsck_err(_c, _err, ...) \ argument
|
H A D | btree_cache.h | 82 #define for_each_cached_btree(_b, _c, _tbl, _iter, _pos) \ argument
|
H A D | inode.h | 179 #define inode_opt_get(_c, _inode, _name) \ argument
|
H A D | alloc_foreground.h | 115 #define open_bucket_for_each(_c, _obs, _ob, _i) \ argument
|
/linux/drivers/reset/sti/ |
H A D | reset-syscfg.h | 28 #define _SYSCFG_RST_CH(_c, _rr, _rb, _ar, _ab) \ argument 33 #define _SYSCFG_RST_CH_NO_ACK(_c, _rr, _rb) \ argument
|
/linux/drivers/comedi/drivers/ |
H A D | ni_660x.c | 81 #define NI660X_DMA_CFG_SEL(_c, _s) (((_s) & 0x1f) << (8 * (_c))) argument 82 #define NI660X_DMA_CFG_SEL_MASK(_c) NI660X_DMA_CFG_SEL((_c), 0x1f) argument 83 #define NI660X_DMA_CFG_SEL_NONE(_c) NI660X_DMA_CFG_SEL((_c), 0x1f) argument 84 #define NI660X_DMA_CFG_RESET(_c) NI660X_DMA_CFG_SEL((_c), 0x80) argument 87 #define NI660X_IO_CFG_OUT_SEL(_c, _s) (((_s) & 0x3) << (((_c) % 2) ? 0 : 8)) argument 88 #define NI660X_IO_CFG_OUT_SEL_MASK(_c) NI660X_IO_CFG_OUT_SEL((_c), 0x3) argument 89 #define NI660X_IO_CFG_IN_SEL(_c, _s) (((_s) & 0x7) << (((_c) % 2) ? 4 : 12)) argument 90 #define NI660X_IO_CFG_IN_SEL_MASK(_c) NI660X_IO_CFG_IN_SEL((_c), 0x7) argument
|
H A D | ni_stc.h | 256 #define NISTC_RTSI_TRIG_DIR(_c, _m) ((_m) ? BIT(8 + (_c)) : BIT(7 + (_c))) argument 433 #define NISTC_RTSI_TRIG(_c, _s) (((_s) & 0xf) << (((_c) % 4) * 4)) argument 434 #define NISTC_RTSI_TRIG_MASK(_c) NISTC_RTSI_TRIG((_c), 0xf) argument 435 #define NISTC_RTSI_TRIG_TO_SRC(_c, _b) (((_b) >> (((_c) % 4) * 4)) & 0xf) argument 560 #define NI_E_DMA_G0_G1_SEL(_g, _c) (((_c) & 0xf) << ((_g) * 4)) argument 761 #define NI_M_PFI_FILTER_SEL(_c, _f) (((_f) & 0x3) << ((_c) * 2)) argument 762 #define NI_M_PFI_FILTER_SEL_MASK(_c) NI_M_PFI_FILTER_SEL((_c), 0x3) argument 805 #define NI_M_PFI_CHAN(_c) (((_c) % 3) * 5) argument 806 #define NI_M_PFI_OUT_SEL(_c, _s) (((_s) & 0x1f) << NI_M_PFI_CHAN(_c)) argument 807 #define NI_M_PFI_OUT_SEL_MASK(_c) (0x1f << NI_M_PFI_CHAN(_c)) argument [all …]
|
/linux/drivers/net/wireless/ath/ath5k/ |
H A D | desc.c | 174 #define _TX_FLAGS(_c, _flag) \ in ath5k_hw_setup_2word_tx_desc() argument 179 #define _TX_FLAGS_5211(_c, _flag) \ in ath5k_hw_setup_2word_tx_desc() argument 318 #define _TX_FLAGS(_c, _flag) \ in ath5k_hw_setup_4word_tx_desc() argument
|
/linux/drivers/hid/bpf/progs/ |
H A D | hid_bpf_helpers.h | 178 #define _ARG12(_1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b, _c) _1; _2; _3; _4; _5; _6; … argument 179 #define _ARG13(_1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b, _c, _d) _1; _2; _3; _4; _5; _6; … argument 180 #define _ARG14(_1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b, _c, _d, _e) _1; _2; _3; _4; _5; _6; … argument 181 #define _ARG15(_1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b, _c, _d, _e, _f) _1; _2; _3; _4; _5; _6; … argument
|
/linux/fs/jffs2/ |
H A D | background.c | 75 static int jffs2_garbage_collect_thread(void *_c) in jffs2_garbage_collect_thread()
|
/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_perf_branches.c | 18 __u64 _c; member
|
/linux/include/linux/ |
H A D | mroute.h | 81 struct mr_mfc _c; member
|
H A D | mroute6.h | 91 struct mr_mfc _c; member
|
/linux/drivers/net/wireless/ath/ath9k/ |
H A D | hw.h | 464 #define IS_CHAN_5GHZ(_c) (!!((_c)->channelFlags & CHANNEL_5GHZ)) argument 465 #define IS_CHAN_2GHZ(_c) (!IS_CHAN_5GHZ(_c)) argument 467 #define IS_CHAN_HALF_RATE(_c) (!!((_c)->channelFlags & CHANNEL_HALF)) argument 468 #define IS_CHAN_QUARTER_RATE(_c) (!!((_c)->channelFlags & CHANNEL_QUARTER)) argument 469 #define IS_CHAN_A_FAST_CLOCK(_ah, _c) \ argument 472 #define IS_CHAN_HT(_c) ((_c)->channelFlags & CHANNEL_HT) argument 474 #define IS_CHAN_HT20(_c) (IS_CHAN_HT(_c) && !IS_CHAN_HT40(_c)) argument 476 #define IS_CHAN_HT40(_c) \ argument 479 #define IS_CHAN_HT40PLUS(_c) ((_c)->channelFlags & CHANNEL_HT40PLUS) argument 480 #define IS_CHAN_HT40MINUS(_c) ((_c)->channelFlags & CHANNEL_HT40MINUS) argument
|
/linux/samples/seccomp/ |
H A D | bpf-direct.c | 163 #define payload(_c) (_c), sizeof((_c)) argument
|
/linux/drivers/scsi/fnic/ |
H A D | fnic_trace.h | 73 #define FNIC_TRACE(_fn, _hn, _t, _a, _b, _c, _d, _e) \ argument
|
/linux/drivers/dma/ |
H A D | pch_dma.c | 736 struct dma_chan *chan, *_c; in pch_dma_save_regs() local 759 struct dma_chan *chan, *_c; in pch_dma_restore_regs() local 922 struct dma_chan *chan, *_c; in pch_dma_remove() local
|
/linux/arch/arm/mach-footbridge/ |
H A D | dc21285.c | 291 #define dc21285_request_irq(_a, _b, _c, _d, _e) \ argument
|
/linux/rust/kernel/ |
H A D | time.rs | 170 _c: PhantomData<C>, field
|
/linux/drivers/rapidio/ |
H A D | rio_cm.c | 1495 struct rio_channel *ch, *_c; in riocm_cdev_release() local 1992 struct rio_channel *ch, *_c; in riocm_remove_dev() local 2176 struct rio_channel *ch, *_c; in riocm_remove_mport() local
|
/linux/drivers/ptp/ |
H A D | ptp_vmclock.c | 54 #define VMCLOCK_FIELD_PRESENT(_c, _f) \ argument
|