Home
last modified time | relevance | path

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

12

/include/asm-generic/
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
55 #define local64_xchg(l, n) local_xchg((&(l)->a), (n)) argument
77 #define local64_read(l) atomic64_read(&(l)->a) argument
78 #define local64_set(l,i) atomic64_set((&(l)->a),(i)) argument
79 #define local64_inc(l) atomic64_inc(&(l)->a) argument
[all …]
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
42 #define local_inc_return(l) atomic_long_inc_return(&(l)->a) argument
46 #define local_xchg(l, n) atomic_long_xchg((&(l)->a), (n)) argument
52 #define __local_inc(l) local_set((l), local_read(l) + 1) argument
53 #define __local_dec(l) local_set((l), local_read(l) - 1) argument
[all …]
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
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
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
/include/linux/
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 …]
A Dlockdep.h259 #define lock_set_novalidate_class(l, n, i) \ argument
284 #define lockdep_assert_held(l) \ argument
287 #define lockdep_assert_not_held(l) \ argument
290 #define lockdep_assert_held_write(l) \ argument
293 #define lockdep_assert_held_read(l) \ argument
296 #define lockdep_assert_held_once(l) \ argument
337 # define lock_release(l, i) do { } while (0) argument
338 # define lock_downgrade(l, i) do { } while (0) argument
387 #define lockdep_is_held_type(l, r) (1) argument
515 #define spin_release(l, i) lock_release(l, i) argument
[all …]
A Dlocal_lock_internal.h36 static inline void local_lock_acquire(local_lock_t *l) in local_lock_acquire()
43 static inline void local_trylock_acquire(local_lock_t *l) in local_trylock_acquire()
50 static inline void local_lock_release(local_lock_t *l) in local_lock_release()
57 static inline void local_lock_debug_init(local_lock_t *l) in local_lock_debug_init()
64 static inline void local_lock_acquire(local_lock_t *l) { } in local_lock_acquire()
65 static inline void local_trylock_acquire(local_lock_t *l) { } in local_trylock_acquire()
66 static inline void local_lock_release(local_lock_t *l) { } in local_lock_release()
67 static inline void local_lock_debug_init(local_lock_t *l) { } in local_lock_debug_init()
220 #define __local_lock_init(l) \ argument
225 #define __local_trylock_init(l) __local_lock_init(l) argument
A Dsort.h15 #define cmp_int(l, r) (((l) > (r)) - ((l) < (r))) argument
A Dstdarg.h6 #define va_start(v, l) __builtin_va_start(v, l) argument
A Dlockref.h58 static inline bool __lockref_is_dead(const struct lockref *l) in __lockref_is_dead()
A Dmigrate.h85 static inline void putback_movable_pages(struct list_head *l) {} in putback_movable_pages()
86 static inline int migrate_pages(struct list_head *l, new_folio_t new, in migrate_pages()
A Duserfaultfd_k.h350 struct list_head *l) in dup_userfaultfd()
355 static inline void dup_userfaultfd_complete(struct list_head *l) in dup_userfaultfd_complete()
359 static inline void dup_userfaultfd_fail(struct list_head *l) in dup_userfaultfd_fail()
A Dww_mutex.h30 #define ww_mutex_base_init(l,n,k) __mutex_init(l,n,k) argument
34 #define ww_mutex_base_init(l,n,k) __rt_mutex_init(l,n,k) argument
A Dtime.h98 #define time_between32(t, l, h) ((u32)(h) - (u32)(l) >= (u32)(t) - (u32)(l)) argument
A Dmath64.h203 } l; in mul_u64_u64_shr() member
267 } l; in mul_u64_u32_div() member
A Dbitops.h203 static inline unsigned int fls_long(unsigned long l) in fls_long()
224 static inline int get_count_order_long(unsigned long l) in get_count_order_long()
A Duaccess.h558 #define unsafe_copy_to_user(d,s,l,e) unsafe_op_wrap(__copy_to_user(d,s,l),e) argument
559 #define unsafe_copy_from_user(d,s,l,e) unsafe_op_wrap(__copy_from_user(d,s,l),e) argument
/include/uapi/linux/
A Dbits.h7 #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
A Dromfs_fs.h17 #define __mkw(h,l) (((h)&0x00ff)<< 8|((l)&0x00ff)) argument
18 #define __mkl(h,l) (((h)&0xffff)<<16|((l)&0xffff)) argument
A Dmap_to_7segment.h89 #define _SEG7(l,a,b,c,d,e,f,g) \ argument
/include/asm-generic/bitops/
A Dext2-atomic-setbit.h9 #define ext2_set_bit_atomic(l, nr, addr) test_and_set_bit_le(nr, addr) argument
10 #define ext2_clear_bit_atomic(l, nr, addr) test_and_clear_bit_le(nr, addr) argument
/include/crypto/
A Dutils.h23 unsigned long l; in crypto_xor() local
44 unsigned long l; in crypto_xor_cpy() local
/include/kvm/
A Diodev.h44 int l, void *v) in kvm_iodevice_read()
52 int l, const void *v) in kvm_iodevice_write()
/include/media/i2c/
A Dov772x.h35 #define OV772X_AUTO_EDGECTRL(u, l) \ argument

Completed in 38 milliseconds

12