Home
last modified time | relevance | path

Searched refs:_l (Results 1 – 25 of 51) sorted by relevance

123

/linux-6.15/fs/bcachefs/
H A Dsiphash.h76 #define SipHash24_Update(_c, _p, _l) SipHash_Update((_c), 2, 4, (_p), (_l)) argument
79 #define SipHash24(_k, _p, _l) SipHash((_k), 2, 4, (_p), (_l)) argument
82 #define SipHash48_Update(_c, _p, _l) SipHash_Update((_c), 4, 8, (_p), (_l)) argument
85 #define SipHash48(_k, _p, _l) SipHash((_k), 4, 8, (_p), (_l)) argument
H A Djournal_sb.c11 static int u64_cmp(const void *_l, const void *_r) in u64_cmp() argument
13 const u64 *l = _l; in u64_cmp()
93 static int u64_range_cmp(const void *_l, const void *_r) in u64_range_cmp() argument
95 const struct u64_range *l = _l; in u64_range_cmp()
H A Dbtree_node_scan.c111 static int found_btree_node_cmp_cookie(const void *_l, const void *_r) in found_btree_node_cmp_cookie() argument
113 const struct found_btree_node *l = _l; in found_btree_node_cmp_cookie()
132 static int found_btree_node_cmp_pos(const void *_l, const void *_r) in found_btree_node_cmp_pos() argument
134 const struct found_btree_node *l = _l; in found_btree_node_cmp_pos()
148 static inline void found_btree_node_swap(void *_l, void *_r, void *arg) in found_btree_node_swap() argument
150 struct found_btree_node *l = _l; in found_btree_node_swap()
485 static int found_btree_node_range_start_cmp(const void *_l, const void *_r) in found_btree_node_range_start_cmp() argument
487 const struct found_btree_node *l = _l; in found_btree_node_range_start_cmp()
H A Dbtree_write_buffer.h37 static inline int wb_key_cmp(const void *_l, const void *_r) in wb_key_cmp() argument
39 const struct btree_write_buffered_key *l = _l; in wb_key_cmp()
H A Dclock.c11 struct io_timer **_l = (struct io_timer **)l; in io_timer_cmp() local
14 return (*_l)->expire < (*_r)->expire; in io_timer_cmp()
H A Djournal_seq_blacklist.c98 static int journal_seq_blacklist_table_cmp(const void *_l, const void *_r) in journal_seq_blacklist_table_cmp() argument
100 const struct journal_seq_blacklist_table_entry *l = _l; in journal_seq_blacklist_table_cmp()
H A Dxattr.c44 static bool xattr_cmp_key(struct bkey_s_c _l, const void *_r) in xattr_cmp_key() argument
46 struct bkey_s_c_xattr l = bkey_s_c_to_xattr(_l); in xattr_cmp_key()
54 static bool xattr_cmp_bkey(struct bkey_s_c _l, struct bkey_s_c _r) in xattr_cmp_bkey() argument
56 struct bkey_s_c_xattr l = bkey_s_c_to_xattr(_l); in xattr_cmp_bkey()
H A Ddisk_accounting.h125 static inline int accounting_pos_cmp(const void *_l, const void *_r) in accounting_pos_cmp() argument
127 const struct bpos *l = _l, *r = _r; in accounting_pos_cmp()
H A Dreflink.c68 bool bch2_reflink_p_merge(struct bch_fs *c, struct bkey_s _l, struct bkey_s_c _r) in bch2_reflink_p_merge() argument
70 struct bkey_s_reflink_p l = bkey_s_to_reflink_p(_l); in bch2_reflink_p_merge()
119 bool bch2_reflink_v_merge(struct bch_fs *c, struct bkey_s _l, struct bkey_s_c _r)
121 struct bkey_s_reflink_v l = bkey_s_to_reflink_v(_l);
124 return l.v->refcount == r.v->refcount && bch2_extent_merge(c, _l, _r);
H A Ddirent.c112 static bool dirent_cmp_key(struct bkey_s_c _l, const void *_r) in dirent_cmp_key() argument
114 struct bkey_s_c_dirent l = bkey_s_c_to_dirent(_l); in dirent_cmp_key()
121 static bool dirent_cmp_bkey(struct bkey_s_c _l, struct bkey_s_c _r) in dirent_cmp_bkey() argument
123 struct bkey_s_c_dirent l = bkey_s_c_to_dirent(_l); in dirent_cmp_bkey()
/linux-6.15/net/rxrpc/
H A Dkey.c625 u32 _l = (l); \ in rxrpc_read()
627 memcpy(xdr, (s), _l); \ in rxrpc_read()
628 if (_l & 3) \ in rxrpc_read()
629 memcpy((u8 *)xdr + _l, &zero, 4 - (_l & 3)); \ in rxrpc_read()
630 xdr += (_l + 3) >> 2; \ in rxrpc_read()
634 u32 _l = (l); \ in rxrpc_read()
635 memcpy(xdr, (s), _l); \ in rxrpc_read()
636 if (_l & 3) \ in rxrpc_read()
637 memcpy((u8 *)xdr + _l, &zero, 4 - (_l & 3)); \ in rxrpc_read()
638 xdr += (_l + 3) >> 2; \ in rxrpc_read()
/linux-6.15/arch/x86/include/asm/
H A Ddmi.h19 #define dmi_remap(_x, _l) memremap(_x, _l, MEMREMAP_WB) argument
H A Dparavirt.h202 u64 _l = paravirt_read_msr(msr); \
203 val1 = (u32)_l; \
204 val2 = _l >> 32; \
228 u64 _l = paravirt_read_msr_safe(msr, &_err); \
229 (*a) = (u32)_l; \
230 (*b) = _l >> 32; \
249 u64 _l = paravirt_read_pmc(counter); \
250 low = (u32)_l; \
251 high = _l >> 32; \
H A Dmsr.h293 u64 _l = native_read_pmc((counter)); \
294 (low) = (u32)_l; \
295 (high) = (u32)(_l >> 32); \
/linux-6.15/net/smc/
H A Dsmc_stats.h144 typeof(_len) _l = (_len); \
148 if (_l <= 0) \
151 _pos = fls((_l - 1) >> 13); \
154 this_cpu_add((*stats).smc[t].k ## _rmbuse, _l); \
156 this_cpu_sub((*stats).smc[t].k ## _rmbuse, _l); \
/linux-6.15/include/linux/
H A Dlwq.h82 #define lwq_for_each_safe(_n, _t1, _t2, _l, _member) \ argument
83 for (_t1 = (_l); \
H A Dturris-omnia-mcu-interface.h247 #define OMNIA_CMD_LED_MODE_LED(_l) FIELD_PREP(OMNIA_CMD_LED_MODE_LED_MASK, _l) argument
254 #define OMNIA_CMD_LED_STATE_LED(_l) FIELD_PREP(OMNIA_CMD_LED_STATE_LED_MASK, _l) argument
/linux-6.15/fs/ocfs2/
H A Ddlmglue.c3199 # define lock_num_prmode(_l) ((_l)->l_lock_prmode.ls_gets) in ocfs2_dlm_seq_show() argument
3200 # define lock_num_exmode(_l) ((_l)->l_lock_exmode.ls_gets) in ocfs2_dlm_seq_show() argument
3201 # define lock_num_prmode_failed(_l) ((_l)->l_lock_prmode.ls_fail) in ocfs2_dlm_seq_show() argument
3203 # define lock_total_prmode(_l) ((_l)->l_lock_prmode.ls_total) in ocfs2_dlm_seq_show() argument
3204 # define lock_total_exmode(_l) ((_l)->l_lock_exmode.ls_total) in ocfs2_dlm_seq_show() argument
3205 # define lock_max_prmode(_l) ((_l)->l_lock_prmode.ls_max) in ocfs2_dlm_seq_show() argument
3206 # define lock_max_exmode(_l) ((_l)->l_lock_exmode.ls_max) in ocfs2_dlm_seq_show() argument
3207 # define lock_refresh(_l) ((_l)->l_lock_refresh) in ocfs2_dlm_seq_show() argument
3208 # define lock_last_prmode(_l) ((_l)->l_lock_prmode.ls_last) in ocfs2_dlm_seq_show() argument
3209 # define lock_last_exmode(_l) ((_l)->l_lock_exmode.ls_last) in ocfs2_dlm_seq_show() argument
[all …]
/linux-6.15/arch/powerpc/mm/ptdump/
H A Dbats.c58 #define BAT_SHOW_603(_m, _n, _l, _u, _d) bat_show_603(_m, _n, mfspr(_l), mfspr(_u), _d) argument
/linux-6.15/drivers/md/bcache/
H A Dextents.c41 struct btree_iter_set *_l = (struct btree_iter_set *)l; in new_bch_key_sort_cmp() local
43 int64_t c = bkey_cmp(_l->k, _r->k); in new_bch_key_sort_cmp()
45 return !(c ? c > 0 : _l->k < _r->k); in new_bch_key_sort_cmp()
262 struct btree_iter_set *_l = (struct btree_iter_set *)l; in new_bch_extent_sort_cmp() local
264 int64_t c = bkey_cmp(&START_KEY(_l->k), &START_KEY(_r->k)); in new_bch_extent_sort_cmp()
266 return !(c ? c > 0 : _l->k < _r->k); in new_bch_extent_sort_cmp()
H A Dmovinggc.c187 struct bucket **_l = (struct bucket **)l; in new_bucket_cmp() local
190 return GC_SECTORS_USED(*_l) >= GC_SECTORS_USED(*_r); in new_bucket_cmp()
/linux-6.15/drivers/net/wireless/ath/ath9k/
H A Dath9k.h88 #define INCR(_l, _sz) do { \ argument
89 (_l)++; \
90 (_l) &= ((_sz) - 1); \
694 #define TSF_TO_TU(_h,_l) \ argument
695 ((((u32)(_h)) << 22) | (((u32)(_l)) >> 10))
/linux-6.15/arch/mips/include/asm/sn/
H A Dklconfig.h653 #define GET_SNUM_COMP(_l) ((klmod_serial_num_t *)\ argument
654 KLCF_COMP(_l, _l->brd_numcompts))
H A Daddrs.h43 #define NASID_MAKE(_m, _l) (((_m) << NASID_LOCAL_BITS) | (_l)) argument
/linux-6.15/drivers/scsi/bfa/
H A Dbfa_fcbuild.h28 #define fc_roundup(_l, _s) (((_l) + ((_s) - 1)) & ~((_s) - 1)) argument

123