Home
last modified time | relevance | path

Searched defs:l (Results 1 – 25 of 1023) sorted by relevance

12345678910>>...41

/linux/include/asm-generic/
A Dlocal64.h30 #define local64_read(l) local_read(&(l)->a) argument
31 #define local64_set(l,i) local_set((&(l)->a),(i)) argument
32 #define local64_inc(l) local_inc(&(l)->a) argument
33 #define local64_dec(l) local_dec(&(l)->a) argument
34 #define local64_add(i,l) local_add((i),(&(l)->a)) argument
35 #define local64_sub(i,l) local_sub((i),(&(l)->a)) argument
55 #define local64_xchg(l, n) local_xchg((&(l)->a), (n)) argument
77 #define local64_read(l) atomic64_read(&(l)->a) argument
78 #define local64_set(l,i) atomic64_set((&(l)->a),(i)) argument
79 #define local64_inc(l) atomic64_inc(&(l)->a) argument
[all …]
A Dlocal.h29 #define local_read(l) atomic_long_read(&(l)->a) argument
30 #define local_set(l,i) atomic_long_set((&(l)->a),(i)) argument
31 #define local_inc(l) atomic_long_inc(&(l)->a) argument
32 #define local_dec(l) atomic_long_dec(&(l)->a) argument
33 #define local_add(i,l) atomic_long_add((i),(&(l)->a)) argument
34 #define local_sub(i,l) atomic_long_sub((i),(&(l)->a)) argument
42 #define local_inc_return(l) atomic_long_inc_return(&(l)->a) argument
46 #define local_xchg(l, n) atomic_long_xchg((&(l)->a), (n)) argument
52 #define __local_inc(l) local_set((l), local_read(l) + 1) argument
53 #define __local_dec(l) local_set((l), local_read(l) - 1) argument
[all …]
A Dqrwlock.h139 #define arch_read_lock(l) queued_read_lock(l) argument
140 #define arch_write_lock(l) queued_write_lock(l) argument
141 #define arch_read_trylock(l) queued_read_trylock(l) argument
142 #define arch_write_trylock(l) queued_write_trylock(l) argument
143 #define arch_read_unlock(l) queued_read_unlock(l) argument
144 #define arch_write_unlock(l) queued_write_unlock(l) argument
145 #define arch_rwlock_is_contended(l) queued_rwlock_is_contended(l) argument
A Dqspinlock.h143 #define arch_spin_is_locked(l) queued_spin_is_locked(l) argument
144 #define arch_spin_is_contended(l) queued_spin_is_contended(l) argument
145 #define arch_spin_value_unlocked(l) queued_spin_value_unlocked(l) argument
146 #define arch_spin_lock(l) queued_spin_lock(l) argument
147 #define arch_spin_trylock(l) queued_spin_trylock(l) argument
148 #define arch_spin_unlock(l) queued_spin_unlock(l) argument
/linux/arch/x86/include/asm/
A Dlocal.h16 #define local_read(l) atomic_long_read(&(l)->a) argument
19 static inline void local_inc(local_t *l) in local_inc()
25 static inline void local_dec(local_t *l) in local_dec()
31 static inline void local_add(long i, local_t *l) in local_add()
38 static inline void local_sub(long i, local_t *l) in local_sub()
140 local_xchg(local_t *l, long n) in local_xchg()
159 local_add_unless(local_t *l, long a, long u) in local_add_unless()
177 #define __local_inc(l) local_inc(l) argument
178 #define __local_dec(l) local_dec(l) argument
179 #define __local_add(i, l) local_add((i), (l)) argument
[all …]
/linux/arch/loongarch/include/asm/
A Dlocal.h19 #define local_read(l) atomic_long_read(&(l)->a) argument
20 #define local_set(l, i) atomic_long_set(&(l)->a, (i)) argument
22 #define local_add(i, l) atomic_long_add((i), (&(l)->a)) argument
23 #define local_sub(i, l) atomic_long_sub((i), (&(l)->a)) argument
24 #define local_inc(l) atomic_long_inc(&(l)->a) argument
25 #define local_dec(l) atomic_long_dec(&(l)->a) argument
82 local_add_unless(local_t *l, long a, long u) in local_add_unless()
146 #define __local_inc(l) ((l)->a.counter++) argument
147 #define __local_dec(l) ((l)->a.counter++) argument
148 #define __local_add(i, l) ((l)->a.counter += (i)) argument
[all …]
/linux/arch/alpha/include/asm/
A Dlocal.h14 #define local_read(l) atomic_long_read(&(l)->a) argument
15 #define local_set(l,i) atomic_long_set(&(l)->a, (i)) argument
16 #define local_inc(l) atomic_long_inc(&(l)->a) argument
17 #define local_dec(l) atomic_long_dec(&(l)->a) argument
18 #define local_add(i,l) atomic_long_add((i),(&(l)->a)) argument
19 #define local_sub(i,l) atomic_long_sub((i),(&(l)->a)) argument
77 local_add_unless(local_t *l, long a, long u) in local_add_unless()
104 #define __local_inc(l) ((l)->a.counter++) argument
105 #define __local_dec(l) ((l)->a.counter++) argument
106 #define __local_add(i,l) ((l)->a.counter+=(i)) argument
[all …]
/linux/arch/mips/include/asm/
A Dlocal.h19 #define local_read(l) atomic_long_read(&(l)->a) argument
20 #define local_set(l, i) atomic_long_set(&(l)->a, (i)) argument
22 #define local_add(i, l) atomic_long_add((i), (&(l)->a)) argument
23 #define local_sub(i, l) atomic_long_sub((i), (&(l)->a)) argument
24 #define local_inc(l) atomic_long_inc(&(l)->a) argument
25 #define local_dec(l) atomic_long_dec(&(l)->a) argument
120 local_add_unless(local_t *l, long a, long u) in local_add_unless()
184 #define __local_inc(l) ((l)->a.counter++) argument
185 #define __local_dec(l) ((l)->a.counter++) argument
186 #define __local_add(i, l) ((l)->a.counter+=(i)) argument
[all …]
/linux/arch/powerpc/include/asm/
A Dlocal.h20 static __inline__ long local_read(const local_t *l) in local_read()
25 static __inline__ void local_set(local_t *l, long i) in local_set()
61 #define local_inc_return(l) local_add_return(1LL, l) argument
62 #define local_inc(l) local_inc_return(l) argument
74 #define local_dec_return(l) local_sub_return(1LL, l) argument
75 #define local_dec(l) local_dec_return(l) argument
104 static __inline__ long local_xchg(local_t *l, long n) in local_xchg()
148 #define __local_inc(l) ((l)->v++) argument
149 #define __local_dec(l) ((l)->v++) argument
150 #define __local_add(i,l) ((l)->v+=(i)) argument
[all …]
A Dqspinlock.h161 #define arch_spin_is_locked(l) queued_spin_is_locked(l) argument
162 #define arch_spin_is_contended(l) queued_spin_is_contended(l) argument
163 #define arch_spin_value_unlocked(l) queued_spin_value_unlocked(l) argument
164 #define arch_spin_lock(l) queued_spin_lock(l) argument
165 #define arch_spin_trylock(l) queued_spin_trylock(l) argument
166 #define arch_spin_unlock(l) queued_spin_unlock(l) argument
/linux/drivers/gpu/drm/amd/display/dc/dml2/dml21/src/dml2_top/
A Ddml2_top_optimization.c45 struct dml2_optimization_test_function_locals *l = params->locals; in dml2_top_optimization_test_function_mcache() local
78 struct dml2_optimization_optimize_function_locals *l = params->locals; in dml2_top_optimization_optimize_function_mcache() local
99 struct dml2_optimization_init_function_locals *l = params->locals; in dml2_top_optimization_init_function_vmin() local
108 struct dml2_optimization_test_function_locals *l = params->locals; in dml2_top_optimization_test_function_vmin() local
118 struct dml2_optimization_optimize_function_locals *l = params->locals; in dml2_top_optimization_optimize_function_vmin() local
249 struct dml2_optimization_init_function_locals *l = params->locals; in dml2_top_optimization_init_function_uclk_pstate() local
259 struct dml2_optimization_test_function_locals *l = params->locals; in dml2_top_optimization_test_function_uclk_pstate() local
269 struct dml2_optimization_optimize_function_locals *l = params->locals; in dml2_top_optimization_optimize_function_uclk_pstate() local
281 struct dml2_optimization_init_function_locals *l = params->locals; in dml2_top_optimization_init_function_stutter() local
291 struct dml2_optimization_test_function_locals *l = params->locals; in dml2_top_optimization_test_function_stutter() local
[all …]
/linux/fs/bcachefs/
A Dkeylist.h10 static inline void bch2_keylist_init(struct keylist *l, u64 *inline_keys) in bch2_keylist_init()
15 static inline void bch2_keylist_free(struct keylist *l, u64 *inline_keys) in bch2_keylist_free()
21 static inline void bch2_keylist_push(struct keylist *l) in bch2_keylist_push()
26 static inline void bch2_keylist_add(struct keylist *l, const struct bkey_i *k) in bch2_keylist_add()
32 static inline bool bch2_keylist_empty(struct keylist *l) in bch2_keylist_empty()
37 static inline size_t bch2_keylist_u64s(struct keylist *l) in bch2_keylist_u64s()
42 static inline size_t bch2_keylist_bytes(struct keylist *l) in bch2_keylist_bytes()
47 static inline struct bkey_i *bch2_keylist_front(struct keylist *l) in bch2_keylist_front()
69 static inline void bch2_verify_keylist_sorted(struct keylist *l) {} in bch2_verify_keylist_sorted()
A Dbkey.h86 const struct bkey_packed *l, const struct bpos *r) in bkey_cmp_left_packed()
98 const struct bkey_packed *l, in bkey_cmp_left_packed_byval()
104 static __always_inline bool bpos_eq(struct bpos l, struct bpos r) in bpos_eq()
111 static __always_inline bool bpos_lt(struct bpos l, struct bpos r) in bpos_lt()
118 static __always_inline bool bpos_le(struct bpos l, struct bpos r) in bpos_le()
125 static __always_inline bool bpos_gt(struct bpos l, struct bpos r) in bpos_gt()
130 static __always_inline bool bpos_ge(struct bpos l, struct bpos r) in bpos_ge()
142 static inline struct bpos bpos_min(struct bpos l, struct bpos r) in bpos_min()
147 static inline struct bpos bpos_max(struct bpos l, struct bpos r) in bpos_max()
188 static inline struct bpos bkey_min(struct bpos l, struct bpos r) in bkey_min()
[all …]
A Dnocow_locking.c13 struct nocow_lock_bucket *l = bucket_nocow_lock(t, dev_bucket); in bch2_bucket_nocow_is_locked() local
27 struct nocow_lock_bucket *l = bucket_nocow_lock(t, dev_bucket); in bch2_bucket_nocow_unlock() local
44 bool __bch2_bucket_nocow_trylock(struct nocow_lock_bucket *l, in __bch2_bucket_nocow_trylock()
80 struct nocow_lock_bucket *l, in __bch2_bucket_nocow_lock()
96 struct nocow_lock_bucket *l; in bch2_nocow_locks_to_text() local
131 for (struct nocow_lock_bucket *l = t->l; l < t->l + ARRAY_SIZE(t->l); l++) in bch2_fs_nocow_locking_exit() local
140 for (struct nocow_lock_bucket *l = t->l; l < t->l + ARRAY_SIZE(t->l); l++) in bch2_fs_nocow_locking_init() local
/linux/include/linux/
A Dlockdep.h259 #define lock_set_novalidate_class(l, n, i) \ argument
284 #define lockdep_assert_held(l) \ argument
287 #define lockdep_assert_not_held(l) \ argument
290 #define lockdep_assert_held_write(l) \ argument
293 #define lockdep_assert_held_read(l) \ argument
296 #define lockdep_assert_held_once(l) \ argument
337 # define lock_release(l, i) do { } while (0) argument
338 # define lock_downgrade(l, i) do { } while (0) argument
387 #define lockdep_is_held_type(l, r) (1) argument
515 #define spin_release(l, i) lock_release(l, i) argument
[all …]
A Dbits.h23 #define GENMASK_INPUT_CHECK(h, l) \ argument
31 #define GENMASK_INPUT_CHECK(h, l) 0 argument
34 #define GENMASK(h, l) \ argument
36 #define GENMASK_ULL(h, l) \ argument
50 #define GENMASK_U128(h, l) \ argument
/linux/net/tipc/
A Dlink.c268 bool tipc_link_is_up(struct tipc_link *l) in tipc_link_is_up()
318 u32 tipc_link_id(struct tipc_link *l) in tipc_link_id()
333 int tipc_link_prio(struct tipc_link *l) in tipc_link_prio()
418 int tipc_link_mtu(struct tipc_link *l) in tipc_link_mtu()
423 int tipc_link_mss(struct tipc_link *l) in tipc_link_mss()
437 u16 tipc_link_acked(struct tipc_link *l) in tipc_link_acked()
447 u32 tipc_link_state(struct tipc_link *l) in tipc_link_state()
488 struct tipc_link *l; in tipc_link_create() local
562 struct tipc_link *l; in tipc_link_bc_create() local
945 struct tipc_link *l) in tipc_link_set_skb_retransmit_time()
[all …]
/linux/kernel/bpf/
A Dbpf_lru_list.c105 static void __bpf_lru_node_move(struct bpf_lru_list *l, in __bpf_lru_node_move()
145 struct bpf_lru_list *l) in __bpf_lru_list_rotate_active()
172 struct bpf_lru_list *l) in __bpf_lru_list_rotate_inactive()
212 struct bpf_lru_list *l, in __bpf_lru_list_shrink_inactive()
261 struct bpf_lru_list *l, in __bpf_lru_list_shrink()
326 struct bpf_lru_list *l = &lru->common_lru.lru_list; in bpf_lru_list_pop_free_to_local() local
409 struct bpf_lru_list *l; in bpf_percpu_lru_pop_free() local
544 struct bpf_lru_list *l; in bpf_percpu_lru_push_free() local
568 struct bpf_lru_list *l = &lru->common_lru.lru_list; in bpf_common_lru_populate() local
588 struct bpf_lru_list *l; in bpf_percpu_lru_populate() local
[all …]
/linux/tools/lib/subcmd/
A Dparse-options.h118 #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } argument
123 #define OPT_BOOLEAN_SET(s, l, v, os, h) \ argument
137 #define OPT_STRING_OPTARG(s, l, v, a, h, d) \ argument
141 #define OPT_STRING_OPTARG_SET(s, l, v, os, a, h, d) \ argument
147 #define OPT_DATE(s, l, v, h) \ argument
149 #define OPT_CALLBACK(s, l, v, a, h, f) \ argument
151 #define OPT_CALLBACK_SET(s, l, v, os, a, h, f) \ argument
153 #define OPT_CALLBACK_NOOPT(s, l, v, a, h, f) \ argument
155 #define OPT_CALLBACK_DEFAULT(s, l, v, a, h, f, d) \ argument
157 #define OPT_CALLBACK_DEFAULT_NOOPT(s, l, v, a, h, f, d) \ argument
[all …]
/linux/fs/nls/
A Dnls_euc-jp.c17 #define IS_SJIS_LOW_BYTE(l) ((0x40 <= (l)) && ((l) <= 0xFC) && ((l) != 0x7F)) argument
19 #define IS_SJIS_JISX0208(h, l) ((((0x81 <= (h)) && ((h) <= 0x9F)) \ argument
23 #define IS_SJIS_UDC_LOW(h, l) (((0xF0 <= (h)) && ((h) <= 0xF4)) \ argument
25 #define IS_SJIS_UDC_HI(h, l) (((0xF5 <= (h)) && ((h) <= 0xF9)) \ argument
27 #define IS_SJIS_IBM(h, l) (((0xFA <= (h)) && ((h) <= 0xFC)) \ argument
29 #define IS_SJIS_NECIBM(h, l) (((0xED <= (h)) && ((h) <= 0xEE)) \ argument
44 #define IS_EUC_JISX0208(h, l) (IS_EUC_BYTE(h) && IS_EUC_BYTE(l)) argument
45 #define IS_EUC_JISX0201KANA(h, l) (((h) == SS2) && (0xA1 <= (l) && (l) <= 0xDF)) argument
46 #define IS_EUC_UDC_LOW(h, l) (((0xF5 <= (h)) && ((h) <= 0xFE)) \ argument
48 #define IS_EUC_UDC_HI(h, l) IS_EUC_UDC_LOW(h, l) /* G3 block */ argument
[all …]
/linux/arch/arm/mach-omap1/
A Domap-dma.c81 u32 l; in set_gdma_dev() local
93 u32 l; in omap_set_dma_priority() local
137 u32 l; in omap_set_dma_transfer_params() local
179 u32 l; in omap_set_dma_src_params() local
201 u32 l; in omap_set_dma_src_data_pack() local
214 u32 l; in omap_set_dma_src_burst_mode() local
248 u32 l; in omap_set_dma_dest_params() local
269 u32 l; in omap_set_dma_dest_data_pack() local
282 u32 l; in omap_set_dma_dest_burst_mode() local
326 u32 l; in enable_lnk() local
[all …]
/linux/tools/include/linux/
A Dbits.h23 #define GENMASK_INPUT_CHECK(h, l) \ argument
31 #define GENMASK_INPUT_CHECK(h, l) 0 argument
34 #define GENMASK(h, l) \ argument
36 #define GENMASK_ULL(h, l) \ argument
50 #define GENMASK_U128(h, l) \ argument
/linux/arch/arm/include/asm/
A Dio.h247 #define outsb(p,d,l) __raw_writesb(__io(p),d,l) argument
251 #define insb(p,d,l) __raw_readsb(__io(p),d,l) argument
252 #define insw(p,d,l) __raw_readsw(__io(p),d,l) argument
253 #define insl(p,d,l) __raw_readsl(__io(p),d,l) argument
292 #define readsb(p,d,l) __raw_readsb(p,d,l) argument
293 #define readsw(p,d,l) __raw_readsw(p,d,l) argument
294 #define readsl(p,d,l) __raw_readsl(p,d,l) argument
296 #define writesb(p,d,l) __raw_writesb(p,d,l) argument
297 #define writesw(p,d,l) __raw_writesw(p,d,l) argument
298 #define writesl(p,d,l) __raw_writesl(p,d,l) argument
[all …]
A Ddmi.h9 #define dmi_early_remap(x, l) memremap(x, l, MEMREMAP_WB) argument
10 #define dmi_early_unmap(x, l) memunmap(x) argument
11 #define dmi_remap(x, l) memremap(x, l, MEMREMAP_WB) argument
13 #define dmi_alloc(l) kzalloc(l, GFP_KERNEL) argument
/linux/arch/riscv/include/asm/
A Ddmi.h18 #define dmi_early_remap(x, l) memremap(x, l, MEMREMAP_WB) argument
19 #define dmi_early_unmap(x, l) memunmap(x) argument
20 #define dmi_remap(x, l) memremap(x, l, MEMREMAP_WB) argument
22 #define dmi_alloc(l) kzalloc(l, GFP_KERNEL) argument

Completed in 52 milliseconds

12345678910>>...41