/Linux-v5.4/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 | 109 #define arch_spin_is_locked(l) queued_spin_is_locked(l) argument 110 #define arch_spin_is_contended(l) queued_spin_is_contended(l) argument 111 #define arch_spin_value_unlocked(l) queued_spin_value_unlocked(l) argument 112 #define arch_spin_lock(l) queued_spin_lock(l) argument 113 #define arch_spin_trylock(l) queued_spin_trylock(l) argument 114 #define arch_spin_unlock(l) queued_spin_unlock(l) argument
|
D | qrwlock.h | 123 #define arch_read_lock(l) queued_read_lock(l) argument 124 #define arch_write_lock(l) queued_write_lock(l) argument 125 #define arch_read_trylock(l) queued_read_trylock(l) argument 126 #define arch_write_trylock(l) queued_write_trylock(l) argument 127 #define arch_read_unlock(l) queued_read_unlock(l) argument 128 #define arch_write_unlock(l) queued_write_unlock(l) argument
|
/Linux-v5.4/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 …]
|
/Linux-v5.4/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 …]
|
/Linux-v5.4/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() 77 static __inline__ long local_sub_return(long i, local_t * l) in local_sub_return() 124 #define local_cmpxchg(l, o, n) \ argument 126 #define local_xchg(l, n) (atomic_long_xchg((&(l)->a), (n))) argument [all …]
|
/Linux-v5.4/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 …]
|
/Linux-v5.4/net/tipc/ |
D | link.c | 230 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-v5.4/include/linux/ |
D | lockdep.h | 390 #define lockdep_assert_held(l) do { \ argument 394 #define lockdep_assert_held_write(l) do { \ argument 398 #define lockdep_assert_held_read(l) do { \ argument 402 #define lockdep_assert_held_once(l) do { \ argument 408 #define lockdep_pin_lock(l) lock_pin_lock(&(l)->dep_map) argument 409 #define lockdep_repin_lock(l,c) lock_repin_lock(&(l)->dep_map, (c)) argument 410 #define lockdep_unpin_lock(l,c) lock_unpin_lock(&(l)->dep_map, (c)) argument 430 # define lock_acquire(l, s, t, r, c, n, i) do { } while (0) argument 431 # define lock_release(l, n, i) do { } while (0) argument 432 # define lock_downgrade(l, i) do { } while (0) argument [all …]
|
/Linux-v5.4/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 …]
|
D | hashtab.c | 79 static inline void htab_elem_set_ptr(struct htab_elem *l, u32 key_size, in htab_elem_set_ptr() 85 static inline void __percpu *htab_elem_get_ptr(struct htab_elem *l, u32 key_size) in htab_elem_get_ptr() 90 static void *fd_htab_map_get_ptr(const struct bpf_map *map, struct htab_elem *l) in fd_htab_map_get_ptr() 123 struct htab_elem *l; in prealloc_lru_pop() local 205 struct pcpu_freelist_node *l; in alloc_extra_elems() local 425 struct htab_elem *l; in lookup_elem_raw() local 443 struct htab_elem *l; in lookup_nulls_elem_raw() local 465 struct htab_elem *l; in __htab_map_lookup_elem() local 484 struct htab_elem *l = __htab_map_lookup_elem(map, key); in htab_map_lookup_elem() local 521 struct htab_elem *l = __htab_map_lookup_elem(map, key); in __htab_lru_map_lookup_elem() local [all …]
|
/Linux-v5.4/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 …]
|
/Linux-v5.4/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
|
/Linux-v5.4/fs/nls/ |
D | nls_euc-jp.c | 17 #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.4/arch/arm/mach-omap1/ |
D | usb.c | 294 u32 l; in omap1_usb0_init() local 316 u32 l; in omap1_usb0_init() local 362 u32 l; in omap1_usb0_init() local 379 u32 l; in omap1_usb0_init() local 401 u32 l; in omap1_usb1_init() local 446 u32 l; in omap1_usb1_init() local 471 u32 l; in omap1_usb2_init() local 517 u32 l; in omap1_usb2_init() local
|
/Linux-v5.4/arch/arm/include/asm/ |
D | dmi.h | 9 #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
|
D | io.h | 264 #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.4/arch/arm64/include/asm/ |
D | dmi.h | 25 #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.4/drivers/char/tpm/ |
D | tpm_tis_core.h | 66 #define TPM_ACCESS(l) (0x0000 | ((l) << 12)) argument 67 #define TPM_INT_ENABLE(l) (0x0008 | ((l) << 12)) argument 68 #define TPM_INT_VECTOR(l) (0x000C | ((l) << 12)) argument 69 #define TPM_INT_STATUS(l) (0x0010 | ((l) << 12)) argument 70 #define TPM_INTF_CAPS(l) (0x0014 | ((l) << 12)) argument 71 #define TPM_STS(l) (0x0018 | ((l) << 12)) argument 72 #define TPM_STS3(l) (0x001b | ((l) << 12)) argument 73 #define TPM_DATA_FIFO(l) (0x0024 | ((l) << 12)) argument 75 #define TPM_DID_VID(l) (0x0F00 | ((l) << 12)) argument 76 #define TPM_RID(l) (0x0F04 | ((l) << 12)) argument
|
/Linux-v5.4/lib/ |
D | kfifo.c | 94 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 …]
|
/Linux-v5.4/drivers/net/ethernet/smsc/ |
D | smc91x.h | 90 #define SMC_insb(a, r, p, l) readsb((a) + (r), p, l) argument 91 #define SMC_outsb(a, r, p, l) writesb((a) + (r), p, l) argument 92 #define SMC_insw(a, r, p, l) readsw((a) + (r), p, l) argument 93 #define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l) argument 94 #define SMC_insl(a, r, p, l) readsl((a) + (r), p, l) argument 95 #define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l) argument 129 #define SMC_insl(a, r, p, l) insl((a) + (r) - 0xa0000000, p, l) argument 130 #define SMC_outsl(a, r, p, l) outsl((a) + (r) - 0xa0000000, p, l) argument 131 #define SMC_insw(a, r, p, l) insw((a) + (r) - 0xa0000000, p, l) argument 132 #define SMC_outsw(a, r, p, l) outsw((a) + (r) - 0xa0000000, p, l) argument [all …]
|
/Linux-v5.4/arch/powerpc/lib/ |
D | rheap.c | 31 struct list_head *l) in fixup() 159 struct list_head *l; in attach_free_block() local 235 struct list_head *l; in attach_taken_block() local 372 struct list_head *l; in rh_detach_region() local 444 struct list_head *l; in rh_alloc_align() local 529 struct list_head *l; in rh_alloc_fixed() local 615 struct list_head *l; in rh_free() local 644 struct list_head *l; in rh_get_stats() local 682 struct list_head *l; in rh_set_owner() local
|
/Linux-v5.4/drivers/clocksource/ |
D | timer-ti-dm.c | 114 u32 l, timeout = 100000; in omap_dm_timer_reset() local 475 u32 l; in omap_dm_timer_modify_idlect_mask() local 522 u32 l; in omap_dm_timer_start() local 566 u32 l; in omap_dm_timer_set_load() local 591 u32 l; in omap_dm_timer_set_match() local 615 u32 l; in omap_dm_timer_set_pwm() local 640 u32 l; in omap_dm_timer_set_prescaler() local 685 u32 l = mask; in omap_dm_timer_set_int_disable() local 708 unsigned int l; in omap_dm_timer_read_status() local
|
/Linux-v5.4/fs/xfs/ |
D | xfs_rtalloc.h | 139 # define xfs_rtallocate_extent(t,b,min,max,l,f,p,rb) (ENOSYS) argument 140 # define xfs_rtfree_extent(t,b,l) (ENOSYS) argument 141 # define xfs_rtpick_extent(m,t,l,rb) (ENOSYS) argument 143 # define xfs_rtalloc_query_range(t,l,h,f,p) (ENOSYS) argument 147 # define xfs_rtalloc_extent_is_free(m,t,s,l,i) (ENOSYS) argument
|