Home
last modified time | relevance | path

Searched defs:l (Results 1 – 200 of 815) sorted by relevance

12345

/linux-4.4.14/include/asm-generic/
Dlocal64.h29 #define local64_read(l) local_read(&(l)->a) argument
30 #define local64_set(l,i) local_set((&(l)->a),(i)) argument
31 #define local64_inc(l) local_inc(&(l)->a) argument
32 #define local64_dec(l) local_dec(&(l)->a) argument
33 #define local64_add(i,l) local_add((i),(&(l)->a)) argument
34 #define local64_sub(i,l) local_sub((i),(&(l)->a)) argument
36 #define local64_sub_and_test(i, l) local_sub_and_test((i), (&(l)->a)) argument
37 #define local64_dec_and_test(l) local_dec_and_test(&(l)->a) argument
38 #define local64_inc_and_test(l) local_inc_and_test(&(l)->a) argument
39 #define local64_add_negative(i, l) local_add_negative((i), (&(l)->a)) argument
[all …]
Dlocal.h28 #define local_read(l) atomic_long_read(&(l)->a) argument
29 #define local_set(l,i) atomic_long_set((&(l)->a),(i)) argument
30 #define local_inc(l) atomic_long_inc(&(l)->a) argument
31 #define local_dec(l) atomic_long_dec(&(l)->a) argument
32 #define local_add(i,l) atomic_long_add((i),(&(l)->a)) argument
33 #define local_sub(i,l) atomic_long_sub((i),(&(l)->a)) argument
35 #define local_sub_and_test(i, l) atomic_long_sub_and_test((i), (&(l)->a)) argument
36 #define local_dec_and_test(l) atomic_long_dec_and_test(&(l)->a) argument
37 #define local_inc_and_test(l) atomic_long_inc_and_test(&(l)->a) argument
38 #define local_add_negative(i, l) atomic_long_add_negative((i), (&(l)->a)) argument
[all …]
Dqspinlock.h155 #define arch_spin_is_locked(l) queued_spin_is_locked(l) argument
156 #define arch_spin_is_contended(l) queued_spin_is_contended(l) argument
157 #define arch_spin_value_unlocked(l) queued_spin_value_unlocked(l) argument
158 #define arch_spin_lock(l) queued_spin_lock(l) argument
159 #define arch_spin_trylock(l) queued_spin_trylock(l) argument
160 #define arch_spin_unlock(l) queued_spin_unlock(l) argument
161 #define arch_spin_lock_flags(l, f) queued_spin_lock(l) argument
162 #define arch_spin_unlock_wait(l) queued_spin_unlock_wait(l) argument
Dqrwlock.h149 #define arch_read_can_lock(l) queued_read_can_lock(l) argument
150 #define arch_write_can_lock(l) queued_write_can_lock(l) argument
151 #define arch_read_lock(l) queued_read_lock(l) argument
152 #define arch_write_lock(l) queued_write_lock(l) argument
153 #define arch_read_trylock(l) queued_read_trylock(l) argument
154 #define arch_write_trylock(l) queued_write_trylock(l) argument
155 #define arch_read_unlock(l) queued_read_unlock(l) argument
156 #define arch_write_unlock(l) queued_write_unlock(l) argument
Datomic-long.h80 #define atomic_long_cmpxchg_relaxed(l, old, new) \ argument
83 #define atomic_long_cmpxchg_acquire(l, old, new) \ argument
86 #define atomic_long_cmpxchg_release(l, old, new) \ argument
89 #define atomic_long_cmpxchg(l, old, new) \ argument
108 static inline void atomic_long_dec(atomic_long_t *l) in atomic_long_dec()
140 static inline int atomic_long_dec_and_test(atomic_long_t *l) in atomic_long_dec_and_test()
147 static inline int atomic_long_inc_and_test(atomic_long_t *l) in atomic_long_inc_and_test()
154 static inline int atomic_long_add_negative(long i, atomic_long_t *l) in atomic_long_add_negative()
187 #define atomic_long_inc_not_zero(l) \ argument
/linux-4.4.14/arch/x86/include/asm/
Dlocal.h15 #define local_read(l) atomic_long_read(&(l)->a) argument
16 #define local_set(l, i) atomic_long_set(&(l)->a, (i)) argument
18 static inline void local_inc(local_t *l) in local_inc()
24 static inline void local_dec(local_t *l) in local_dec()
30 static inline void local_add(long i, local_t *l) in local_add()
37 static inline void local_sub(long i, local_t *l) in local_sub()
53 static inline int local_sub_and_test(long i, local_t *l) in local_sub_and_test()
66 static inline int local_dec_and_test(local_t *l) in local_dec_and_test()
79 static inline int local_inc_and_test(local_t *l) in local_inc_and_test()
93 static inline int local_add_negative(long i, local_t *l) in local_add_negative()
[all …]
Dmsr.h16 u32 l; member
262 static inline int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h) in rdmsr_on_cpu()
267 static inline int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h) in wrmsr_on_cpu()
293 u32 *l, u32 *h) in rdmsr_safe_on_cpu()
297 static inline int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h) in wrmsr_safe_on_cpu()
/linux-4.4.14/arch/powerpc/include/asm/
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
17 #define local_add(i,l) atomic_long_add((i),(&(l)->a)) argument
18 #define local_sub(i,l) atomic_long_sub((i),(&(l)->a)) argument
19 #define local_inc(l) atomic_long_inc(&(l)->a) argument
20 #define local_dec(l) atomic_long_dec(&(l)->a) argument
22 static __inline__ long local_add_return(long a, local_t *l) in local_add_return()
39 #define local_add_negative(a, l) (local_add_return((a), (l)) < 0) argument
41 static __inline__ long local_sub_return(long a, local_t *l) in local_sub_return()
58 static __inline__ long local_inc_return(local_t *l) in local_inc_return()
[all …]
Dkvm_book3s_64.h221 static inline unsigned long __hpte_page_size(unsigned long h, unsigned long l, in __hpte_page_size()
250 static inline unsigned long hpte_page_size(unsigned long h, unsigned long l) in hpte_page_size()
255 static inline unsigned long hpte_base_page_size(unsigned long h, unsigned long l) in hpte_base_page_size()
/linux-4.4.14/arch/alpha/include/asm/
Dlocal.h13 #define local_read(l) atomic_long_read(&(l)->a) argument
14 #define local_set(l,i) atomic_long_set(&(l)->a, (i)) argument
15 #define local_inc(l) atomic_long_inc(&(l)->a) argument
16 #define local_dec(l) atomic_long_dec(&(l)->a) argument
17 #define local_add(i,l) atomic_long_add((i),(&(l)->a)) argument
18 #define local_sub(i,l) atomic_long_sub((i),(&(l)->a)) argument
20 static __inline__ long local_add_return(long i, local_t * l) in local_add_return()
37 static __inline__ long local_sub_return(long i, local_t * l) in local_sub_return()
54 #define local_cmpxchg(l, o, n) \ argument
56 #define local_xchg(l, n) (xchg_local(&((l)->a.counter), (n))) argument
[all …]
/linux-4.4.14/arch/mips/include/asm/
Dlocal.h18 #define local_read(l) atomic_long_read(&(l)->a) argument
19 #define local_set(l, i) atomic_long_set(&(l)->a, (i)) argument
21 #define local_add(i, l) atomic_long_add((i), (&(l)->a)) argument
22 #define local_sub(i, l) atomic_long_sub((i), (&(l)->a)) argument
23 #define local_inc(l) atomic_long_inc(&(l)->a) argument
24 #define local_dec(l) atomic_long_dec(&(l)->a) argument
29 static __inline__ long local_add_return(long i, local_t * l) in local_add_return()
74 static __inline__ long local_sub_return(long i, local_t * l) in local_sub_return()
119 #define local_cmpxchg(l, o, n) \ argument
121 #define local_xchg(l, n) (atomic_long_xchg((&(l)->a), (n))) argument
[all …]
/linux-4.4.14/arch/m32r/include/asm/
Dlocal.h37 #define local_read(l) ((l)->counter) argument
46 #define local_set(l, i) (((l)->counter) = (i)) argument
55 static inline long local_add_return(long i, local_t *l) in local_add_return()
86 static inline long local_sub_return(long i, local_t *l) in local_sub_return()
117 #define local_add(i, l) ((void) local_add_return((i), (l))) argument
126 #define local_sub(i, l) ((void) local_sub_return((i), (l))) argument
137 #define local_sub_and_test(i, l) (local_sub_return((i), (l)) == 0) argument
145 static inline long local_inc_return(local_t *l) in local_inc_return()
175 static inline long local_dec_return(local_t *l) in local_dec_return()
205 #define local_inc(l) ((void)local_inc_return(l)) argument
[all …]
/linux-4.4.14/net/tipc/
Dlink.c110 static int link_is_up(struct tipc_link *l) in link_is_up()
131 bool tipc_link_is_up(struct tipc_link *l) in tipc_link_is_up()
136 bool tipc_link_peer_is_down(struct tipc_link *l) in tipc_link_peer_is_down()
141 bool tipc_link_is_reset(struct tipc_link *l) in tipc_link_is_reset()
146 bool tipc_link_is_establishing(struct tipc_link *l) in tipc_link_is_establishing()
151 bool tipc_link_is_synching(struct tipc_link *l) in tipc_link_is_synching()
156 bool tipc_link_is_failingover(struct tipc_link *l) in tipc_link_is_failingover()
161 bool tipc_link_is_blocked(struct tipc_link *l) in tipc_link_is_blocked()
166 static bool link_is_bc_sndlink(struct tipc_link *l) in link_is_bc_sndlink()
171 static bool link_is_bc_rcvlink(struct tipc_link *l) in link_is_bc_rcvlink()
[all …]
Dbcast.c182 struct tipc_link *l = tipc_bc_sndlink(net); in tipc_bcast_xmit() local
216 int tipc_bcast_rcv(struct net *net, struct tipc_link *l, struct sk_buff *skb) in tipc_bcast_rcv()
250 void tipc_bcast_ack_rcv(struct net *net, struct tipc_link *l, u32 acked) in tipc_bcast_ack_rcv()
272 void tipc_bcast_sync_rcv(struct net *net, struct tipc_link *l, in tipc_bcast_sync_rcv()
468 struct tipc_link *l = tipc_bc_sndlink(net); in tipc_bc_link_set_queue_limits() local
507 struct tipc_link *l = NULL; in tipc_bcast_init() local
Dnode.c201 static void tipc_node_calculate_timer(struct tipc_node *n, struct tipc_link *l) in tipc_node_calculate_timer()
406 struct tipc_link *l, *_l, *tnl; in __tipc_node_link_down() local
472 struct tipc_link *l = le->link; in tipc_node_link_down() local
510 struct tipc_link *l; in tipc_node_check_dest() local
860 struct tipc_link *l; in node_lost_contact() local
1026 struct tipc_link *l = NULL; in tipc_node_xmit() local
1156 struct tipc_link *l, *tnl, *pl = NULL; in tipc_node_check_state() local
/linux-4.4.14/kernel/locking/
Drtmutex.h13 #define rt_mutex_deadlock_check(l) (0) argument
15 #define rt_mutex_deadlock_account_unlock(l) do { } while (0) argument
18 #define debug_rt_mutex_lock(l) do { } while (0) argument
19 #define debug_rt_mutex_proxy_lock(l,p) do { } while (0) argument
20 #define debug_rt_mutex_proxy_unlock(l) do { } while (0) argument
21 #define debug_rt_mutex_unlock(l) do { } while (0) argument
23 #define debug_rt_mutex_deadlock(d, a ,l) do { } while (0) argument
Dspinlock.c35 #define raw_read_can_lock(l) read_can_lock(l) argument
36 #define raw_write_can_lock(l) write_can_lock(l) argument
42 # define arch_read_relax(l) cpu_relax() argument
45 # define arch_write_relax(l) cpu_relax() argument
48 # define arch_spin_relax(l) cpu_relax() argument
Dmcs_spinlock.h28 #define arch_mcs_spin_lock_contended(l) \ argument
41 #define arch_mcs_spin_unlock_contended(l) \ argument
Dqspinlock_paravirt.h221 struct __qspinlock *l = (void *)lock; in pv_kick_node() local
251 struct __qspinlock *l = (void *)lock; in pv_wait_head() local
316 struct __qspinlock *l = (void *)lock; in __pv_queued_spin_unlock() local
Dqspinlock.c160 struct __qspinlock *l = (void *)lock; in clear_pending_set_locked() local
177 struct __qspinlock *l = (void *)lock; in xchg_tail() local
229 struct __qspinlock *l = (void *)lock; in set_locked() local
Drtmutex.c77 # define rt_mutex_cmpxchg_relaxed(l,c,n) (cmpxchg_relaxed(&l->owner, c, n) == c) argument
78 # define rt_mutex_cmpxchg_acquire(l,c,n) (cmpxchg_acquire(&l->owner, c, n) == c) argument
79 # define rt_mutex_cmpxchg_release(l,c,n) (cmpxchg_release(&l->owner, c, n) == c) argument
137 # define rt_mutex_cmpxchg_relaxed(l,c,n) (0) argument
138 # define rt_mutex_cmpxchg_acquire(l,c,n) (0) argument
139 # define rt_mutex_cmpxchg_release(l,c,n) (0) argument
Dqrwlock.c127 struct __qrwlock *l = (struct __qrwlock *)lock; in queued_write_lock_slowpath() local
/linux-4.4.14/include/linux/
Dlockdep.h365 #define lockdep_assert_held(l) do { \ argument
369 #define lockdep_assert_held_once(l) do { \ argument
375 #define lockdep_pin_lock(l) lock_pin_lock(&(l)->dep_map) argument
376 #define lockdep_unpin_lock(l) lock_unpin_lock(&(l)->dep_map) argument
388 # define lock_acquire(l, s, t, r, c, n, i) do { } while (0) argument
389 # define lock_release(l, n, i) do { } while (0) argument
390 # define lock_set_class(l, n, k, s, i) do { } while (0) argument
391 # define lock_set_subclass(l, s, i) do { } while (0) argument
425 #define lockdep_assert_held(l) do { (void)(l); } while (0) argument
426 #define lockdep_assert_held_once(l) do { (void)(l); } while (0) argument
[all …]
Dbitops.h21 #define GENMASK(h, l) \ argument
24 #define GENMASK_ULL(h, l) \ argument
187 static inline unsigned fls_long(unsigned long l) in fls_long()
Dmigrate.h48 static inline void putback_movable_pages(struct list_head *l) {} in putback_movable_pages()
49 static inline int migrate_pages(struct list_head *l, new_page_t new, in migrate_pages()
Dlockref.h46 static inline int __lockref_is_dead(const struct lockref *l) in __lockref_is_dead()
/linux-4.4.14/tools/perf/util/
Dparse-options.h110 #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } argument
112 #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .val… argument
113 #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), … argument
114 #define OPT_BOOLEAN_FLAG(s, l, v, h, f) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name… argument
115 #define OPT_BOOLEAN_SET(s, l, v, os, h) \ argument
119 #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .va… argument
120 #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l)… argument
121 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), … argument
122 #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), … argument
123 #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l),… argument
[all …]
Dstrfilter.h10 struct strfilter_node *l; /* Tree left branche (for &,|) */ member
/linux-4.4.14/fs/nls/
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-4.4.14/arch/arm64/include/asm/
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
Dassembler.h97 #define USER(l, x...) \ argument
Dio.h159 #define memset_io(c,v,l) __memset_io((c),(v),(l)) argument
160 #define memcpy_fromio(a,c,l) __memcpy_fromio((a),(c),(l)) argument
161 #define memcpy_toio(c,a,l) __memcpy_toio((c),(a),(l)) argument
/linux-4.4.14/arch/arm/mach-omap1/
Dusb.c310 u32 l; in omap1_usb0_init() local
332 u32 l; in omap1_usb0_init() local
378 u32 l; in omap1_usb0_init() local
395 u32 l; in omap1_usb0_init() local
417 u32 l; in omap1_usb1_init() local
462 u32 l; in omap1_usb1_init() local
487 u32 l; in omap1_usb2_init() local
533 u32 l; in omap1_usb2_init() local
Dflash.c20 u32 l; in omap1_set_vpp() local
Dboard-osk.c257 u32 l; in osk_init_smc91x() local
562 u32 l; in osk_init() local
Dtimer.c49 u32 l; in omap1_dm_timer_set_src() local
/linux-4.4.14/arch/arm/include/asm/
Dio.h260 #define outsb(p,d,l) __raw_writesb(__io(p),d,l) argument
261 #define outsw(p,d,l) __raw_writesw(__io(p),d,l) argument
262 #define outsl(p,d,l) __raw_writesl(__io(p),d,l) argument
264 #define insb(p,d,l) __raw_readsb(__io(p),d,l) argument
265 #define insw(p,d,l) __raw_readsw(__io(p),d,l) argument
266 #define insl(p,d,l) __raw_readsl(__io(p),d,l) argument
307 #define readsb(p,d,l) __raw_readsb(p,d,l) argument
308 #define readsw(p,d,l) __raw_readsw(p,d,l) argument
309 #define readsl(p,d,l) __raw_readsl(p,d,l) argument
311 #define writesb(p,d,l) __raw_writesb(p,d,l) argument
[all …]
Dglue-cache.h147 static inline void nop_dma_map_area(const void *s, size_t l, int f) { } in nop_dma_map_area()
148 static inline void nop_dma_unmap_area(const void *s, size_t l, int f) { } in nop_dma_unmap_area()
/linux-4.4.14/arch/arm/plat-omap/
Ddmtimer.c113 u32 l, timeout = 100000; in omap_dm_timer_reset() local
387 u32 l; in omap_dm_timer_modify_idlect_mask() local
438 u32 l; in omap_dm_timer_start() local
541 u32 l; in omap_dm_timer_set_load() local
568 u32 l; in omap_dm_timer_set_load_start() local
597 u32 l; in omap_dm_timer_set_match() local
622 u32 l; in omap_dm_timer_set_pwm() local
647 u32 l; in omap_dm_timer_set_prescaler() local
694 u32 l = mask; in omap_dm_timer_set_int_disable() local
718 unsigned int l; in omap_dm_timer_read_status() local
Ddma.c162 u32 l; in set_gdma_dev() local
179 u32 l; in omap_set_dma_priority() local
226 u32 l; in omap_set_dma_transfer_params() local
301 u32 l; in omap_set_dma_channel_mode() local
316 u32 l; in omap_set_dma_src_params() local
360 u32 l; in omap_set_dma_src_data_pack() local
373 u32 l; in omap_set_dma_src_burst_mode() local
420 u32 l; in omap_set_dma_dest_params() local
443 u32 l; in omap_set_dma_dest_data_pack() local
456 u32 l; in omap_set_dma_dest_burst_mode() local
[all …]
/linux-4.4.14/drivers/tty/
Dtty_ldsem.c38 # define __acq(l, s, t, r, c, n, i) \ argument
40 # define __rel(l, n, i) \ argument
42 #define lockdep_acquire(l, s, t, i) __acq(l, s, t, 0, 1, NULL, i) argument
43 #define lockdep_acquire_nest(l, s, t, n, i) __acq(l, s, t, 0, 1, n, i) argument
44 #define lockdep_acquire_read(l, s, t, i) __acq(l, s, t, 1, 1, NULL, i) argument
45 #define lockdep_release(l, n, i) __rel(l, n, i) argument
47 # define lockdep_acquire(l, s, t, i) do { } while (0) argument
48 # define lockdep_acquire_nest(l, s, t, n, i) do { } while (0) argument
49 # define lockdep_acquire_read(l, s, t, i) do { } while (0) argument
50 # define lockdep_release(l, n, i) do { } while (0) argument
/linux-4.4.14/lib/
Dkfifo.c107 unsigned int l; in kfifo_copy_in() local
129 unsigned int l; in __kfifo_in() local
146 unsigned int l; in kfifo_copy_out() local
168 unsigned int l; in __kfifo_out_peek() local
194 unsigned int l; in kfifo_copy_from_user() local
226 unsigned int l; in __kfifo_from_user() local
252 unsigned int l; in kfifo_copy_to_user() local
286 unsigned int l; in __kfifo_to_user() local
312 unsigned int l; in setup_sgl_buf() local
352 unsigned int l; in setup_sgl() local
[all …]
Dtest-hexdump.c52 size_t l = len; in test_hexdump() local
121 size_t l = get_random_int() % sizeof(buf); in test_hexdump_overflow() local
Dreciprocal_div.c15 int l; in reciprocal_value() local
Dlcm.c18 unsigned long l = lcm(a, b); in lcm_not_zero() local
Dpercpu_test.c26 long l = 0; in percpu_test_init() local
Dbch.c120 const int l = BCH_ECC_WORDS(bch)-1; in encode_bch_unaligned() local
187 const unsigned int l = BCH_ECC_WORDS(bch)-1; in encode_bch() local
381 unsigned int i, j, tmp, l, pd = 1, d = syn[0]; in compute_error_locator_polynomial() local
638 int i, l, n = 0; in find_poly_deg4_roots() local
702 int i, d = a->deg, l = GF_N(bch)-a_log(bch, a->c[a->deg]); in gf_poly_logrep() local
1083 const int l = BCH_ECC_WORDS(bch); in build_mod8_tables() local
/linux-4.4.14/drivers/char/tpm/
Dtpm_tis.c89 #define TPM_ACCESS(l) (0x0000 | ((l) << 12)) argument
90 #define TPM_INT_ENABLE(l) (0x0008 | ((l) << 12)) argument
91 #define TPM_INT_VECTOR(l) (0x000C | ((l) << 12)) argument
92 #define TPM_INT_STATUS(l) (0x0010 | ((l) << 12)) argument
93 #define TPM_INTF_CAPS(l) (0x0014 | ((l) << 12)) argument
94 #define TPM_STS(l) (0x0018 | ((l) << 12)) argument
95 #define TPM_STS3(l) (0x001b | ((l) << 12)) argument
96 #define TPM_DATA_FIFO(l) (0x0024 | ((l) << 12)) argument
98 #define TPM_DID_VID(l) (0x0F00 | ((l) << 12)) argument
99 #define TPM_RID(l) (0x0F04 | ((l) << 12)) argument
[all …]
Dtpm_i2c_infineon.c275 #define TPM_ACCESS(l) (0x0000 | ((l) << 4)) argument
276 #define TPM_STS(l) (0x0001 | ((l) << 4)) argument
277 #define TPM_DATA_FIFO(l) (0x0005 | ((l) << 4)) argument
278 #define TPM_DID_VID(l) (0x0006 | ((l) << 4)) argument
/linux-4.4.14/arch/powerpc/lib/
Drheap.c31 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-4.4.14/arch/arm/mach-s3c24xx/include/mach/
Dio.h203 #define insb(p,d,l) __raw_readsb(__ioaddr(p),d,l) argument
204 #define insw(p,d,l) __raw_readsw(__ioaddr(p),d,l) argument
205 #define insl(p,d,l) __raw_readsl(__ioaddr(p),d,l) argument
207 #define outsb(p,d,l) __raw_writesb(__ioaddr(p),d,l) argument
208 #define outsw(p,d,l) __raw_writesw(__ioaddr(p),d,l) argument
209 #define outsl(p,d,l) __raw_writesl(__ioaddr(p),d,l) argument
/linux-4.4.14/include/linux/wimax/
Ddebug.h199 #define _d_printf(l, tag, dev, f, a...) \ argument
366 #define d_test(l) \ argument
384 #define d_fnstart(l, _dev, f, a...) _d_printf(l, " FNSTART", _dev, f, ## a) argument
394 #define d_fnend(l, _dev, f, a...) _d_printf(l, " FNEND", _dev, f, ## a) argument
404 #define d_printf(l, _dev, f, a...) _d_printf(l, "", _dev, f, ## a) argument
414 #define d_dump(l, dev, ptr, size) \ argument
/linux-4.4.14/drivers/scsi/arm/
Dqueue.c109 struct list_head *l; in __queue_add() local
164 struct list_head *l; in queue_remove_exclude() local
213 struct list_head *l; in queue_remove_tgtluntag() local
240 struct list_head *l; in queue_remove_all_target() local
263 struct list_head *l; in queue_probetgtlun() local
289 struct list_head *l; in queue_remove_cmd() local
Dacornscsi-io.S14 #define LOADREGS(t,r,l...) ldm##t r, l argument
16 #define LOADREGS(t,r,l...) ldm##t r, l##^ argument
/linux-4.4.14/drivers/net/ethernet/smsc/
Dsmc91x.h62 #define SMC_insw(a, r, p, l) readsw((a) + (r), p, l) argument
63 #define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l) argument
64 #define SMC_insl(a, r, p, l) readsl((a) + (r), p, l) argument
65 #define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l) argument
93 #define SMC_insl(a, r, p, l) insl((a) + (r) - 0xa0000000, p, l) argument
94 #define SMC_outsl(a, r, p, l) outsl((a) + (r) - 0xa0000000, p, l) argument
95 #define SMC_insw(a, r, p, l) insw((a) + (r) - 0xa0000000, p, l) argument
96 #define SMC_outsw(a, r, p, l) outsw((a) + (r) - 0xa0000000, p, l) argument
110 #define SMC_insw(a, r, p, l) insw(((u32)a) + (r), p, l) argument
111 #define SMC_outsw(a, r, p, l) outsw(((u32)a) + (r), p, l) argument
[all …]
/linux-4.4.14/drivers/isdn/hisax/
Dq931.c27 int l; in iecpy() local
571 int l; in prcalled() local
588 int l; in prcalling() local
722 int l, octet = 3; in general() local
749 int l, octet = 3; in general_ni1() local
775 int l; in prcharge() local
792 int l; in prtext() local
874 int l, tag, len, i; in disptext_ni1() local
914 int l, octet = 3; in display() local
942 int l, l2; in prfacility() local
Dl3ni1.c467 int l; in l3ni1_message_cause() local
487 int l; in l3ni1_status_send() local
517 int l; in l3ni1_msg_without_setup() local
668 int l, newpos, oldpos; in check_infoelements() local
838 u_char l, i = 0; in l3ni1_get_cause() local
881 int l; in l3ni1_msg_with_uus() local
1180 int l; in l3ni1_setup_req() local
1616 int l; in l3ni1_disconnect_req() local
1691 int l; in l3ni1_reject_req() local
1948 int l; in l3ni1_redir_req() local
[all …]
Dl3dss1.c517 int l; in l3dss1_message_cause() local
537 int l; in l3dss1_status_send() local
567 int l; in l3dss1_msg_without_setup() local
718 int l, newpos, oldpos; in check_infoelements() local
888 u_char l, i = 0; in l3dss1_get_cause() local
931 int l; in l3dss1_msg_with_uus() local
1234 int l; in l3dss1_setup_req() local
1762 int l; in l3dss1_disconnect_req() local
1835 int l; in l3dss1_reject_req() local
2092 int l; in l3dss1_redir_req() local
[all …]
Dl3_1tr6.c79 int l; in l3_1tr6_setup_req() local
478 int l; in l3_1tr6_setup_rsp() local
518 int l; in l3_1tr6_disconnect_req() local
580 int l; in l3_1tr6_t305() local
/linux-4.4.14/arch/cris/boot/tools/
Dbuild.c59 long l; member
64 long intel_long(long l) in intel_long()
86 short intel_short(short l) in intel_short()
259 int l, n; in main() local
/linux-4.4.14/fs/
Dmbcache.c399 struct list_head *l; in mb_cache_shrink() local
507 struct list_head *l; in mb_cache_entry_alloc() local
584 struct hlist_bl_node *l; in mb_cache_entry_insert() local
665 struct hlist_bl_node *l; in mb_cache_entry_get() local
719 __mb_cache_entry_find(struct hlist_bl_node *l, struct hlist_bl_head *head, in __mb_cache_entry_find()
790 struct hlist_bl_node *l; in mb_cache_entry_find_first() local
829 struct hlist_bl_node *l; in mb_cache_entry_find_next() local
/linux-4.4.14/fs/xfs/
Dxfs_rtalloc.h127 # define xfs_rtallocate_extent(t,b,min,max,l,a,f,p,rb) (ENOSYS) argument
128 # define xfs_rtfree_extent(t,b,l) (ENOSYS) argument
129 # define xfs_rtpick_extent(m,t,l,rb) (ENOSYS) argument
/linux-4.4.14/arch/parisc/lib/
Dio.c168 unsigned int l = 0, l2; in insw() local
240 unsigned int l = 0, l2; in insl() local
338 unsigned int l = 0, l2; in outsw() local
410 unsigned int l = 0, l2; in outsl() local
/linux-4.4.14/arch/mips/mm/
Dtlbex.c210 static void uasm_bgezl_label(struct uasm_label **l, u32 **p, int instance) in uasm_bgezl_label()
505 static void build_tlb_write_entry(u32 **p, struct uasm_label **l, in build_tlb_write_entry()
694 static void build_huge_tlb_write_entry(u32 **p, struct uasm_label **l, in build_huge_tlb_write_entry()
758 struct uasm_label **l, in build_huge_handler_tail()
780 build_get_pmde64(u32 **p, struct uasm_label **l, struct uasm_reloc **r, in build_get_pmde64()
860 build_get_pgd_vmalloc64(u32 **p, struct uasm_label **l, struct uasm_reloc **r, in build_get_pgd_vmalloc64()
1065 build_fast_tlb_refill_handler (u32 **p, struct uasm_label **l, in build_fast_tlb_refill_handler()
1246 struct uasm_label *l = labels; in build_r4000_tlb_refill_handler() local
1450 struct uasm_label *l = labels; in build_setup_pgd() local
1731 build_r3000_tlb_reload_write(u32 **p, struct uasm_label **l, in build_r3000_tlb_reload_write()
[all …]
/linux-4.4.14/drivers/isdn/capi/
Dcapilib.c106 struct list_head *l; in capilib_free_ncci() local
127 struct list_head *l, *n; in capilib_release_appl() local
144 struct list_head *l, *n; in capilib_release() local
159 struct list_head *l; in capilib_data_b3_req() local
182 struct list_head *l; in capilib_data_b3_conf() local
Dcapiutil.c194 #define structTLcpy(x, y, l) memcpy(x, y, l) argument
195 #define structTLcpyovl(x, y, l) memmove(x, y, l) argument
200 #define structTRcpy(x, y, l) memcpy(y, x, l) argument
201 #define structTRcpyovl(x, y, l) memmove(y, x, l) argument
/linux-4.4.14/drivers/md/bcache/
Dbset.h395 static __always_inline int64_t bkey_cmp(const struct bkey *l, in bkey_cmp()
451 static inline bool bch_bkey_equal_header(const struct bkey *l, in bch_bkey_equal_header()
476 static inline void bch_keylist_init(struct keylist *l) in bch_keylist_init()
481 static inline void bch_keylist_init_single(struct keylist *l, struct bkey *k) in bch_keylist_init_single()
487 static inline void bch_keylist_push(struct keylist *l) in bch_keylist_push()
492 static inline void bch_keylist_add(struct keylist *l, struct bkey *k) in bch_keylist_add()
498 static inline bool bch_keylist_empty(struct keylist *l) in bch_keylist_empty()
503 static inline void bch_keylist_reset(struct keylist *l) in bch_keylist_reset()
508 static inline void bch_keylist_free(struct keylist *l) in bch_keylist_free()
514 static inline size_t bch_keylist_nkeys(struct keylist *l) in bch_keylist_nkeys()
[all …]
Dextents.c38 static bool bch_key_sort_cmp(struct btree_iter_set l, in bch_key_sort_cmp()
256 static bool bch_extent_sort_cmp(struct btree_iter_set l, in bch_extent_sort_cmp()
572 static uint64_t merge_chksums(struct bkey *l, struct bkey *r) in merge_chksums()
578 static bool bch_extent_merge(struct btree_keys *bk, struct bkey *l, struct bkey *r) in bch_extent_merge()
Dbset.c129 int __bch_keylist_realloc(struct keylist *l, unsigned u64s) in __bch_keylist_realloc()
156 struct bkey *bch_keylist_pop(struct keylist *l) in bch_keylist_pop()
169 void bch_keylist_pop_front(struct keylist *l) in bch_keylist_pop_front()
560 struct bkey *l = is_power_of_2(j) in make_bfloat() local
781 bool bch_bkey_try_merge(struct btree_keys *b, struct bkey *l, struct bkey *r) in bch_bkey_try_merge()
868 struct bkey *l, *r; member
894 struct bkey *l, *r; in bset_search_tree() local
1021 static inline bool btree_iter_cmp(struct btree_iter_set l, in btree_iter_cmp()
/linux-4.4.14/arch/mn10300/unit-asb2303/include/unit/
Dsmc91111.h34 #define SMC_insw(a, r, p, l) insw((unsigned long) ((a) + (r)), (p), (l)) argument
35 #define SMC_outsw(a, r, p, l) outsw((unsigned long) ((a) + (r)), (p), (l)) argument
41 #define SMC_insl(a, r, p, l) insl((unsigned long) ((a) + (r)), (p), (l)) argument
42 #define SMC_outsl(a, r, p, l) outsl((unsigned long) ((a) + (r)), (p), (l)) argument
/linux-4.4.14/include/asm-generic/bitops/
Datomic.h22 #define _atomic_spin_lock_irqsave(l,f) do { \ argument
28 #define _atomic_spin_unlock_irqrestore(l,f) do { \ argument
36 # define _atomic_spin_lock_irqsave(l,f) do { local_irq_save(f); } while (0) argument
37 # define _atomic_spin_unlock_irqrestore(l,f) do { local_irq_restore(f); } while (0) argument
Dext2-atomic-setbit.h8 #define ext2_set_bit_atomic(l, nr, addr) test_and_set_bit_le(nr, addr) argument
9 #define ext2_clear_bit_atomic(l, nr, addr) test_and_clear_bit_le(nr, addr) argument
/linux-4.4.14/fs/ceph/
Dioctl.c19 struct ceph_ioctl_layout l; in ceph_ioctl_get_layout() local
37 struct ceph_ioctl_layout *l) in __validate_layout()
68 struct ceph_ioctl_layout l; in ceph_ioctl_set_layout() local
139 struct ceph_ioctl_layout l; in ceph_ioctl_set_layout_policy() local
/linux-4.4.14/security/selinux/ss/
Dmls.c37 int i, l, len, head, prev; in mls_compute_context_len() local
92 int i, l, head, prev; in mls_sid_to_context() local
160 int mls_level_isvalid(struct policydb *p, struct mls_level *l) in mls_level_isvalid()
246 int l, rc = -EINVAL; in mls_context_to_sid() local
405 int l, rc = 0; in mls_range_set() local
470 int l, i; in mls_convert_context() local
/linux-4.4.14/arch/ia64/include/asm/
Ddmi.h9 #define dmi_early_unmap(x, l) iounmap(x) argument
12 #define dmi_alloc(l) kzalloc(l, GFP_ATOMIC) argument
Dspinlock.h251 #define arch_write_lock_flags(l, flags) arch_write_lock(l) argument
253 #define arch_write_lock(l) \ argument
/linux-4.4.14/arch/x86/boot/
Dstring.h17 #define memcpy(d,s,l) __builtin_memcpy(d,s,l) argument
18 #define memset(d,c,l) __builtin_memset(d,c,l) argument
/linux-4.4.14/kernel/bpf/
Dhashtab.c131 struct htab_elem *l; in lookup_elem_raw() local
145 struct htab_elem *l; in htab_map_lookup_elem() local
170 struct htab_elem *l, *next_l; in htab_map_get_next_key() local
303 struct htab_elem *l; in htab_map_delete_elem() local
338 struct htab_elem *l; in delete_all_elements() local
/linux-4.4.14/arch/arm/mach-imx/
Diomux-imx31.c50 u32 l; in mxc_iomux_mode() local
73 u32 field, l; in mxc_iomux_set_pad() local
163 u32 l; in mxc_iomux_set_gpr() local
/linux-4.4.14/net/bluetooth/
Daf_bluetooth.c139 void bt_sock_link(struct bt_sock_list *l, struct sock *sk) in bt_sock_link()
147 void bt_sock_unlink(struct bt_sock_list *l, struct sock *sk) in bt_sock_unlink()
576 struct bt_sock_list *l; member
583 struct bt_sock_list *l = s->l; in bt_seq_start() local
592 struct bt_sock_list *l = s->l; in bt_seq_next() local
601 struct bt_sock_list *l = s->l; in bt_seq_stop() local
609 struct bt_sock_list *l = s->l; in bt_seq_show() local
/linux-4.4.14/sound/usb/usx2y/
Dusb_stream.c40 int l = usb_stream_next_packet_size(sk); in playback_prep_freqn() local
279 int p = 0, lb = 0, l = 0; in usb_stream_prepare_playback() local
378 int il, ol, l, p; in loop_back() local
436 int l, p; in stream_idle() local
519 int l, p, max_diff, max_diff_0; in stream_start() local
608 int l = id[p].actual_length; in i_capture_start() local
627 int l = urb->iso_frame_desc[pack].actual_length; in i_capture_start() local
/linux-4.4.14/fs/btrfs/
Dcheck-integrity.c442 static void btrfsic_block_link_init(struct btrfsic_block_link *l) in btrfsic_block_link_init()
455 struct btrfsic_block_link *l; in btrfsic_block_link_alloc() local
464 static void btrfsic_block_link_free(struct btrfsic_block_link *l) in btrfsic_block_link_free()
558 struct btrfsic_block_link *l, in btrfsic_block_link_hashtable_add()
573 static void btrfsic_block_link_hashtable_remove(struct btrfsic_block_link *l) in btrfsic_block_link_hashtable_remove()
594 struct btrfsic_block_link *const l = in btrfsic_block_link_hashtable_lookup() local
739 struct btrfsic_block_link *l; in btrfsic_process_superblock() local
912 struct btrfsic_block_link *l; in btrfsic_process_superblock_dev_mirror() local
1278 struct btrfsic_block_link *l; in btrfsic_create_link_to_next_block() local
1423 struct btrfsic_block_link *l; in btrfsic_handle_extent_data() local
[all …]
Dprint-tree.c153 static void print_uuid_item(struct extent_buffer *l, unsigned long offset, in print_uuid_item()
172 void btrfs_print_leaf(struct btrfs_root *root, struct extent_buffer *l) in btrfs_print_leaf()
Droot-tree.c87 struct extent_buffer *l; in btrfs_find_root() local
141 struct extent_buffer *l; in btrfs_update_root() local
/linux-4.4.14/drivers/ide/
Dide-scan-pci.c57 struct list_head *l; in ide_scan_pcidev() local
88 struct list_head *l, *n; in ide_scan_pcibus() local
/linux-4.4.14/crypto/
Dmichael_mic.c21 u32 l, r; member
28 u32 l, r; member
37 #define michael_block(l, r) \ argument
Dtwofish_common.c549 #define CALC_K(a, j, k, l, m, n) \ argument
562 #define CALC_K192(a, j, k, l, m, n) \ argument
575 #define CALC_K256(a, j, k, l, m, n) \ argument
Dfcrypt.c240 __be32 l, r; in fcrypt_encrypt() member
272 __be32 l, r; in fcrypt_decrypt() member
Dcast5_generic.c315 u32 l, r, t; in __cast5_encrypt() local
372 u32 l, r, t; in __cast5_decrypt() local
/linux-4.4.14/sound/oss/
Dhex2hex.c17 int l=0, c, i; in loadhex() local
71 int i,l; in main() local
Daudio.c138 int l; in sync_output() local
224 int c, p, l, buf_size, used, returned; in audio_write() local
305 int c, p, l; in audio_read() local
/linux-4.4.14/net/ceph/
Dpagevec.c100 int l, bad; in ceph_copy_user_to_page_vector() local
128 size_t l = min_t(size_t, PAGE_CACHE_SIZE-po, left); in ceph_copy_to_page_vector() local
151 size_t l = min_t(size_t, PAGE_CACHE_SIZE-po, left); in ceph_copy_from_page_vector() local
/linux-4.4.14/arch/m68k/include/asm/
Dio_no.h129 #define outsb(a,b,l) io_outsb(a,b,l) argument
130 #define outsw(a,b,l) io_outsw(a,b,l) argument
131 #define outsl(a,b,l) io_outsl(a,b,l) argument
133 #define insb(a,b,l) io_insb(a,b,l) argument
134 #define insw(a,b,l) io_insw(a,b,l) argument
135 #define insl(a,b,l) io_insl(a,b,l) argument
/linux-4.4.14/drivers/block/paride/
Dfriq.c43 #define j44(l,h) (((l>>4)&0x0f)|(h&0xf0)) argument
53 { int h,l,r; in friq_read_regr() local
79 { int h, l, k, ph; in friq_read_block_int() local
Dbpck.c39 #define j44(l,h) (((l>>3)&0x7)|((l>>4)&0x8)|((h<<1)&0x70)|(h&0x80)) argument
50 { int r, l, h; in bpck_read_regr() local
151 { int i, l, h; in bpck_read_block() local
280 { int i, e, l, h, om; in bpck_test_proto() local
Dfrpw.c39 #define j44(l,h) (((l>>4)&0x0f)|(h&0xf0)) argument
49 { int h,l,r; in frpw_read_regr() local
76 { int h, l, k, ph; in frpw_read_block_int() local
Dcomm.c47 { int l, h, r; in comm_read_regr() local
110 { int i, l, h; in comm_read_block() local
Don20.c38 { int h,l, r ; in on20_read_regr() local
89 { int k, l, h; in on20_read_block() local
/linux-4.4.14/fs/hfsplus/
Dbnode.c24 int l; in hfs_bnode_read() local
77 int l; in hfs_bnode_write() local
107 int l; in hfs_bnode_clear() local
131 int l; in hfs_bnode_copy() local
189 int l; in hfs_bnode_move() local
/linux-4.4.14/arch/x86/mm/
Dkmmio.c75 unsigned int l; in kmmio_page_list() local
112 unsigned int l; in get_kmmio_fault_page() local
230 unsigned int l; in kmmio_handler() local
438 unsigned int l; in register_kmmio_probe() local
533 unsigned int l; in unregister_kmmio_probe() local
/linux-4.4.14/include/kvm/
Diodev.h56 int l, void *v) in kvm_iodevice_read()
64 int l, const void *v) in kvm_iodevice_write()
/linux-4.4.14/arch/x86/lib/
Dmsr-smp.c34 int rdmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h) in rdmsr_on_cpu()
65 int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h) in wrmsr_on_cpu()
161 int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h) in rdmsr_safe_on_cpu()
177 int wrmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h) in wrmsr_safe_on_cpu()
/linux-4.4.14/arch/m32r/platforms/mappi/
Dio.c118 unsigned long l; in _inl() local
122 unsigned short l; in _inl() local
181 void _outl(unsigned long l, unsigned long port) in _outl()
205 void _outl_p(unsigned long l, unsigned long port) in _outl_p()
/linux-4.4.14/mm/
Dlist_lru.c113 struct list_lru_one *l; in list_lru_add() local
132 struct list_lru_one *l; in list_lru_del() local
166 struct list_lru_one *l; in __list_lru_count_one() local
205 struct list_lru_one *l; in __list_lru_walk_one() local
289 static void init_one_lru(struct list_lru_one *l) in init_one_lru()
311 struct list_lru_one *l; in __memcg_init_list_lru_node() local
/linux-4.4.14/drivers/video/fbdev/omap/
Dlcdc.c94 u32 l; in set_load_mode() local
115 u32 l; in enable_controller() local
126 u32 l; in disable_controller_async() local
251 u32 l; in lcdc_irq_handler() local
471 u32 l; in setup_regs() local
686 u32 l; in omap_lcdc_init() local
Dsossi.c223 u32 l; in _set_timing() local
241 u32 l; in _set_bits_per_cycle() local
251 u32 l; in _set_tearsync_mode() local
399 u32 l; in sossi_setup_tearsync() local
573 u32 l, k; in sossi_init() local
/linux-4.4.14/arch/sh/include/asm/
Dio.h58 #define readsb(p,d,l) __raw_readsb(p,d,l) argument
59 #define readsw(p,d,l) __raw_readsw(p,d,l) argument
60 #define readsl(p,d,l) __raw_readsl(p,d,l) argument
62 #define writesb(p,d,l) __raw_writesb(p,d,l) argument
63 #define writesw(p,d,l) __raw_writesw(p,d,l) argument
64 #define writesl(p,d,l) __raw_writesl(p,d,l) argument
/linux-4.4.14/arch/arm/mach-omap2/
Dpm24xx.c68 u32 l; in omap2_enter_full_retention() local
254 u32 l; in omap2_pm_init() local
Dsdrc.c133 u32 l; in omap2_sdrc_init() local
/linux-4.4.14/arch/arm/mach-ixp4xx/include/mach/
Dio.h65 #define writesb(p, v, l) __indirect_writesb(p, v, l) argument
66 #define writesw(p, v, l) __indirect_writesw(p, v, l) argument
67 #define writesl(p, v, l) __indirect_writesl(p, v, l) argument
77 #define readsb(p, v, l) __indirect_readsb(p, v, l) argument
78 #define readsw(p, v, l) __indirect_readsw(p, v, l) argument
79 #define readsl(p, v, l) __indirect_readsl(p, v, l) argument
217 #define memset_io(c,v,l) _memset_io((c),(v),(l)) argument
218 #define memcpy_fromio(a,c,l) _memcpy_fromio((a),(c),(l)) argument
219 #define memcpy_toio(c,a,l) _memcpy_toio((c),(a),(l)) argument
/linux-4.4.14/drivers/usb/phy/
Dphy-isp1301-omap.c340 u32 l; in a_idle() local
364 u32 l; in b_idle() local
626 u32 l; in otg_update_isp() local
825 u32 l; in isp1301_otg_init() local
924 u32 l; in b_peripheral() local
1001 u32 l; in isp_update_otg() local
1361 u32 l; in isp1301_set_peripheral() local
1441 u32 l; in isp1301_start_hnp() local
/linux-4.4.14/arch/ia64/mm/
Dextable.c15 const struct exception_table_entry *l = a, *r = b; in cmp_ex() local
29 struct exception_table_entry *l = a, *r = b, tmp; in swap_ex() local
/linux-4.4.14/tools/testing/selftests/memfd/
Dmemfd_test.c216 ssize_t l; in mfd_assert_read() local
253 ssize_t l; in mfd_assert_write() local
327 ssize_t l; in mfd_fail_write() local
471 ssize_t l; in mfd_assert_grow_write() local
485 ssize_t l; in mfd_fail_grow_write() local
/linux-4.4.14/drivers/gpio/
Dgpio-omap.c103 u32 l; in omap_set_gpio_direction() local
121 u32 l = BIT(offset); in omap_set_gpio_dataout_reg() local
140 u32 l; in omap_set_gpio_dataout_mask() local
167 int l = readl_relaxed(base + reg); in omap_gpio_rmw() local
218 u32 l; in omap2_set_gpio_debounce() local
359 u32 l = 0; in omap_toggle_gpio_edge_triggering() local
383 u32 l = 0; in omap_set_gpio_triggering() local
551 u32 l; in omap_get_gpio_irqbank_mask() local
565 u32 l; in omap_enable_gpio_irqbank() local
587 u32 l; in omap_disable_gpio_irqbank() local
[all …]
/linux-4.4.14/arch/parisc/include/asm/
Datomic.h35 #define _atomic_spin_lock_irqsave(l,f) do { \ argument
41 #define _atomic_spin_unlock_irqrestore(l,f) do { \ argument
49 # define _atomic_spin_lock_irqsave(l,f) do { local_irq_save(f); } while (0) argument
50 # define _atomic_spin_unlock_irqrestore(l,f) do { local_irq_restore(f); } while (0) argument
/linux-4.4.14/arch/powerpc/sysdev/
Ddart_iommu.c80 unsigned long l = 0; in dart_tlb_invalidate_all() local
125 unsigned int l, limit; in dart_tlb_invalidate_one() local
170 long l; in dart_build() local
/linux-4.4.14/drivers/iommu/
Domap-iommu.c131 u32 l = iommu_read_reg(obj, MMU_CNTL); in __iommu_set_twl() local
149 u32 l, pa; in omap2_iommu_enable() local
176 u32 l = iommu_read_reg(obj, MMU_CNTL); in omap2_iommu_disable() local
261 void iotlb_lock_get(struct omap_iommu *obj, struct iotlb_lock *l) in iotlb_lock_get()
271 void iotlb_lock_set(struct omap_iommu *obj, struct iotlb_lock *l) in iotlb_lock_set()
300 struct iotlb_lock l; in __iotlb_read_cr() local
343 struct iotlb_lock l; in load_iotlb_entry() local
455 struct iotlb_lock l; in flush_iotlb_all() local
Dio-pgtable-arm.c57 #define ARM_LPAE_LVL_SHIFT(l,d) \ argument
68 #define ARM_LPAE_PGD_IDX(l,d) \ argument
71 #define ARM_LPAE_LVL_IDX(a,l,d) \ argument
76 #define ARM_LPAE_BLOCK_SIZE(l,d) \ argument
174 #define iopte_type(pte,l) \ argument
179 #define iopte_leaf(pte,l) \ argument
/linux-4.4.14/arch/ia64/include/asm/sn/
Dtiocp.h187 u32 l[0x1000 / 4]; /* 0x02{0000,,,7FFF} */ member
192 u32 l[0x100 / 4]; member
201 u32 l[0x1000 / 4]; /* 0x028000-0x029000 */ member
206 u32 l[0x100 / 4]; member
217 u32 l[8 / 4]; member
227 u32 l[8 / 4]; member
237 u32 l[0x100000 / 4]; member
249 u32 l[0x100000 / 4]; member
Dpic.h216 u32 l[0x1000 / 4]; /* 0x02{0000,,,7FFF} */ member
221 u32 l[0x100 / 4]; member
230 u32 l[0x1000 / 4]; /* 0x028000-0x029000 */ member
235 u32 l[0x100 / 4]; member
246 u32 l[8 / 4]; member
256 u32 l[8 / 4]; member
/linux-4.4.14/drivers/cpufreq/
Dp4-clockmod.c59 u32 l, h; in cpufreq_p4_setdc() local
220 u32 l, h; in cpufreq_p4_get() local
Dspeedstep-centrino.c323 unsigned l, h; in get_cur_freq() local
346 unsigned l, h; in centrino_cpu_init() local
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
Dnv30.c78 calc_ref(struct nvkm_fb *fb, int l, int k, int i) in calc_ref()
103 int l = nvkm_rd32(device, 0x1003d0); in nv30_fb_init() local
/linux-4.4.14/net/ipv4/
Dfib_trie.c329 struct key_vector *l; in leaf_new() local
897 static void leaf_pull_suffix(struct key_vector *tp, struct key_vector *l) in leaf_pull_suffix()
906 static void leaf_push_suffix(struct key_vector *tn, struct key_vector *l) in leaf_push_suffix()
998 struct key_vector *n, *l; in fib_insert_node() local
1045 struct key_vector *l, struct fib_alias *new, in fib_insert_alias()
1085 struct key_vector *l, *tp; in fib_table_insert() local
1461 struct key_vector *l, struct fib_alias *old) in fib_remove_alias()
1494 struct key_vector *l, *tp; in fib_table_delete() local
1681 struct key_vector *l, *tp = ot->kv; in fib_trie_unmerge() local
1897 static int fn_trie_dump_leaf(struct key_vector *l, struct fib_table *tb, in fn_trie_dump_leaf()
[all …]
Dip_options.c215 int l = opt->optlen; in ip_options_fragment() local
265 int optlen, l; in ip_options_compile() local
/linux-4.4.14/arch/m32r/platforms/usrv/
Dio.c80 unsigned long l; in _inl() local
124 void _outl(unsigned long l, unsigned long port) in _outl()
144 void _outl_p(unsigned long l, unsigned long port) in _outl_p()
/linux-4.4.14/drivers/staging/lustre/lustre/ldlm/
Dldlm_extent.c101 static void ldlm_interval_attach(struct ldlm_interval *n, struct ldlm_lock *l) in ldlm_interval_attach()
133 struct ldlm_interval *ldlm_interval_detach(struct ldlm_lock *l) in ldlm_interval_detach()
/linux-4.4.14/arch/sparc/lib/
DPeeCeeI.c36 u32 l, l2; in outsl() local
153 u32 l = 0, l2, *pi; in insl() local
/linux-4.4.14/tools/perf/
Dbuiltin-kmem.c1371 struct alloc_stat *l = a; in ptr_cmp() local
1388 struct alloc_stat *l = a; in slab_callsite_cmp() local
1405 struct alloc_stat *l = a; in hit_cmp() local
1422 struct alloc_stat *l = a; in bytes_cmp() local
1440 struct alloc_stat *l = a; in frag_cmp() local
1460 struct alloc_stat *l = a; in pingpong_cmp() local
1478 struct page_stat *l = a; in page_cmp() local
1495 struct page_stat *l = a; in page_callsite_cmp() local
1512 struct page_stat *l = a; in page_hit_cmp() local
1529 struct page_stat *l = a; in page_bytes_cmp() local
[all …]
/linux-4.4.14/arch/hexagon/include/asm/
Dio.h52 #define readsw(p, d, l) __raw_readsw(p, d, l) argument
53 #define writesw(p, d, l) __raw_writesw(p, d, l) argument
55 #define readsl(p, d, l) __raw_readsl(p, d, l) argument
56 #define writesl(p, d, l) __raw_writesl(p, d, l) argument
/linux-4.4.14/arch/sparc/kernel/
Dbtext.c243 int l, bits; in draw_byte_32() local
264 int l, bits; in draw_byte_16() local
282 int l, bits; in draw_byte_8() local
/linux-4.4.14/arch/frv/include/asm/
Dio.h183 #define outsb(a,b,l) io_outsb(a,b,l) argument
184 #define outsw(a,b,l) io_outsw(a,b,l) argument
185 #define outsl(a,b,l) __outsl(a,b,l,0) argument
187 #define insb(a,b,l) io_insb(a,b,l) argument
188 #define insw(a,b,l) io_insw(a,b,l) argument
189 #define insl(a,b,l) __insl(a,b,l,0) argument
Ddm9000.h34 #define insl(a,b,l) __insl(a,b,l,0) /* don't byte-swap */ argument
/linux-4.4.14/drivers/video/fbdev/nvidia/
Dnv_local.h102 #define reverse_order(l) \ argument
111 #define reverse_order(l) do { } while(0) argument
/linux-4.4.14/drivers/memory/
Domap-gpmc.c104 #define GPMC_REVISION_MAJOR(l) ((l >> 4) & 0xf) argument
105 #define GPMC_REVISION_MINOR(l) (l & 0xf) argument
303 u32 l; in gpmc_get_clk_period() local
375 u32 l; in gpmc_cs_modify_reg() local
436 u32 l; in get_gpmc_timing_reg() local
594 u32 l; in set_gpmc_timing_reg() local
697 u32 l; in gpmc_cs_set_timings() local
782 u32 l; in gpmc_cs_set_memconf() local
809 u32 l; in gpmc_cs_enable_mem() local
818 u32 l; in gpmc_cs_disable_mem() local
[all …]
/linux-4.4.14/drivers/video/fbdev/omap2/dss/
Domapdss-boot-init.c46 int l = 0, total = 0; in omapdss_count_strings() local
77 size_t l = strlen(src) + 1; in omapdss_prefix_strcpy() local
Drfbi.c308 u32 l; in rfbi_transfer_area() local
358 u32 l; in rfbi_print_timings() local
485 u32 l; in rfbi_convert_timings() local
578 u32 l; in rfbi_setup_te() local
615 u32 l; in rfbi_enable_te() local
636 u32 l; in rfbi_configure_bus() local
Dpll.c255 u32 l; in dss_pll_write_config_type_a() local
346 u32 l; in dss_pll_write_config_type_b() local
/linux-4.4.14/arch/mips/loongson64/common/
Dcmdline.c30 long l; in prom_init_cmdline() local
Denv.c52 long l; in prom_init_env() local
/linux-4.4.14/drivers/staging/fwserial/
Ddma_fifo.c150 int ofs, l; in dma_fifo_in() local
193 unsigned len, n, ofs, l, limit; in dma_fifo_out_pend() local
/linux-4.4.14/scripts/dtc/
Dtreesource.c240 struct label *l; in write_tree_source_node() local
273 struct label *l; in dt_to_source() local
/linux-4.4.14/drivers/s390/char/
Dtape_34xx.c883 tape_34xx_append_new_sbid(struct tape_34xx_block_id bid, struct list_head *l) in tape_34xx_append_new_sbid()
905 struct list_head * l; in tape_34xx_add_sbid() local
967 struct list_head * l; in tape_34xx_delete_sbid_from() local
999 struct list_head * l; in tape_34xx_merge_sbid() local
/linux-4.4.14/arch/c6x/include/asm/
Dtimex.h23 unsigned l, h; in get_cycles() local
/linux-4.4.14/net/mac80211/
Dmichael.h19 u32 l, r; member
/linux-4.4.14/include/uapi/linux/
Dromfs_fs.h16 #define __mkw(h,l) (((h)&0x00ff)<< 8|((l)&0x00ff)) argument
17 #define __mkl(h,l) (((h)&0xffff)<<16|((l)&0xffff)) argument
/linux-4.4.14/arch/m32r/platforms/m32700ut/
Dio.c164 unsigned long l; in _inl() local
234 void _outl(unsigned long l, unsigned long port) in _outl()
256 void _outl_p(unsigned long l, unsigned long port) in _outl_p()
/linux-4.4.14/arch/m32r/platforms/mappi3/
Dio.c176 unsigned long l; in _inl() local
248 void _outl(unsigned long l, unsigned long port) in _outl()
270 void _outl_p(unsigned long l, unsigned long port) in _outl_p()
/linux-4.4.14/arch/m32r/platforms/opsput/
Dio.c164 unsigned long l; in _inl() local
234 void _outl(unsigned long l, unsigned long port) in _outl()
256 void _outl_p(unsigned long l, unsigned long port) in _outl_p()
/linux-4.4.14/drivers/spi/
Dspi-omap2-mcspi.c213 u32 l, rw; in omap2_mcspi_set_dma_req() local
233 u32 l; in omap2_mcspi_set_enable() local
249 u32 l; in omap2_mcspi_set_cs() local
283 u32 l; in omap2_mcspi_set_master_mode() local
456 u32 l; in omap2_mcspi_rx_dma() local
565 u32 l; in omap2_mcspi_txrx_dma() local
664 u32 l; in omap2_mcspi_txrx_pio() local
869 u32 l = 0, clkd = 0, div, extclk = 0, clkg = 0; in omap2_mcspi_setup_transfer() local
/linux-4.4.14/drivers/clk/qcom/
Dclk-pll.h29 u16 l; member
70 u16 l; member
/linux-4.4.14/drivers/scsi/
Dscsi_module.c21 struct list_head *l; in init_this_scsi_driver() local
/linux-4.4.14/samples/seccomp/
Dbpf-fancy.c28 struct bpf_labels l = { in main() local
/linux-4.4.14/sound/
Dsound_firmware.c13 long l; in do_mod_firmware_load() local
/linux-4.4.14/arch/x86/pci/
Dlegacy.c40 u32 l; in pcibios_scan_specific_bus() local
/linux-4.4.14/arch/nios2/mm/
Duaccess.c134 int l = strnlen_user(__from, __len); in strncpy_from_user() local
/linux-4.4.14/arch/x86/kernel/cpu/mcheck/
Dp5.c47 u32 l, h; in intel_p5_mcheck_init() local
/linux-4.4.14/arch/m32r/platforms/mappi2/
Dio.c160 unsigned long l; in _inl() local
230 void _outl(unsigned long l, unsigned long port) in _outl()
252 void _outl_p(unsigned long l, unsigned long port) in _outl_p()
/linux-4.4.14/arch/metag/include/asm/
Dcacheflush.h228 #define flush_dcache_region(s, l) metag_data_cache_flush((s), (l)) argument
229 #define writeback_dcache_region(s, l) do {} while (0) argument
230 #define invalidate_dcache_region(s, l) flush_dcache_region((s), (l)) argument
/linux-4.4.14/drivers/isdn/act2000/
Dact2000_isa.c299 int l; in act2000_isa_send() local
398 int l; in act2000_isa_download() local
/linux-4.4.14/arch/mips/include/asm/netlogic/xlp-hal/
Dpcibus.h92 #define MSI_LINK_ADDR(n, l) (MSI_ADDR_BASE + \ argument
95 #define MSIX_LINK_ADDR(n, l) (MSIX_ADDR_BASE + \ argument
/linux-4.4.14/include/linux/sunrpc/
Dsvcauth.h164 unsigned long l = 0; in hash_str() local
182 unsigned long l = 0; in hash_mem() local
/linux-4.4.14/arch/mips/kernel/
Dmodule.c109 static void free_relocation_chain(struct mips_hi16 *l) in free_relocation_chain()
123 struct mips_hi16 *l; in apply_r_mips_lo16_rel() local
/linux-4.4.14/drivers/usb/musb/
Domap2430.c220 u32 l; in omap2430_low_level_exit() local
230 u32 l; in omap2430_low_level_init() local
351 u32 l; in omap2430_musb_init() local
/linux-4.4.14/arch/microblaze/kernel/
Dprom.c51 int l; in early_init_dt_scan_chosen_serial() local
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/core/
Dsubdev.h35 #define nvkm_printk_(s,l,p,f,a...) do { \ argument
42 #define nvkm_printk(s,l,p,f,a...) nvkm_printk_((s), NV_DBG_##l, p, f, ##a) argument
/linux-4.4.14/arch/arm64/crypto/
Daes-ce-ccm-glue.c72 u32 l = req->iv[0] + 1; in ccm_init_mac() local
110 struct __packed { __be16 l; __be32 h; u16 len; } ltag; in ccm_calculate_auth_mac() member
/linux-4.4.14/fs/hpfs/
Ddentry.c19 unsigned l = qstr->len; in hpfs_hash_dentry() local
/linux-4.4.14/drivers/media/platform/vivid/
Dvivid-rds-gen.c61 int l; in vivid_rds_generate() local
/linux-4.4.14/net/appletalk/
Datalk_proc.c33 loff_t l = *pos; in atalk_seq_interface_start() local
94 loff_t l = *pos; in atalk_seq_route_start() local
/linux-4.4.14/net/rose/
Drose_subr.c242 unsigned char l, lg, n = 0; in rose_parse_national() local
335 unsigned char l, n = 0; in rose_parse_ccitt() local
/linux-4.4.14/drivers/md/persistent-data/
Ddm-btree-remove.c200 struct child *l, struct child *r) in __rebalance2()
264 struct child *l, struct child *c, struct child *r, in delete_center_node()
295 struct child *l, struct child *c, struct child *r, in redistribute3()
342 struct child *l, struct child *c, struct child *r) in __rebalance3()
/linux-4.4.14/arch/mn10300/kernel/
Dtime.c41 unsigned l[2]; in sched_clock() member
/linux-4.4.14/arch/sparc/include/asm/
Dprom.h30 #define of_compat_cmp(s1, s2, l) strncmp((s1), (s2), (l)) argument
Dio_64.h84 static inline void __raw_writel(u32 l, const volatile void __iomem *addr) in __raw_writel()
176 static inline void writel(u32 l, volatile void __iomem *addr) in writel()
225 static inline void outl(u32 l, unsigned long addr) in outl()
312 static inline void sbus_writel(u32 l, volatile void __iomem *addr) in sbus_writel()
/linux-4.4.14/drivers/of/
Dfdt.c95 unsigned long l, score = 0; in of_fdt_is_compatible() local
187 unsigned int l, allocl; in unflatten_dt_node() local
805 int l; in early_init_dt_scan_chosen_serial() local
901 int l; in early_init_dt_scan_memory() local
944 int l; in early_init_dt_scan_chosen() local
/linux-4.4.14/arch/sh/boards/mach-highlander/
Dpsw.c24 unsigned int l, mask; in psw_irq_handler() local
/linux-4.4.14/drivers/net/fddi/skfp/h/
Dtypes.h37 #define outpd(p,l) iowrite32(l,p) argument
/linux-4.4.14/arch/powerpc/kernel/
Dbtext.c427 int l, bits; in draw_byte_32() local
448 int l, bits; in draw_byte_16() local
466 int l, bits; in draw_byte_8() local
/linux-4.4.14/samples/bpf/
Dtracex3_kern.c55 u64 *value, l, base; in bpf_prog2() local
/linux-4.4.14/sound/pci/asihpi/
Dhpios.h108 static inline void cond_lock(struct hpios_spinlock *l) in cond_lock()
122 static inline void cond_unlock(struct hpios_spinlock *l) in cond_unlock()
/linux-4.4.14/block/partitions/
Dmac.c109 int i, l; in mac_partition() local
/linux-4.4.14/drivers/thermal/
Dx86_pkg_temp_thermal.c225 u32 l, h; in sys_set_trip_temp() local
292 u32 l, h; in enable_pkg_thres_interrupt() local
309 u32 l, h; in disable_pkg_thres_interrupt() local
/linux-4.4.14/drivers/clk/pxa/
Dclk-pxa27x.c153 unsigned int l, L, n2, N; in clk_pxa27x_cpll_get_rate() local
173 unsigned int l, osc_forced; in clk_pxa27x_lcd_base_get_rate() local
320 unsigned int a, l, osc_forced; in clk_pxa27x_memory_get_rate() local
/linux-4.4.14/drivers/media/usb/b2c2/
Dflexcop-usb.c20 #define debug_dump(b, l, method) do {\ argument
30 #define debug_dump(b, l, method) argument
303 int l; in flexcop_usb_process_frame() local
/linux-4.4.14/drivers/gpu/drm/
Ddrm_dp_helper.c53 u8 l = dp_link_status(link_status, i); in dp_get_lane_status() local
99 u8 l = dp_link_status(link_status, i); in drm_dp_get_adjust_request_voltage() local
112 u8 l = dp_link_status(link_status, i); in drm_dp_get_adjust_request_pre_emphasis() local
/linux-4.4.14/drivers/firmware/efi/libstub/
Darm-stub.c309 static int cmp_mem_desc(const void *l, const void *r) in cmp_mem_desc()
360 int l; in efi_get_virtmap() local
/linux-4.4.14/net/nfc/
Drawsock.c34 static void nfc_sock_link(struct nfc_sock_list *l, struct sock *sk) in nfc_sock_link()
41 static void nfc_sock_unlink(struct nfc_sock_list *l, struct sock *sk) in nfc_sock_unlink()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/
Daux.h23 #define AUX_MSG(b,l,f,a...) do { \ argument
/linux-4.4.14/drivers/macintosh/
Dmacio_sysfs.c30 int l; in compatible_show() local
/linux-4.4.14/drivers/s390/block/
Ddasd_ioctl.c430 struct list_head *l; in dasd_ioctl_information() local
433 struct list_head *l; in dasd_ioctl_information() local
/linux-4.4.14/arch/m32r/platforms/oaks32r/
Dio.c127 void _outl(unsigned long l, unsigned long port) in _outl()
144 void _outl_p(unsigned long l, unsigned long port) in _outl_p()
/linux-4.4.14/drivers/parport/
Dshare.c64 static size_t dead_write (struct parport *p, const void *b, size_t l, int f) in dead_write()
66 static size_t dead_read (struct parport *p, void *b, size_t l, int f) in dead_read()
434 struct list_head *l; in parport_register_port() local
/linux-4.4.14/drivers/nvdimm/
Dlabel.c557 static void del_label(struct nd_mapping *nd_mapping, int l) in del_label()
610 int i, l, alloc, victims, nfree, old_num_resources, nlabel, rc = -ENXIO; in __blk_label_update() local
791 int i, l, old_num_labels = 0; in init_labels() local
843 int l, num_freed = 0; in del_labels() local
/linux-4.4.14/drivers/md/
Ddm-cache-policy-smq.c114 static void l_init(struct ilist *l) in l_init()
120 static struct entry *l_head(struct entry_space *es, struct ilist *l) in l_head()
125 static struct entry *l_tail(struct entry_space *es, struct ilist *l) in l_tail()
140 static bool l_empty(struct ilist *l) in l_empty()
145 static void l_add_head(struct entry_space *es, struct ilist *l, struct entry *e) in l_add_head()
161 static void l_add_tail(struct entry_space *es, struct ilist *l, struct entry *e) in l_add_tail()
177 static void l_add_before(struct entry_space *es, struct ilist *l, in l_add_before()
195 static void l_del(struct entry_space *es, struct ilist *l, struct entry *e) in l_del()
214 static struct entry *l_pop_tail(struct entry_space *es, struct ilist *l) in l_pop_tail()
414 struct ilist *l, *l_above; in q_redistribute() local
/linux-4.4.14/sound/core/
Dpcm_timer.c34 unsigned long rate, mult, fsize, l, post; in snd_pcm_timer_resolution_change() local
/linux-4.4.14/arch/x86/xen/
Dplatform-pci-unplug.c188 int l; in parse_xen_emul_unplug() local
/linux-4.4.14/arch/mn10300/boot/tools/
Dbuild.c160 int l, n; in main() local
/linux-4.4.14/tools/include/linux/
Dbitops.h51 static inline unsigned fls_long(unsigned long l) in fls_long()
/linux-4.4.14/include/media/
Dov772x.h38 #define OV772X_AUTO_EDGECTRL(u, l) \ argument

12345