Home
last modified time | relevance | path

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

12345678910>>...30

/linux/include/asm-generic/
H A 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 …]
H A 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 …]
H A Dqrwlock.h139 #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 Dqspinlock.h144 #define arch_spin_is_locked(l) queued_spin_is_locked(l) argument
145 #define arch_spin_is_contended(l) queued_spin_is_contended(l) argument
146 #define arch_spin_value_unlocked(l) queued_spin_value_unlocked(l) argument
147 #define arch_spin_lock(l) queued_spin_lock(l) argument
148 #define arch_spin_trylock(l) queued_spin_trylock(l) argument
149 #define arch_spin_unlock(l) queued_spin_unlock(l) argument
H A Dticket_spinlock.h97 #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 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()
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 …]
/linux/arch/alpha/include/asm/
H A 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 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/x86/include/asm/
H A 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/arch/mips/include/asm/
H A 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()
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 Ddmi.h8 #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 Dlocal.h20 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 Dqspinlock.h161 #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 Dlink.c268 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
562 struct tipc_link *l; tipc_link_bc_create() local
604 tipc_link_fsm_evt(struct tipc_link * l,int evt) tipc_link_fsm_evt() argument
766 link_profile_stats(struct tipc_link * l) link_profile_stats() argument
812 tipc_link_too_silent(struct tipc_link * l) tipc_link_too_silent() argument
819 tipc_link_timeout(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_timeout() argument
884 link_schedule_user(struct tipc_link * l,struct tipc_msg * hdr) link_schedule_user() argument
909 link_prepare_wakeup(struct tipc_link * l) link_prepare_wakeup() argument
945 tipc_link_set_skb_retransmit_time(struct sk_buff * skb,struct tipc_link * l) tipc_link_set_skb_retransmit_time() argument
953 tipc_link_reset(struct tipc_link * l) tipc_link_reset() argument
1014 tipc_link_xmit(struct tipc_link * l,struct sk_buff_head * list,struct sk_buff_head * xmitq) tipc_link_xmit() argument
1107 tipc_link_update_cwin(struct tipc_link * l,int released,bool retransmitted) tipc_link_update_cwin() argument
1149 tipc_link_advance_backlog(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_advance_backlog() argument
1198 link_retransmit_failure(struct tipc_link * l,struct tipc_link * r,int * rc) link_retransmit_failure() argument
1247 tipc_data_input(struct tipc_link * l,struct sk_buff * skb,struct sk_buff_head * inputq) tipc_data_input() argument
1298 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
1343 tipc_link_tnl_rcv(struct tipc_link * l,struct sk_buff * skb,struct sk_buff_head * inputq) tipc_link_tnl_rcv() argument
1417 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
1449 __tipc_build_gap_ack_blks(struct tipc_gap_ack_blks * ga,struct tipc_link * l,u8 start_index) __tipc_build_gap_ack_blks() argument
1495 tipc_build_gap_ack_blks(struct tipc_link * l,struct tipc_msg * hdr) tipc_build_gap_ack_blks() argument
1535 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
1691 tipc_link_build_state_msg(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_build_state_msg() argument
1715 tipc_link_build_reset_msg(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_build_reset_msg() argument
1735 tipc_link_build_nack_msg(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_build_nack_msg() argument
1765 tipc_link_rcv(struct tipc_link * l,struct sk_buff * skb,struct sk_buff_head * xmitq) tipc_link_rcv() argument
1835 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
1919 tipc_link_create_dummy_tnl_msg(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_create_dummy_tnl_msg() argument
1952 tipc_link_tnl_prepare(struct tipc_link * l,struct tipc_link * tnl,int mtyp,struct sk_buff_head * xmitq) tipc_link_tnl_prepare() argument
2107 tipc_link_failover_prepare(struct tipc_link * l,struct tipc_link * tnl,struct sk_buff_head * xmitq) tipc_link_failover_prepare() argument
2134 tipc_link_validate_msg(struct tipc_link * l,struct tipc_msg * hdr) tipc_link_validate_msg() argument
2177 tipc_link_proto_rcv(struct tipc_link * l,struct sk_buff * skb,struct sk_buff_head * xmitq) tipc_link_proto_rcv() argument
2335 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
2366 tipc_link_build_bc_init_msg(struct tipc_link * l,struct sk_buff_head * xmitq) tipc_link_build_bc_init_msg() argument
2380 tipc_link_bc_init_rcv(struct tipc_link * l,struct tipc_msg * hdr) tipc_link_bc_init_rcv() argument
2407 tipc_link_bc_sync_rcv(struct tipc_link * l,struct tipc_msg * hdr,struct sk_buff_head * xmitq) tipc_link_bc_sync_rcv() argument
2469 struct tipc_link *l = r->bc_sndlink; tipc_link_bc_ack_rcv() local
2498 tipc_link_bc_nack_rcv(struct tipc_link * l,struct sk_buff * skb,struct sk_buff_head * xmitq) tipc_link_bc_nack_rcv() argument
2532 tipc_link_set_queue_limits(struct tipc_link * l,u32 min_win,u32 max_win) tipc_link_set_queue_limits() argument
2551 tipc_link_reset_stats(struct tipc_link * l) tipc_link_reset_stats() argument
2556 link_print(struct tipc_link * l,const char * str) link_print() argument
2865 tipc_link_set_tolerance(struct tipc_link * l,u32 tol,struct sk_buff_head * xmitq) tipc_link_set_tolerance() argument
2875 tipc_link_set_prio(struct tipc_link * l,u32 prio,struct sk_buff_head * xmitq) tipc_link_set_prio() argument
2882 tipc_link_set_abort_limit(struct tipc_link * l,u32 limit) tipc_link_set_abort_limit() argument
2900 tipc_link_dump(struct tipc_link * l,u16 dqueues,char * buf) tipc_link_dump() argument
[all...]
/linux/tools/include/linux/
H A Dbits.h34 #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/kernel/bpf/
H A Dbpf_lru_list.c52 bpf_lru_list_count_inc(struct bpf_lru_list * l,enum bpf_lru_list_type type) bpf_lru_list_count_inc() argument
59 bpf_lru_list_count_dec(struct bpf_lru_list * l,enum bpf_lru_list_type type) bpf_lru_list_count_dec() argument
66 __bpf_lru_node_move_to_free(struct bpf_lru_list * l,struct bpf_lru_node * node,struct list_head * free_list,enum bpf_lru_list_type tgt_free_type) __bpf_lru_node_move_to_free() argument
87 __bpf_lru_node_move_in(struct bpf_lru_list * l,struct bpf_lru_node * node,enum bpf_lru_list_type tgt_type) __bpf_lru_node_move_in() argument
105 __bpf_lru_node_move(struct bpf_lru_list * l,struct bpf_lru_node * node,enum bpf_lru_list_type tgt_type) __bpf_lru_node_move() argument
129 bpf_lru_list_inactive_low(const struct bpf_lru_list * l) bpf_lru_list_inactive_low() argument
145 __bpf_lru_list_rotate_active(struct bpf_lru * lru,struct bpf_lru_list * l) __bpf_lru_list_rotate_active() argument
172 __bpf_lru_list_rotate_inactive(struct bpf_lru * lru,struct bpf_lru_list * l) __bpf_lru_list_rotate_inactive() argument
212 __bpf_lru_list_shrink_inactive(struct bpf_lru * lru,struct bpf_lru_list * l,unsigned int tgt_nshrink,struct list_head * free_list,enum bpf_lru_list_type tgt_free_type) __bpf_lru_list_shrink_inactive() argument
242 __bpf_lru_list_rotate(struct bpf_lru * lru,struct bpf_lru_list * l) __bpf_lru_list_rotate() argument
261 __bpf_lru_list_shrink(struct bpf_lru * lru,struct bpf_lru_list * l,unsigned int tgt_nshrink,struct list_head * free_list,enum bpf_lru_list_type tgt_free_type) __bpf_lru_list_shrink() argument
295 __local_list_flush(struct bpf_lru_list * l,struct bpf_lru_locallist * loc_l) __local_list_flush() argument
310 bpf_lru_list_push_free(struct bpf_lru_list * l,struct bpf_lru_node * node) bpf_lru_list_push_free() argument
326 struct bpf_lru_list *l = &lru->common_lru.lru_list; bpf_lru_list_pop_free_to_local() local
409 struct bpf_lru_list *l; bpf_percpu_lru_pop_free() local
544 struct bpf_lru_list *l; bpf_percpu_lru_push_free() local
568 struct bpf_lru_list *l = &lru->common_lru.lru_list; bpf_common_lru_populate() local
591 struct bpf_lru_list *l; bpf_percpu_lru_populate() local
639 bpf_lru_list_init(struct bpf_lru_list * l) bpf_lru_list_init() argument
665 struct bpf_lru_list *l; bpf_lru_init() local
[all...]
/linux/tools/lib/subcmd/
H A Dparse-options.h118 #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 …]
/linux/fs/nls/
H A 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/arch/arm/mach-omap1/
H A Domap-dma.c81 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 Dusb.c279 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 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/arch/arm/include/asm/
H A Ddmi.h9 #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 Ddmi.h18 #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/
H A Dkfifo.c94 unsigned int l; kfifo_copy_in() local
116 unsigned int l; __kfifo_in() local
133 unsigned int l; kfifo_copy_out() local
155 unsigned int l; __kfifo_out_peek() local
181 unsigned int l; kfifo_copy_from_user() local
213 unsigned int l; __kfifo_from_user() local
239 unsigned int l; kfifo_copy_to_user() local
273 unsigned int l; __kfifo_to_user() local
299 unsigned int l; setup_sgl_buf() local
339 unsigned int l; setup_sgl() local
359 unsigned int l; __kfifo_dma_in_prepare() local
372 unsigned int l; __kfifo_dma_out_prepare() local
400 unsigned int l; __kfifo_peek_n() local
[all...]
/linux/drivers/net/ethernet/smsc/
H A Dsmc91x.h90 #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/drivers/char/tpm/
H A 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

12345678910>>...30