Searched refs:_c (Results 1 - 25 of 58) sorted by last modified time

123

/linux-master/fs/bcachefs/
H A Dsb-members.h104 #define for_each_member_device_rcu(_c, _ca, _mask) \
106 (_ca = __bch2_next_dev((_c), _ca, (_mask)));)
124 #define __for_each_member_device(_c, _ca) \
125 for (; (_ca = bch2_get_next_dev(_c, _ca));)
127 #define for_each_member_device(_c, _ca) \
129 (_ca = bch2_get_next_dev(_c, _ca));)
148 #define __for_each_online_member(_c, _ca, state_mask) \
150 (_ca = bch2_get_next_online_dev(_c, _ca, state_mask));)
H A Dchecksum.h41 #define csum_vstruct(_c, _type, _nonce, _i) \
45 bch2_checksum(_c, _type, _nonce, _start, vstruct_end(_i) - _start);\
H A Dbtree_iter.h874 #define bch2_trans_get(_c) \
880 __bch2_trans_get(_c, trans_fn_idx); \
H A Dbcachefs.h228 #define count_event(_c, _name) this_cpu_inc((_c)->counters[BCH_COUNTER_##_name])
230 #define trace_and_count(_c, _name, ...) \
232 count_event(_c, _name); \
249 #define bch2_log_msg(_c, fmt) "bcachefs (%s): " fmt, ((_c)->name)
252 #define bch2_fmt_inum(_c, _inum, fmt) "bcachefs (%s inum %llu): " fmt "\n", ((_c)->name), (_inum)
253 #define bch2_fmt_inum_offset(_c, _inum, _offset, fmt) \
254 "bcachefs (%s inum %llu offset %llu): " fmt "\n", ((_c)
[all...]
H A Dutil.h103 size_t _c, _j = i; \
105 for (; _j * 2 + 1 < (h)->used; _j = _c) { \
106 _c = _j * 2 + 1; \
107 if (_c + 1 < (h)->used && \
108 cmp(h, (h)->data[_c], (h)->data[_c + 1]) >= 0) \
109 _c++; \
111 if (cmp(h, (h)->data[_c], (h)->data[_j]) >= 0) \
113 heap_swap(h, _c, _j, set_backpointer); \
H A Dfsck.c656 #define for_each_visible_inode(_c, _s, _w, _snapshot, _i) \
659 if (key_visible_in_snapshot(_c, _s, _i->snapshot, _snapshot))
H A Derror.h118 #define fsck_err_count(_c, _err) bch2_sb_err_count(_c, BCH_FSCK_ERR_##_err)
H A Dinode.h138 #define inode_opt_get(_c, _inode, _name) \
139 ((_inode)->bi_##_name ? (_inode)->bi_##_name - 1 : (_c)->opts._name)
H A Dbtree_update.h179 #define bch2_trans_run(_c, _do) \
181 struct btree_trans *trans = bch2_trans_get(_c); \
187 #define bch2_trans_do(_c, _disk_res, _journal_seq, _flags, _do) \
188 bch2_trans_run(_c, commit_do(trans, _disk_res, _journal_seq, _flags, _do))
H A Dbkey_types.h137 bkey_i_to_##name##_c(const struct bkey_i *k) \
H A Dbtree_cache.h71 #define for_each_cached_btree(_b, _c, _tbl, _iter, _pos) \
72 for ((_tbl) = rht_dereference_rcu((_c)->btree_cache.table.tbl, \
73 &(_c)->btree_cache.table), \
H A Dquota.c208 #define for_each_set_qtype(_c, _i, _q, _qtypes) \
211 _q = &(_c)->quotas[_i], \
H A Dsiphash.h75 #define SipHash24_Init(_c, _k) SipHash_Init((_c), (_k))
76 #define SipHash24_Update(_c, _p, _l) SipHash_Update((_c), 2, 4, (_p), (_l))
78 #define SipHash24_Final(_d, _c) SipHash_Final((_d), (_c), 2, 4)
81 #define SipHash48_Init(_c, _k) SipHash_Init((_c), (_k))
82 #define SipHash48_Update(_c, _p, _l) SipHash_Update((_c),
[all...]
H A Dalloc_foreground.h44 #define open_bucket_for_each(_c, _obs, _ob, _i) \
47 ((_ob) = (_c)->open_buckets + (_obs)->v[_i], true); \
/linux-master/drivers/scsi/cxlflash/
H A Dmain.c1516 #define ASTATUS_FC(_a, _b, _c, _d) \
1517 { SISL_ASTATUS_FC##_a##_##_b, _c, _a, (_d) }
/linux-master/drivers/gpu/drm/msm/adreno/
H A Dadreno_gpu.h64 #define ADRENO_CHIPID_ARGS(_c) \
65 (((_c) >> 24) & 0xff), \
66 (((_c) >> 16) & 0xff), \
67 (((_c) >> 8) & 0xff), \
68 ((_c) & 0xff)
/linux-master/tools/lib/bpf/
H A Dbpf_helpers.h205 #define ___bpf_nth(_, _1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b, _c, N, ...) N
H A Dbpf_tracing.h629 #define ___bpf_nth(_, _1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b, _c, N, ...) N
/linux-master/net/ipv6/
H A Dip6mr.c491 mfc->_c.mfc_parent);
495 mfc->_c.mfc_un.res.pkt,
496 mfc->_c.mfc_un.res.bytes,
497 mfc->_c.mfc_un.res.wrong_if);
498 for (n = mfc->_c.mfc_un.res.minvif;
499 n < mfc->_c.mfc_un.res.maxvif; n++) {
501 mfc->_c.mfc_un.res.ttls[n] < 255)
504 mfc->_c.mfc_un.res.ttls[n]);
695 &mfc->_c, tb_id, &net->ipv6.ipmr_seq);
765 call_rcu(&c->_c
[all...]
/linux-master/net/ipv4/
H A Dipmr.c639 &mfc->_c, tb_id, &net->ipv4.ipmr_seq);
714 call_rcu(&c->_c.rcu, ipmr_cache_free_rcu);
728 while ((skb = skb_dequeue(&c->_c.mfc_un.unres.unresolved))) {
960 c->_c.mfc_un.res.last_assert = jiffies - MFC_ASSERT_THRESH - 1;
961 c->_c.mfc_un.res.minvif = MAXVIFS;
962 c->_c.free = ipmr_cache_free_rcu;
963 refcount_set(&c->_c.mfc_un.res.refcount, 1);
973 skb_queue_head_init(&c->_c.mfc_un.unres.unresolved);
974 c->_c.mfc_un.unres.expires = jiffies + 10 * HZ;
987 while ((skb = __skb_dequeue(&uc->_c
[all...]
/linux-master/drivers/rapidio/devices/
H A Dtsi721_dma.c1023 struct dma_chan *chan, *_c; local
1029 list_for_each_entry_safe(chan, _c, &mport->dma.channels,
/linux-master/drivers/rapidio/
H A Drio_cm.c1498 struct rio_channel *ch, *_c; local
1519 list_for_each_entry_safe(ch, _c, &list, ch_node) {
1995 struct rio_channel *ch, *_c; local
2054 list_for_each_entry_safe(ch, _c, &list, ch_node) {
2179 struct rio_channel *ch, *_c; local
2215 list_for_each_entry_safe(ch, _c, &list, ch_node) {
/linux-master/drivers/dma/ti/
H A Dcppi41.c482 struct cppi41_channel *c, *_c; local
484 list_for_each_entry_safe(c, _c, &cdd->pending, node) {
/linux-master/drivers/misc/sgi-xp/
H A Dxp.h256 #define XPC_CHANNEL_REGISTERED(_c) (xpc_registrations[_c].func != NULL)
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dmemory.h107 u64 _a = (a), _c = (c), _d = (d), _o = _a >> s, _s = _c << s; \
111 while (_c--) \
117 for (; _c; _c--, _a += BIT(s)) \

Completed in 341 milliseconds

123