| /linux/include/asm-generic/ |
| H A 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 …]
|
| H A 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 …]
|
| H A 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
|
| H A D | ticket_spinlock.h | 97 #define arch_spin_is_locked(l) ticket_spin_is_locked(l) argument 98 #define arch_spin_is_contended(l) ticket_spin_is_contended(l) argument 99 #define arch_spin_value_unlocked(l) ticket_spin_value_unlocked(l) argument 100 #define arch_spin_lock(l) ticket_spin_lock(l) argument 101 #define arch_spin_trylock(l) ticket_spin_trylock(l) argument 102 #define arch_spin_unlock(l) ticket_spin_unlock(l) argument
|
| /linux/arch/loongarch/include/asm/ |
| H A D | local.h | 20 #define local_read(l) atomic_long_read(&(l)->a) argument 21 #define local_set(l, i) atomic_long_set(&(l)->a, (i)) argument 23 #define local_add(i, l) atomic_long_add((i), (&(l)->a)) argument 24 #define local_sub(i, l) atomic_long_sub((i), (&(l)->a)) argument 25 #define local_inc(l) atomic_long_inc(&(l)->a) argument 26 #define local_dec(l) atomic_long_dec(&(l)->a) argument 32 static inline long local_add_return(long i, local_t *l) in local_add_return() 46 static inline long local_sub_return(long i, local_t *l) in local_sub_return() 61 static inline long local_add_return(long i, local_t *l) in local_add_return() 78 static inline long local_sub_return(long i, local_t *l) in local_sub_return() [all …]
|
| /linux/arch/alpha/include/asm/ |
| H A 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 …]
|
| /linux/arch/mips/include/asm/ |
| H A 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 …]
|
| H A D | dmi.h | 8 #define dmi_early_remap(x, l) ioremap(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/arch/powerpc/include/asm/ |
| H A 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 …]
|
| H A D | qspinlock.h | 161 #define arch_spin_is_locked(l) queued_spin_is_locked(l) argument 162 #define arch_spin_is_contended(l) queued_spin_is_contended(l) argument 163 #define arch_spin_value_unlocked(l) queued_spin_value_unlocked(l) argument 164 #define arch_spin_lock(l) queued_spin_lock(l) argument 165 #define arch_spin_trylock(l) queued_spin_trylock(l) argument 166 #define arch_spin_unlock(l) queued_spin_unlock(l) argument
|
| /linux/net/tipc/ |
| H A D | link.c | 268 bool tipc_link_is_up(struct tipc_link *l) in tipc_link_is_up() argument 273 tipc_link_peer_is_down(struct tipc_link * l) tipc_link_peer_is_down() argument 278 tipc_link_is_reset(struct tipc_link * l) tipc_link_is_reset() argument 283 tipc_link_is_establishing(struct tipc_link * l) tipc_link_is_establishing() argument 288 tipc_link_is_synching(struct tipc_link * l) tipc_link_is_synching() argument 293 tipc_link_is_failingover(struct tipc_link * l) tipc_link_is_failingover() argument 298 tipc_link_is_blocked(struct tipc_link * l) tipc_link_is_blocked() argument 303 link_is_bc_sndlink(struct tipc_link * l) link_is_bc_sndlink() argument 308 link_is_bc_rcvlink(struct tipc_link * l) link_is_bc_rcvlink() argument 313 tipc_link_set_active(struct tipc_link * l,bool active) tipc_link_set_active() argument 318 tipc_link_id(struct tipc_link * l) tipc_link_id() argument 323 tipc_link_min_win(struct tipc_link * l) tipc_link_min_win() argument 328 tipc_link_max_win(struct tipc_link * l) tipc_link_max_win() argument 333 tipc_link_prio(struct tipc_link * l) tipc_link_prio() argument 338 tipc_link_tolerance(struct tipc_link * l) tipc_link_tolerance() argument 343 tipc_link_inputq(struct tipc_link * l) tipc_link_inputq() argument 348 tipc_link_plane(struct tipc_link * l) tipc_link_plane() argument 353 tipc_link_net(struct tipc_link * l) tipc_link_net() argument 358 tipc_link_update_caps(struct tipc_link * l,u16 capabilities) tipc_link_update_caps() argument 396 tipc_link_bc_peers(struct tipc_link * l) tipc_link_bc_peers() argument 401 link_bc_rcv_gap(struct tipc_link * l) link_bc_rcv_gap() argument 413 tipc_link_set_mtu(struct tipc_link * l,int mtu) tipc_link_set_mtu() argument 418 tipc_link_mtu(struct tipc_link * l) tipc_link_mtu() argument 423 tipc_link_mss(struct tipc_link * l) tipc_link_mss() argument 432 tipc_link_rcv_nxt(struct tipc_link * l) tipc_link_rcv_nxt() argument 437 tipc_link_acked(struct tipc_link * l) tipc_link_acked() argument 442 tipc_link_name(struct tipc_link * l) tipc_link_name() argument 447 tipc_link_state(struct tipc_link * l) tipc_link_state() argument 488 struct tipc_link *l; tipc_link_create() local 560 struct tipc_link *l; tipc_link_bc_create() local 601 tipc_link_fsm_evt(struct tipc_link * l,int evt) tipc_link_fsm_evt() argument 763 link_profile_stats(struct tipc_link * l) link_profile_stats() argument 809 tipc_link_too_silent(struct tipc_link * l) tipc_link_too_silent() argument 816 tipc_link_timeout(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_timeout() argument 881 link_schedule_user(struct tipc_link * l,struct tipc_msg * hdr) link_schedule_user() argument 906 link_prepare_wakeup(struct tipc_link * l) link_prepare_wakeup() argument 942 tipc_link_set_skb_retransmit_time(struct sk_buff * skb,struct tipc_link * l) tipc_link_set_skb_retransmit_time() argument 950 tipc_link_reset(struct tipc_link * l) tipc_link_reset() argument 1011 tipc_link_xmit(struct tipc_link * l,struct sk_buff_head * list,struct sk_buff_head * xmitq) tipc_link_xmit() argument 1104 tipc_link_update_cwin(struct tipc_link * l,int released,bool retransmitted) tipc_link_update_cwin() argument 1146 tipc_link_advance_backlog(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_advance_backlog() argument 1195 link_retransmit_failure(struct tipc_link * l,struct tipc_link * r,int * rc) link_retransmit_failure() argument 1244 tipc_data_input(struct tipc_link * l,struct sk_buff * skb,struct sk_buff_head * inputq) tipc_data_input() argument 1295 tipc_link_input(struct tipc_link * l,struct sk_buff * skb,struct sk_buff_head * inputq,struct sk_buff ** reasm_skb) tipc_link_input() argument 1340 tipc_link_tnl_rcv(struct tipc_link * l,struct sk_buff * skb,struct sk_buff_head * inputq) tipc_link_tnl_rcv() argument 1414 tipc_get_gap_ack_blks(struct tipc_gap_ack_blks ** ga,struct tipc_link * l,struct tipc_msg * hdr,bool uc) tipc_get_gap_ack_blks() argument 1446 __tipc_build_gap_ack_blks(struct tipc_gap_ack_blks * ga,struct tipc_link * l,u8 start_index) __tipc_build_gap_ack_blks() argument 1492 tipc_build_gap_ack_blks(struct tipc_link * l,struct tipc_msg * hdr) tipc_build_gap_ack_blks() argument 1532 tipc_link_advance_transmq(struct tipc_link * l,struct tipc_link * r,u16 acked,u16 gap,struct tipc_gap_ack_blks * ga,struct sk_buff_head * xmitq,bool * retransmitted,int * rc) tipc_link_advance_transmq() argument 1688 tipc_link_build_state_msg(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_build_state_msg() argument 1712 tipc_link_build_reset_msg(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_build_reset_msg() argument 1732 tipc_link_build_nack_msg(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_build_nack_msg() argument 1762 tipc_link_rcv(struct tipc_link * l,struct sk_buff * skb,struct sk_buff_head * xmitq) tipc_link_rcv() argument 1832 tipc_link_build_proto_msg(struct tipc_link * l,int mtyp,bool probe,bool probe_reply,u16 rcvgap,int tolerance,int priority,struct sk_buff_head * xmitq) tipc_link_build_proto_msg() argument 1916 tipc_link_create_dummy_tnl_msg(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_create_dummy_tnl_msg() argument 1949 tipc_link_tnl_prepare(struct tipc_link * l,struct tipc_link * tnl,int mtyp,struct sk_buff_head * xmitq) tipc_link_tnl_prepare() argument 2104 tipc_link_failover_prepare(struct tipc_link * l,struct tipc_link * tnl,struct sk_buff_head * xmitq) tipc_link_failover_prepare() argument 2131 tipc_link_validate_msg(struct tipc_link * l,struct tipc_msg * hdr) tipc_link_validate_msg() argument 2174 tipc_link_proto_rcv(struct tipc_link * l,struct sk_buff * skb,struct sk_buff_head * xmitq) tipc_link_proto_rcv() argument 2332 tipc_link_build_bc_proto_msg(struct tipc_link * l,bool bcast,u16 peers_snd_nxt,struct sk_buff_head * xmitq) tipc_link_build_bc_proto_msg() argument 2363 tipc_link_build_bc_init_msg(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_build_bc_init_msg() argument 2377 tipc_link_bc_init_rcv(struct tipc_link * l,struct tipc_msg * hdr) tipc_link_bc_init_rcv() argument 2404 tipc_link_bc_sync_rcv(struct tipc_link * l,struct tipc_msg * hdr,struct sk_buff_head * xmitq) tipc_link_bc_sync_rcv() argument 2466 struct tipc_link *l = r->bc_sndlink; tipc_link_bc_ack_rcv() local 2495 tipc_link_bc_nack_rcv(struct tipc_link * l,struct sk_buff * skb,struct sk_buff_head * xmitq) tipc_link_bc_nack_rcv() argument 2529 tipc_link_set_queue_limits(struct tipc_link * l,u32 min_win,u32 max_win) tipc_link_set_queue_limits() argument 2548 tipc_link_reset_stats(struct tipc_link * l) tipc_link_reset_stats() argument 2553 link_print(struct tipc_link * l,const char * str) link_print() argument 2862 tipc_link_set_tolerance(struct tipc_link * l,u32 tol,struct sk_buff_head * xmitq) tipc_link_set_tolerance() argument 2872 tipc_link_set_prio(struct tipc_link * l,u32 prio,struct sk_buff_head * xmitq) tipc_link_set_prio() argument 2879 tipc_link_set_abort_limit(struct tipc_link * l,u32 limit) tipc_link_set_abort_limit() argument 2897 tipc_link_dump(struct tipc_link * l,u16 dqueues,char * buf) tipc_link_dump() argument [all...] |
| /linux/tools/include/linux/ |
| H A D | bits.h | 34 #define GENMASK_INPUT_CHECK(h, l) BUILD_BUG_ON_ZERO(const_true((l) > (h))) argument 46 #define GENMASK_TYPE(t, h, l) \ argument 51 #define GENMASK(h, l) GENMASK_TYPE(unsigned long, h, l) argument 52 #define GENMASK_ULL(h, l) GENMASK_TYPE(unsigned long long, h, l) argument 54 #define GENMASK_U8(h, l) GENMASK_TYPE(u8, h, l) argument 55 #define GENMASK_U16(h, l) GENMASK_TYPE(u16, h, l) argument 56 #define GENMASK_U32(h, l) GENMASK_TYPE(u32, h, l) argument 57 #define GENMASK_U64(h, l) GENMASK_TYPE(u64, h, l) argument 58 #define GENMASK_U128(h, l) GENMASK_TYPE(u128, h, l) argument 84 #define GENMASK(h, l) __GENMASK(h, l) argument [all …]
|
| /linux/include/linux/ |
| H A D | bits.h | 34 #define GENMASK_INPUT_CHECK(h, l) BUILD_BUG_ON_ZERO(const_true((l) > (h))) argument 46 #define GENMASK_TYPE(t, h, l) \ argument 51 #define GENMASK(h, l) GENMASK_TYPE(unsigned long, h, l) argument 52 #define GENMASK_ULL(h, l) GENMASK_TYPE(unsigned long long, h, l) argument 54 #define GENMASK_U8(h, l) GENMASK_TYPE(u8, h, l) argument 55 #define GENMASK_U16(h, l) GENMASK_TYPE(u16, h, l) argument 56 #define GENMASK_U32(h, l) GENMASK_TYPE(u32, h, l) argument 57 #define GENMASK_U64(h, l) GENMASK_TYPE(u64, h, l) argument 58 #define GENMASK_U128(h, l) GENMASK_TYPE(u128, h, l) argument 84 #define GENMASK(h, l) __GENMASK(h, l) argument [all …]
|
| H A D | local_lock_internal.h | 44 static inline void local_lock_acquire(local_lock_t *l) in local_lock_acquire() 51 static inline void local_trylock_acquire(local_lock_t *l) in local_trylock_acquire() 58 static inline void local_lock_release(local_lock_t *l) in local_lock_release() 65 static inline void local_lock_debug_init(local_lock_t *l) in local_lock_debug_init() 72 static inline void local_lock_acquire(local_lock_t *l) { } in local_lock_acquire() 73 static inline void local_trylock_acquire(local_lock_t *l) { } in local_trylock_acquire() 74 static inline void local_lock_release(local_lock_t *l) { } in local_lock_release() 75 static inline void local_lock_debug_init(local_lock_t *l) { } in local_lock_debug_init()
|
| /linux/tools/lib/subcmd/ |
| H A D | parse-options.h | 120 #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } argument 122 #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h), .defval = (b) } argument 123 #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = check_vtype(v, bool *), .help = (h) } argument 118 OPT_ARGUMENT(l,h) global() argument 121 OPT_BOOLEAN(s,l,v,h) global() argument 127 OPT_INCR(s,l,v,h) global() argument 128 OPT_SET_UINT(s,l,v,h,i) global() argument 129 OPT_SET_PTR(s,l,v,h,p) global() argument 130 OPT_INTEGER(s,l,v,h) global() argument 131 OPT_UINTEGER(s,l,v,h) global() argument 132 OPT_UINTEGER_OPTARG(s,l,v,d,h) global() argument 133 OPT_LONG(s,l,v,h) global() argument 134 OPT_ULONG(s,l,v,h) global() argument 135 OPT_U64(s,l,v,h) global() argument 136 OPT_STRING(s,l,v,a,h) global() argument 137 OPT_STRING_OPTARG(s,l,v,a,h,d) global() argument 141 OPT_STRING_OPTARG_SET(s,l,v,os,a,h,d) global() argument 146 OPT_STRING_NOEMPTY(s,l,v,a,h) global() argument 147 OPT_DATE(s,l,v,h) global() argument 149 OPT_CALLBACK(s,l,v,a,h,f) global() argument 151 OPT_CALLBACK_SET(s,l,v,os,a,h,f) global() argument 153 OPT_CALLBACK_NOOPT(s,l,v,a,h,f) global() argument 155 OPT_CALLBACK_DEFAULT(s,l,v,a,h,f,d) global() argument 157 OPT_CALLBACK_DEFAULT_NOOPT(s,l,v,a,h,f,d) global() argument 161 OPT_CALLBACK_OPTARG(s,l,v,d,a,h,f) global() argument [all...] |
| /linux/fs/nls/ |
| H A 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/arch/arm/mach-omap1/ |
| H A D | omap-dma.c | 81 u32 l; in set_gdma_dev() local 93 u32 l; in omap_set_dma_priority() local 137 u32 l; in omap_set_dma_transfer_params() local 164 u32 l; in omap_set_dma_channel_mode() local 179 u32 l; in omap_set_dma_src_params() local 201 u32 l; in omap_set_dma_src_data_pack() local 214 u32 l; in omap_set_dma_src_burst_mode() local 248 u32 l; in omap_set_dma_dest_params() local 269 u32 l; in omap_set_dma_dest_data_pack() local 282 u32 l; in omap_set_dma_dest_burst_mode() local [all …]
|
| H A D | usb.c | 279 u32 l; in omap1_usb0_init() local 294 u32 l; in omap1_usb0_init() local 337 u32 l; in omap1_usb0_init() local 354 u32 l; in omap1_usb0_init() local 376 u32 l; in omap1_usb1_init() local 421 u32 l; in omap1_usb1_init() local 446 u32 l; in omap1_usb2_init() local 492 u32 l; in omap1_usb2_init() local
|
| /linux/arch/arm64/include/asm/ |
| H A 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/arch/arm/include/asm/ |
| H A 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
|
| /linux/arch/riscv/include/asm/ |
| H A D | dmi.h | 18 #define dmi_early_remap(x, l) memremap(x, l, MEMREMAP_WB) argument 19 #define dmi_early_unmap(x, l) memunmap(x) argument 20 #define dmi_remap(x, l) memremap(x, l, MEMREMAP_WB) argument 22 #define dmi_alloc(l) kzalloc(l, GFP_KERNEL) argument
|
| /linux/lib/zstd/common/ |
| H A D | debug.h | 85 # define RAWLOG(l, ...) \ argument 96 # define DEBUGLOG(l, ...) \ argument 104 # define RAWLOG(l, ...) do { } while (0) /* disabled */ argument 105 # define DEBUGLOG(l, ...) do { } while (0) /* disabled */ argument
|
| /linux/drivers/net/ethernet/smsc/ |
| H A 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 130 #define SMC_insw(a, r, p, l) readsw((a) + (r), p, l) argument 131 #define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l) argument 132 #define SMC_insl(a, r, p, l) readsl((a) + (r), p, l) argument 133 #define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l) argument [all …]
|
| /linux/arch/powerpc/lib/ |
| H A 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/include/uapi/linux/ |
| H A D | bits.h | 7 #define __GENMASK(h, l) (((~_UL(0)) << (l)) & (~_UL(0) >> (__BITS_PER_LONG - 1 - (h)))) argument 9 #define __GENMASK_ULL(h, l) (((~_ULL(0)) << (l)) & (~_ULL(0) >> (__BITS_PER_LONG_LONG - 1 - (h)))) argument 11 #define __GENMASK_U128(h, l) \ argument
|