Home
last modified time | relevance | path

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

12345678910>>...36

/Linux-v5.15/include/asm-generic/
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
37 #define local64_sub_and_test(i, l) local_sub_and_test((i), (&(l)->a)) argument
38 #define local64_dec_and_test(l) local_dec_and_test(&(l)->a) argument
39 #define local64_inc_and_test(l) local_inc_and_test(&(l)->a) argument
40 #define local64_add_negative(i, l) local_add_negative((i), (&(l)->a)) argument
[all …]
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
36 #define local_sub_and_test(i, l) atomic_long_sub_and_test((i), (&(l)->a)) argument
37 #define local_dec_and_test(l) atomic_long_dec_and_test(&(l)->a) argument
38 #define local_inc_and_test(l) atomic_long_inc_and_test(&(l)->a) argument
39 #define local_add_negative(i, l) atomic_long_add_negative((i), (&(l)->a)) argument
[all …]
Dqrwlock.h135 #define arch_read_lock(l) queued_read_lock(l) argument
136 #define arch_write_lock(l) queued_write_lock(l) argument
137 #define arch_read_trylock(l) queued_read_trylock(l) argument
138 #define arch_write_trylock(l) queued_write_trylock(l) argument
139 #define arch_read_unlock(l) queued_read_unlock(l) argument
140 #define arch_write_unlock(l) queued_write_unlock(l) argument
141 #define arch_rwlock_is_contended(l) queued_rwlock_is_contended(l) argument
Dqspinlock.h114 #define arch_spin_is_locked(l) queued_spin_is_locked(l) argument
115 #define arch_spin_is_contended(l) queued_spin_is_contended(l) argument
116 #define arch_spin_value_unlocked(l) queued_spin_value_unlocked(l) argument
117 #define arch_spin_lock(l) queued_spin_lock(l) argument
118 #define arch_spin_trylock(l) queued_spin_trylock(l) argument
119 #define arch_spin_unlock(l) queued_spin_unlock(l) argument
/Linux-v5.15/arch/x86/include/asm/
Dlocal.h16 #define local_read(l) atomic_long_read(&(l)->a) argument
17 #define local_set(l, i) atomic_long_set(&(l)->a, (i)) 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()
54 static inline bool local_sub_and_test(long i, local_t *l) in local_sub_and_test()
67 static inline bool local_dec_and_test(local_t *l) in local_dec_and_test()
80 static inline bool local_inc_and_test(local_t *l) in local_inc_and_test()
94 static inline bool local_add_negative(long i, local_t *l) in local_add_negative()
[all …]
/Linux-v5.15/arch/alpha/include/asm/
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
21 static __inline__ long local_add_return(long i, local_t * l) in local_add_return()
38 static __inline__ long local_sub_return(long i, local_t * l) in local_sub_return()
55 #define local_cmpxchg(l, o, n) \ argument
57 #define local_xchg(l, n) (xchg_local(&((l)->a.counter), (n))) argument
[all …]
/Linux-v5.15/arch/mips/include/asm/
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
30 static __inline__ long local_add_return(long i, local_t * l) in local_add_return()
79 static __inline__ long local_sub_return(long i, local_t * l) in local_sub_return()
128 #define local_cmpxchg(l, o, n) \ argument
130 #define local_xchg(l, n) (atomic_long_xchg((&(l)->a), (n))) argument
[all …]
Ddmi.h8 #define dmi_early_remap(x, l) ioremap_cache(x, l) argument
9 #define dmi_early_unmap(x, l) iounmap(x) argument
10 #define dmi_remap(x, l) ioremap_cache(x, l) argument
14 #define dmi_alloc(l) memblock_alloc_low(l, PAGE_SIZE) argument
/Linux-v5.15/arch/powerpc/include/asm/
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()
60 #define local_add_negative(a, l) (local_add_return((a), (l)) < 0) argument
61 #define local_inc_return(l) local_add_return(1LL, l) argument
62 #define local_inc(l) local_inc_return(l) argument
72 #define local_inc_and_test(l) (local_inc_return(l) == 0) argument
74 #define local_dec_return(l) local_sub_return(1LL, l) argument
75 #define local_dec(l) local_dec_return(l) argument
76 #define local_sub_and_test(a, l) (local_sub_return((a), (l)) == 0) argument
77 #define local_dec_and_test(l) (local_dec_return((l)) == 0) argument
[all …]
/Linux-v5.15/net/tipc/
Dlink.c261 static int link_is_up(struct tipc_link *l) in link_is_up()
290 bool tipc_link_is_up(struct tipc_link *l) in tipc_link_is_up()
295 bool tipc_link_peer_is_down(struct tipc_link *l) in tipc_link_peer_is_down()
300 bool tipc_link_is_reset(struct tipc_link *l) in tipc_link_is_reset()
305 bool tipc_link_is_establishing(struct tipc_link *l) in tipc_link_is_establishing()
310 bool tipc_link_is_synching(struct tipc_link *l) in tipc_link_is_synching()
315 bool tipc_link_is_failingover(struct tipc_link *l) in tipc_link_is_failingover()
320 bool tipc_link_is_blocked(struct tipc_link *l) in tipc_link_is_blocked()
325 static bool link_is_bc_sndlink(struct tipc_link *l) in link_is_bc_sndlink()
330 static bool link_is_bc_rcvlink(struct tipc_link *l) in link_is_bc_rcvlink()
[all …]
/Linux-v5.15/include/linux/
Dlockdep.h315 #define lockdep_assert_held(l) \ argument
318 #define lockdep_assert_not_held(l) \ argument
321 #define lockdep_assert_held_write(l) \ argument
324 #define lockdep_assert_held_read(l) \ argument
327 #define lockdep_assert_held_once(l) \ argument
335 #define lockdep_pin_lock(l) lock_pin_lock(&(l)->dep_map) argument
336 #define lockdep_repin_lock(l,c) lock_repin_lock(&(l)->dep_map, (c)) argument
337 #define lockdep_unpin_lock(l,c) lock_unpin_lock(&(l)->dep_map, (c)) argument
357 # define lock_acquire(l, s, t, r, c, n, i) do { } while (0) argument
358 # define lock_release(l, i) do { } while (0) argument
[all …]
Dbits.h23 #define GENMASK_INPUT_CHECK(h, l) \ argument
31 #define GENMASK_INPUT_CHECK(h, l) 0 argument
34 #define __GENMASK(h, l) \ argument
37 #define GENMASK(h, l) \ argument
40 #define __GENMASK_ULL(h, l) \ argument
43 #define GENMASK_ULL(h, l) \ argument
Dlocal_lock_internal.h27 static inline void local_lock_acquire(local_lock_t *l) in local_lock_acquire()
34 static inline void local_lock_release(local_lock_t *l) in local_lock_release()
41 static inline void local_lock_debug_init(local_lock_t *l) in local_lock_debug_init()
47 static inline void local_lock_acquire(local_lock_t *l) { } in local_lock_acquire()
48 static inline void local_lock_release(local_lock_t *l) { } in local_lock_release()
49 static inline void local_lock_debug_init(local_lock_t *l) { } in local_lock_debug_init()
111 #define __local_lock_init(l) \ argument
/Linux-v5.15/kernel/bpf/
Dbpf_lru_list.c47 static void bpf_lru_list_count_inc(struct bpf_lru_list *l, in bpf_lru_list_count_inc()
54 static void bpf_lru_list_count_dec(struct bpf_lru_list *l, in bpf_lru_list_count_dec()
61 static void __bpf_lru_node_move_to_free(struct bpf_lru_list *l, in __bpf_lru_node_move_to_free()
82 static void __bpf_lru_node_move_in(struct bpf_lru_list *l, in __bpf_lru_node_move_in()
100 static void __bpf_lru_node_move(struct bpf_lru_list *l, in __bpf_lru_node_move()
124 static bool bpf_lru_list_inactive_low(const struct bpf_lru_list *l) in bpf_lru_list_inactive_low()
140 struct bpf_lru_list *l) in __bpf_lru_list_rotate_active()
167 struct bpf_lru_list *l) in __bpf_lru_list_rotate_inactive()
207 struct bpf_lru_list *l, in __bpf_lru_list_shrink_inactive()
237 static void __bpf_lru_list_rotate(struct bpf_lru *lru, struct bpf_lru_list *l) in __bpf_lru_list_rotate()
[all …]
/Linux-v5.15/tools/lib/subcmd/
Dparse-options.h122 #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } argument
124 #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .val… argument
125 #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), … argument
126 #define OPT_BOOLEAN_FLAG(s, l, v, h, f) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name… argument
127 #define OPT_BOOLEAN_SET(s, l, v, os, h) \ argument
131 #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .va… argument
132 #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l)… argument
133 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), … argument
134 #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), … argument
135 #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l),… argument
[all …]
/Linux-v5.15/tools/include/linux/
Dbits.h23 #define GENMASK_INPUT_CHECK(h, l) \ argument
31 #define GENMASK_INPUT_CHECK(h, l) 0 argument
34 #define __GENMASK(h, l) \ argument
37 #define GENMASK(h, l) \ argument
40 #define __GENMASK_ULL(h, l) \ argument
43 #define GENMASK_ULL(h, l) \ argument
/Linux-v5.15/fs/nls/
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-v5.15/arch/arm/include/asm/
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
Dio.h264 #define outsb(p,d,l) __raw_writesb(__io(p),d,l) argument
265 #define outsw(p,d,l) __raw_writesw(__io(p),d,l) argument
266 #define outsl(p,d,l) __raw_writesl(__io(p),d,l) argument
268 #define insb(p,d,l) __raw_readsb(__io(p),d,l) argument
269 #define insw(p,d,l) __raw_readsw(__io(p),d,l) argument
270 #define insl(p,d,l) __raw_readsl(__io(p),d,l) argument
309 #define readsb(p,d,l) __raw_readsb(p,d,l) argument
310 #define readsw(p,d,l) __raw_readsw(p,d,l) argument
311 #define readsl(p,d,l) __raw_readsl(p,d,l) argument
313 #define writesb(p,d,l) __raw_writesb(p,d,l) argument
[all …]
/Linux-v5.15/arch/arm64/include/asm/
Ddmi.h25 #define dmi_early_remap(x, l) ioremap_cache(x, l) argument
26 #define dmi_early_unmap(x, l) iounmap(x) argument
27 #define dmi_remap(x, l) ioremap_cache(x, l) argument
29 #define dmi_alloc(l) kzalloc(l, GFP_KERNEL) argument
/Linux-v5.15/arch/arm/mach-s3c/include/mach/
Dio-s3c24xx.h36 #define insb(p,d,l) readsb(S3C24XX_VA_ISA_BYTE + (p),d,l) argument
37 #define insw(p,d,l) readsw(S3C24XX_VA_ISA_WORD + (p),d,l) argument
38 #define insl(p,d,l) readsl(S3C24XX_VA_ISA_WORD + (p),d,l) argument
40 #define outsb(p,d,l) writesb(S3C24XX_VA_ISA_BYTE + (p),d,l) argument
41 #define outsw(p,d,l) writesw(S3C24XX_VA_ISA_WORD + (p),d,l) argument
42 #define outsl(p,d,l) writesl(S3C24XX_VA_ISA_WORD + (p),d,l) argument
/Linux-v5.15/drivers/char/tpm/
Dtpm_tis_core.h67 #define TPM_ACCESS(l) (0x0000 | ((l) << 12)) argument
68 #define TPM_INT_ENABLE(l) (0x0008 | ((l) << 12)) argument
69 #define TPM_INT_VECTOR(l) (0x000C | ((l) << 12)) argument
70 #define TPM_INT_STATUS(l) (0x0010 | ((l) << 12)) argument
71 #define TPM_INTF_CAPS(l) (0x0014 | ((l) << 12)) argument
72 #define TPM_STS(l) (0x0018 | ((l) << 12)) argument
73 #define TPM_STS3(l) (0x001b | ((l) << 12)) argument
74 #define TPM_DATA_FIFO(l) (0x0024 | ((l) << 12)) argument
76 #define TPM_DID_VID(l) (0x0F00 | ((l) << 12)) argument
77 #define TPM_RID(l) (0x0F04 | ((l) << 12)) argument
/Linux-v5.15/arch/arm/mach-omap1/
Dusb.c289 u32 l; in omap1_usb0_init() local
311 u32 l; in omap1_usb0_init() local
357 u32 l; in omap1_usb0_init() local
374 u32 l; in omap1_usb0_init() local
396 u32 l; in omap1_usb1_init() local
441 u32 l; in omap1_usb1_init() local
466 u32 l; in omap1_usb2_init() local
512 u32 l; in omap1_usb2_init() local
/Linux-v5.15/arch/arm/plat-omap/
Ddma.c110 u32 l; in set_gdma_dev() local
127 u32 l; in omap_set_dma_priority() local
174 u32 l; in omap_set_dma_transfer_params() local
236 u32 l; in omap_set_dma_channel_mode() local
251 u32 l; in omap_set_dma_src_params() local
276 u32 l; in omap_set_dma_src_data_pack() local
289 u32 l; in omap_set_dma_src_burst_mode() local
334 u32 l; in omap_set_dma_dest_params() local
357 u32 l; in omap_set_dma_dest_data_pack() local
370 u32 l; in omap_set_dma_dest_burst_mode() local
[all …]
/Linux-v5.15/lib/
Dkfifo.c94 unsigned int l; in kfifo_copy_in() local
116 unsigned int l; in __kfifo_in() local
133 unsigned int l; in kfifo_copy_out() local
155 unsigned int l; in __kfifo_out_peek() local
181 unsigned int l; in kfifo_copy_from_user() local
213 unsigned int l; in __kfifo_from_user() local
239 unsigned int l; in kfifo_copy_to_user() local
273 unsigned int l; in __kfifo_to_user() local
299 unsigned int l; in setup_sgl_buf() local
339 unsigned int l; in setup_sgl() local
[all …]

12345678910>>...36