| /kernel/linux/linux-5.10/include/asm-generic/ |
| D | local64.h | 30 #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 …]
|
| D | local.h | 29 #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 …]
|
| D | qspinlock.h | 114 #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
|
| /kernel/linux/linux-4.19/include/asm-generic/ |
| D | local64.h | 30 #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 …]
|
| D | local.h | 29 #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 …]
|
| D | atomic-long.h | 83 #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 …]
|
| D | qspinlock.h | 116 #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
|
| /kernel/linux/linux-5.10/arch/x86/include/asm/ |
| D | local.h | 16 #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 …]
|
| /kernel/linux/linux-4.19/arch/x86/include/asm/ |
| D | local.h | 16 #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 …]
|
| /kernel/linux/linux-5.10/arch/alpha/include/asm/ |
| D | local.h | 14 #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 …]
|
| /kernel/linux/linux-4.19/arch/alpha/include/asm/ |
| D | local.h | 14 #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 …]
|
| /kernel/linux/linux-4.19/arch/mips/include/asm/ |
| D | local.h | 19 #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 …]
|
| /kernel/linux/linux-5.10/arch/mips/include/asm/ |
| D | local.h | 19 #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 …]
|
| /kernel/linux/linux-5.10/arch/powerpc/include/asm/ |
| D | local.h | 20 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 …]
|
| /kernel/linux/linux-4.19/arch/powerpc/include/asm/ |
| D | local.h | 20 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 …]
|
| /kernel/linux/linux-4.19/net/tipc/ |
| D | link.c | 235 static int link_is_up(struct tipc_link *l) in link_is_up() 256 bool tipc_link_is_up(struct tipc_link *l) in tipc_link_is_up() 261 bool tipc_link_peer_is_down(struct tipc_link *l) in tipc_link_peer_is_down() 266 bool tipc_link_is_reset(struct tipc_link *l) in tipc_link_is_reset() 271 bool tipc_link_is_establishing(struct tipc_link *l) in tipc_link_is_establishing() 276 bool tipc_link_is_synching(struct tipc_link *l) in tipc_link_is_synching() 281 bool tipc_link_is_failingover(struct tipc_link *l) in tipc_link_is_failingover() 286 bool tipc_link_is_blocked(struct tipc_link *l) in tipc_link_is_blocked() 291 static bool link_is_bc_sndlink(struct tipc_link *l) in link_is_bc_sndlink() 296 static bool link_is_bc_rcvlink(struct tipc_link *l) in link_is_bc_rcvlink() [all …]
|
| /kernel/linux/linux-5.10/net/tipc/ |
| D | link.c | 233 static int link_is_up(struct tipc_link *l) in link_is_up() 262 bool tipc_link_is_up(struct tipc_link *l) in tipc_link_is_up() 267 bool tipc_link_peer_is_down(struct tipc_link *l) in tipc_link_peer_is_down() 272 bool tipc_link_is_reset(struct tipc_link *l) in tipc_link_is_reset() 277 bool tipc_link_is_establishing(struct tipc_link *l) in tipc_link_is_establishing() 282 bool tipc_link_is_synching(struct tipc_link *l) in tipc_link_is_synching() 287 bool tipc_link_is_failingover(struct tipc_link *l) in tipc_link_is_failingover() 292 bool tipc_link_is_blocked(struct tipc_link *l) in tipc_link_is_blocked() 297 static bool link_is_bc_sndlink(struct tipc_link *l) in link_is_bc_sndlink() 302 static bool link_is_bc_rcvlink(struct tipc_link *l) in link_is_bc_rcvlink() [all …]
|
| /kernel/linux/linux-5.10/include/linux/ |
| D | lockdep.h | 304 #define lockdep_assert_held(l) do { \ argument 308 #define lockdep_assert_held_write(l) do { \ argument 312 #define lockdep_assert_held_read(l) do { \ argument 316 #define lockdep_assert_held_once(l) do { \ argument 322 #define lockdep_pin_lock(l) lock_pin_lock(&(l)->dep_map) argument 323 #define lockdep_repin_lock(l,c) lock_repin_lock(&(l)->dep_map, (c)) argument 324 #define lockdep_unpin_lock(l,c) lock_unpin_lock(&(l)->dep_map, (c)) argument 344 # define lock_acquire(l, s, t, r, c, n, i) do { } while (0) argument 345 # define lock_release(l, i) do { } while (0) argument 346 # define lock_downgrade(l, i) do { } while (0) argument [all …]
|
| D | bits.h | 23 #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
|
| /kernel/linux/linux-4.19/include/linux/ |
| D | lockdep.h | 372 #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 …]
|
| /kernel/linux/linux-4.19/kernel/bpf/ |
| D | bpf_lru_list.c | 50 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 …]
|
| /kernel/linux/linux-5.10/kernel/bpf/ |
| D | bpf_lru_list.c | 47 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 …]
|
| /kernel/linux/linux-5.10/tools/lib/subcmd/ |
| D | parse-options.h | 122 #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 …]
|
| /kernel/linux/linux-5.10/tools/include/linux/ |
| D | bits.h | 23 #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
|
| /kernel/linux/linux-4.19/kernel/locking/ |
| D | rtmutex.h | 14 #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
|