Home
last modified time | relevance | path

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

12345678910>>...35

/Linux-v4.19/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 …]
Datomic-long.h83 #define atomic_long_cmpxchg_relaxed(l, old, new) \ argument
86 #define atomic_long_cmpxchg_acquire(l, old, new) \ argument
89 #define atomic_long_cmpxchg_release(l, old, new) \ argument
92 #define atomic_long_cmpxchg(l, old, new) \ argument
96 #define atomic_long_try_cmpxchg_relaxed(l, old, new) \ argument
99 #define atomic_long_try_cmpxchg_acquire(l, old, new) \ argument
102 #define atomic_long_try_cmpxchg_release(l, old, new) \ argument
105 #define atomic_long_try_cmpxchg(l, old, new) \ argument
126 static __always_inline void atomic_long_dec(atomic_long_t *l) in atomic_long_dec()
214 static inline int atomic_long_dec_and_test(atomic_long_t *l) in atomic_long_dec_and_test()
[all …]
Dqspinlock.h116 #define arch_spin_is_locked(l) queued_spin_is_locked(l) argument
117 #define arch_spin_is_contended(l) queued_spin_is_contended(l) argument
118 #define arch_spin_value_unlocked(l) queued_spin_value_unlocked(l) argument
119 #define arch_spin_lock(l) queued_spin_lock(l) argument
120 #define arch_spin_trylock(l) queued_spin_trylock(l) argument
121 #define arch_spin_unlock(l) queued_spin_unlock(l) argument
Dqrwlock.h131 #define arch_read_lock(l) queued_read_lock(l) argument
132 #define arch_write_lock(l) queued_write_lock(l) argument
133 #define arch_read_trylock(l) queued_read_trylock(l) argument
134 #define arch_write_trylock(l) queued_write_trylock(l) argument
135 #define arch_read_unlock(l) queued_read_unlock(l) argument
136 #define arch_write_unlock(l) queued_write_unlock(l) argument
/Linux-v4.19/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-v4.19/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-v4.19/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()
75 static __inline__ long local_sub_return(long i, local_t * l) in local_sub_return()
120 #define local_cmpxchg(l, o, n) \ argument
122 #define local_xchg(l, n) (atomic_long_xchg((&(l)->a), (n))) argument
[all …]
/Linux-v4.19/arch/powerpc/include/asm/
Dlocal.h20 static __inline__ long local_read(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-v4.19/net/tipc/
Dlink.c234 static int link_is_up(struct tipc_link *l) in link_is_up()
255 bool tipc_link_is_up(struct tipc_link *l) in tipc_link_is_up()
260 bool tipc_link_peer_is_down(struct tipc_link *l) in tipc_link_peer_is_down()
265 bool tipc_link_is_reset(struct tipc_link *l) in tipc_link_is_reset()
270 bool tipc_link_is_establishing(struct tipc_link *l) in tipc_link_is_establishing()
275 bool tipc_link_is_synching(struct tipc_link *l) in tipc_link_is_synching()
280 bool tipc_link_is_failingover(struct tipc_link *l) in tipc_link_is_failingover()
285 bool tipc_link_is_blocked(struct tipc_link *l) in tipc_link_is_blocked()
290 static bool link_is_bc_sndlink(struct tipc_link *l) in link_is_bc_sndlink()
295 static bool link_is_bc_rcvlink(struct tipc_link *l) in link_is_bc_rcvlink()
[all …]
/Linux-v4.19/include/linux/
Dlockdep.h372 #define lockdep_assert_held(l) do { \ argument
376 #define lockdep_assert_held_exclusive(l) do { \ argument
380 #define lockdep_assert_held_read(l) do { \ argument
384 #define lockdep_assert_held_once(l) do { \ argument
390 #define lockdep_pin_lock(l) lock_pin_lock(&(l)->dep_map) argument
391 #define lockdep_repin_lock(l,c) lock_repin_lock(&(l)->dep_map, (c)) argument
392 #define lockdep_unpin_lock(l,c) lock_unpin_lock(&(l)->dep_map, (c)) argument
404 # define lock_acquire(l, s, t, r, c, n, i) do { } while (0) argument
405 # define lock_release(l, n, i) do { } while (0) argument
406 # define lock_downgrade(l, i) do { } while (0) argument
[all …]
/Linux-v4.19/kernel/bpf/
Dbpf_lru_list.c50 static void bpf_lru_list_count_inc(struct bpf_lru_list *l, in bpf_lru_list_count_inc()
57 static void bpf_lru_list_count_dec(struct bpf_lru_list *l, in bpf_lru_list_count_dec()
64 static void __bpf_lru_node_move_to_free(struct bpf_lru_list *l, in __bpf_lru_node_move_to_free()
85 static void __bpf_lru_node_move_in(struct bpf_lru_list *l, in __bpf_lru_node_move_in()
103 static void __bpf_lru_node_move(struct bpf_lru_list *l, in __bpf_lru_node_move()
127 static bool bpf_lru_list_inactive_low(const struct bpf_lru_list *l) in bpf_lru_list_inactive_low()
143 struct bpf_lru_list *l) in __bpf_lru_list_rotate_active()
170 struct bpf_lru_list *l) in __bpf_lru_list_rotate_inactive()
210 struct bpf_lru_list *l, in __bpf_lru_list_shrink_inactive()
240 static void __bpf_lru_list_rotate(struct bpf_lru *lru, struct bpf_lru_list *l) in __bpf_lru_list_rotate()
[all …]
Dhashtab.c87 static inline void htab_elem_set_ptr(struct htab_elem *l, u32 key_size, in htab_elem_set_ptr()
93 static inline void __percpu *htab_elem_get_ptr(struct htab_elem *l, u32 key_size) in htab_elem_get_ptr()
98 static void *fd_htab_map_get_ptr(const struct bpf_map *map, struct htab_elem *l) in fd_htab_map_get_ptr()
131 struct htab_elem *l; in prealloc_lru_pop() local
213 struct pcpu_freelist_node *l; in alloc_extra_elems() local
428 struct htab_elem *l; in lookup_elem_raw() local
446 struct htab_elem *l; in lookup_nulls_elem_raw() local
468 struct htab_elem *l; in __htab_map_lookup_elem() local
487 struct htab_elem *l = __htab_map_lookup_elem(map, key); in htab_map_lookup_elem() local
523 struct htab_elem *l = __htab_map_lookup_elem(map, key); in htab_lru_map_lookup_elem() local
[all …]
/Linux-v4.19/tools/lib/subcmd/
Dparse-options.h121 #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } argument
123 #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .val… argument
124 #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), … argument
125 #define OPT_BOOLEAN_FLAG(s, l, v, h, f) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name… argument
126 #define OPT_BOOLEAN_SET(s, l, v, os, h) \ argument
130 #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .va… argument
131 #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l)… argument
132 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), … argument
133 #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), … argument
134 #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l),… argument
[all …]
/Linux-v4.19/kernel/locking/
Drtmutex.h14 #define rt_mutex_deadlock_check(l) (0) argument
17 #define debug_rt_mutex_lock(l) do { } while (0) argument
18 #define debug_rt_mutex_proxy_lock(l,p) do { } while (0) argument
19 #define debug_rt_mutex_proxy_unlock(l) do { } while (0) argument
20 #define debug_rt_mutex_unlock(l) do { } while (0) argument
22 #define debug_rt_mutex_deadlock(d, a ,l) do { } while (0) argument
/Linux-v4.19/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-v4.19/arch/arm/mach-omap1/
Dusb.c307 u32 l; in omap1_usb0_init() local
329 u32 l; in omap1_usb0_init() local
375 u32 l; in omap1_usb0_init() local
392 u32 l; in omap1_usb0_init() local
414 u32 l; in omap1_usb1_init() local
459 u32 l; in omap1_usb1_init() local
484 u32 l; in omap1_usb2_init() local
530 u32 l; in omap1_usb2_init() local
/Linux-v4.19/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-v4.19/arch/arm/include/asm/
Ddmi.h13 #define dmi_early_remap(x, l) memremap(x, l, MEMREMAP_WB) argument
14 #define dmi_early_unmap(x, l) memunmap(x) argument
15 #define dmi_remap(x, l) memremap(x, l, MEMREMAP_WB) argument
17 #define dmi_alloc(l) kzalloc(l, GFP_KERNEL) argument
Dio.h269 #define outsb(p,d,l) __raw_writesb(__io(p),d,l) argument
270 #define outsw(p,d,l) __raw_writesw(__io(p),d,l) argument
271 #define outsl(p,d,l) __raw_writesl(__io(p),d,l) argument
273 #define insb(p,d,l) __raw_readsb(__io(p),d,l) argument
274 #define insw(p,d,l) __raw_readsw(__io(p),d,l) argument
275 #define insl(p,d,l) __raw_readsl(__io(p),d,l) argument
316 #define readsb(p,d,l) __raw_readsb(p,d,l) argument
317 #define readsw(p,d,l) __raw_readsw(p,d,l) argument
318 #define readsl(p,d,l) __raw_readsl(p,d,l) argument
320 #define writesb(p,d,l) __raw_writesb(p,d,l) argument
[all …]
/Linux-v4.19/drivers/char/tpm/
Dtpm_tis_core.h70 #define TPM_ACCESS(l) (0x0000 | ((l) << 12)) argument
71 #define TPM_INT_ENABLE(l) (0x0008 | ((l) << 12)) argument
72 #define TPM_INT_VECTOR(l) (0x000C | ((l) << 12)) argument
73 #define TPM_INT_STATUS(l) (0x0010 | ((l) << 12)) argument
74 #define TPM_INTF_CAPS(l) (0x0014 | ((l) << 12)) argument
75 #define TPM_STS(l) (0x0018 | ((l) << 12)) argument
76 #define TPM_STS3(l) (0x001b | ((l) << 12)) argument
77 #define TPM_DATA_FIFO(l) (0x0024 | ((l) << 12)) argument
79 #define TPM_DID_VID(l) (0x0F00 | ((l) << 12)) argument
80 #define TPM_RID(l) (0x0F04 | ((l) << 12)) argument
/Linux-v4.19/drivers/tty/
Dtty_ldsem.c38 # define __acq(l, s, t, r, c, n, i) \ argument
40 # define __rel(l, n, i) \ argument
42 #define lockdep_acquire(l, s, t, i) __acq(l, s, t, 0, 1, NULL, i) argument
43 #define lockdep_acquire_nest(l, s, t, n, i) __acq(l, s, t, 0, 1, n, i) argument
44 #define lockdep_acquire_read(l, s, t, i) __acq(l, s, t, 1, 1, NULL, i) argument
45 #define lockdep_release(l, n, i) __rel(l, n, i) argument
47 # define lockdep_acquire(l, s, t, i) do { } while (0) argument
48 # define lockdep_acquire_nest(l, s, t, n, i) do { } while (0) argument
49 # define lockdep_acquire_read(l, s, t, i) do { } while (0) argument
50 # define lockdep_release(l, n, i) do { } while (0) argument
/Linux-v4.19/lib/
Dkfifo.c107 unsigned int l; in kfifo_copy_in() local
129 unsigned int l; in __kfifo_in() local
146 unsigned int l; in kfifo_copy_out() local
168 unsigned int l; in __kfifo_out_peek() local
194 unsigned int l; in kfifo_copy_from_user() local
226 unsigned int l; in __kfifo_from_user() local
252 unsigned int l; in kfifo_copy_to_user() local
286 unsigned int l; in __kfifo_to_user() local
312 unsigned int l; in setup_sgl_buf() local
352 unsigned int l; in setup_sgl() local
[all …]
/Linux-v4.19/drivers/clocksource/
Dtimer-ti-dm.c114 u32 l, timeout = 100000; in omap_dm_timer_reset() local
471 u32 l; in omap_dm_timer_modify_idlect_mask() local
518 u32 l; in omap_dm_timer_start() local
562 u32 l; in omap_dm_timer_set_load() local
588 u32 l; in omap_dm_timer_set_load_start() local
615 u32 l; in omap_dm_timer_set_match() local
639 u32 l; in omap_dm_timer_set_pwm() local
664 u32 l; in omap_dm_timer_set_prescaler() local
709 u32 l = mask; in omap_dm_timer_set_int_disable() local
732 unsigned int l; in omap_dm_timer_read_status() local
/Linux-v4.19/drivers/net/ethernet/smsc/
Dsmc91x.h101 #define SMC_insb(a, r, p, l) readsb((a) + (r), p, l) argument
102 #define SMC_outsb(a, r, p, l) writesb((a) + (r), p, l) argument
103 #define SMC_insw(a, r, p, l) readsw((a) + (r), p, l) argument
104 #define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l) argument
105 #define SMC_insl(a, r, p, l) readsl((a) + (r), p, l) argument
106 #define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l) argument
140 #define SMC_insl(a, r, p, l) insl((a) + (r) - 0xa0000000, p, l) argument
141 #define SMC_outsl(a, r, p, l) outsl((a) + (r) - 0xa0000000, p, l) argument
142 #define SMC_insw(a, r, p, l) insw((a) + (r) - 0xa0000000, p, l) argument
143 #define SMC_outsw(a, r, p, l) outsw((a) + (r) - 0xa0000000, p, l) argument
[all …]

12345678910>>...35