| /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-6.6/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 | qrwlock.h | 139 #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
|
| /kernel/linux/linux-6.6/arch/loongarch/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() 44 static inline long local_sub_return(long i, local_t *l) in local_sub_return() 59 static inline long local_cmpxchg(local_t *l, long old, long new) in local_cmpxchg() 64 static inline bool local_try_cmpxchg(local_t *l, long *old, long new) in local_try_cmpxchg() [all …]
|
| /kernel/linux/linux-6.6/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/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-6.6/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() 63 static __inline__ long local_sub_return(long i, local_t * l) in local_sub_return() 97 static __inline__ long local_cmpxchg(local_t *l, long old, long new) in local_cmpxchg() 102 static __inline__ bool local_try_cmpxchg(local_t *l, long *old, long new) in local_try_cmpxchg() [all …]
|
| /kernel/linux/linux-6.6/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 static __inline__ long local_cmpxchg(local_t *l, long old, long new) in local_cmpxchg() 60 static __inline__ bool local_try_cmpxchg(local_t *l, long *old, long new) in local_try_cmpxchg() [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-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-6.6/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-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-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-6.6/net/tipc/ |
| D | link.c | 261 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 …]
|
| /kernel/linux/linux-6.6/include/linux/ |
| D | lockdep.h | 298 #define lock_set_novalidate_class(l, n, i) \ argument 323 #define lockdep_assert_held(l) \ argument 326 #define lockdep_assert_not_held(l) \ argument 329 #define lockdep_assert_held_write(l) \ argument 332 #define lockdep_assert_held_read(l) \ argument 335 #define lockdep_assert_held_once(l) \ argument 343 #define lockdep_pin_lock(l) lock_pin_lock(&(l)->dep_map) argument 344 #define lockdep_repin_lock(l,c) lock_repin_lock(&(l)->dep_map, (c)) argument 345 #define lockdep_unpin_lock(l,c) lock_unpin_lock(&(l)->dep_map, (c)) argument 375 # define lock_acquire(l, s, t, r, c, n, i) do { } while (0) argument [all …]
|
| D | bits.h | 22 #define GENMASK_INPUT_CHECK(h, l) \ argument 30 #define GENMASK_INPUT_CHECK(h, l) 0 argument 33 #define __GENMASK(h, l) \ argument 36 #define GENMASK(h, l) \ argument 39 #define __GENMASK_ULL(h, l) \ argument 42 #define GENMASK_ULL(h, l) \ argument
|
| /kernel/linux/linux-5.10/include/linux/ |
| D | lockdep.h | 308 #define lockdep_assert_held(l) do { \ argument 312 #define lockdep_assert_held_write(l) do { \ argument 316 #define lockdep_assert_held_read(l) do { \ argument 320 #define lockdep_assert_held_once(l) do { \ argument 326 #define lockdep_pin_lock(l) lock_pin_lock(&(l)->dep_map) argument 327 #define lockdep_repin_lock(l,c) lock_repin_lock(&(l)->dep_map, (c)) argument 328 #define lockdep_unpin_lock(l,c) lock_unpin_lock(&(l)->dep_map, (c)) argument 348 # define lock_acquire(l, s, t, r, c, n, i) do { } while (0) argument 349 # define lock_release(l, i) do { } while (0) argument 350 # define lock_downgrade(l, i) do { } while (0) argument [all …]
|
| /kernel/linux/linux-6.6/kernel/bpf/ |
| D | bpf_lru_list.c | 52 static void bpf_lru_list_count_inc(struct bpf_lru_list *l, in bpf_lru_list_count_inc() 59 static void bpf_lru_list_count_dec(struct bpf_lru_list *l, in bpf_lru_list_count_dec() 66 static void __bpf_lru_node_move_to_free(struct bpf_lru_list *l, in __bpf_lru_node_move_to_free() 87 static void __bpf_lru_node_move_in(struct bpf_lru_list *l, in __bpf_lru_node_move_in() 105 static void __bpf_lru_node_move(struct bpf_lru_list *l, in __bpf_lru_node_move() 129 static bool bpf_lru_list_inactive_low(const struct bpf_lru_list *l) in bpf_lru_list_inactive_low() 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() 242 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 | 52 static void bpf_lru_list_count_inc(struct bpf_lru_list *l, in bpf_lru_list_count_inc() 59 static void bpf_lru_list_count_dec(struct bpf_lru_list *l, in bpf_lru_list_count_dec() 66 static void __bpf_lru_node_move_to_free(struct bpf_lru_list *l, in __bpf_lru_node_move_to_free() 87 static void __bpf_lru_node_move_in(struct bpf_lru_list *l, in __bpf_lru_node_move_in() 105 static void __bpf_lru_node_move(struct bpf_lru_list *l, in __bpf_lru_node_move() 129 static bool bpf_lru_list_inactive_low(const struct bpf_lru_list *l) in bpf_lru_list_inactive_low() 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() 242 static void __bpf_lru_list_rotate(struct bpf_lru *lru, struct bpf_lru_list *l) in __bpf_lru_list_rotate() [all …]
|
| /kernel/linux/linux-6.6/tools/lib/subcmd/ |
| D | parse-options.h | 118 #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } argument 120 #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .val… argument 121 #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), … argument 122 #define OPT_BOOLEAN_FLAG(s, l, v, h, f) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name… argument 123 #define OPT_BOOLEAN_SET(s, l, v, os, h) \ argument 127 #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .va… argument 128 #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l)… argument 129 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), … argument 130 #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), … argument 131 #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l),… argument [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-6.6/tools/include/linux/ |
| D | bits.h | 22 #define GENMASK_INPUT_CHECK(h, l) \ argument 30 #define GENMASK_INPUT_CHECK(h, l) 0 argument 33 #define __GENMASK(h, l) \ argument 36 #define GENMASK(h, l) \ argument 39 #define __GENMASK_ULL(h, l) \ argument 42 #define GENMASK_ULL(h, l) \ argument
|