/include/asm-generic/ |
D | local64.h | 30 #define local64_read(l) local_read(&(l)->a) argument 31 #define local64_set(l,i) local_set((&(l)->a),(i)) argument 32 #define local64_inc(l) local_inc(&(l)->a) argument 33 #define local64_dec(l) local_dec(&(l)->a) argument 34 #define local64_add(i,l) local_add((i),(&(l)->a)) argument 35 #define local64_sub(i,l) local_sub((i),(&(l)->a)) argument 37 #define local64_sub_and_test(i, l) local_sub_and_test((i), (&(l)->a)) argument 38 #define local64_dec_and_test(l) local_dec_and_test(&(l)->a) argument 39 #define local64_inc_and_test(l) local_inc_and_test(&(l)->a) argument 40 #define local64_add_negative(i, l) local_add_negative((i), (&(l)->a)) argument [all …]
|
D | local.h | 29 #define local_read(l) atomic_long_read(&(l)->a) argument 30 #define local_set(l,i) atomic_long_set((&(l)->a),(i)) argument 31 #define local_inc(l) atomic_long_inc(&(l)->a) argument 32 #define local_dec(l) atomic_long_dec(&(l)->a) argument 33 #define local_add(i,l) atomic_long_add((i),(&(l)->a)) argument 34 #define local_sub(i,l) atomic_long_sub((i),(&(l)->a)) argument 36 #define local_sub_and_test(i, l) atomic_long_sub_and_test((i), (&(l)->a)) argument 37 #define local_dec_and_test(l) atomic_long_dec_and_test(&(l)->a) argument 38 #define local_inc_and_test(l) atomic_long_inc_and_test(&(l)->a) argument 39 #define local_add_negative(i, l) atomic_long_add_negative((i), (&(l)->a)) argument [all …]
|
D | 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
|
D | qspinlock.h | 143 #define arch_spin_is_locked(l) queued_spin_is_locked(l) argument 144 #define arch_spin_is_contended(l) queued_spin_is_contended(l) argument 145 #define arch_spin_value_unlocked(l) queued_spin_value_unlocked(l) argument 146 #define arch_spin_lock(l) queued_spin_lock(l) argument 147 #define arch_spin_trylock(l) queued_spin_trylock(l) argument 148 #define arch_spin_unlock(l) queued_spin_unlock(l) argument
|
/include/linux/ |
D | bits.h | 23 #define GENMASK_INPUT_CHECK(h, l) \ argument 25 __is_constexpr((l) > (h)), (l) > (h), 0))) 31 #define GENMASK_INPUT_CHECK(h, l) 0 argument 34 #define __GENMASK(h, l) \ argument 35 (((~UL(0)) - (UL(1) << (l)) + 1) & \ 37 #define GENMASK(h, l) \ argument 38 (GENMASK_INPUT_CHECK(h, l) + __GENMASK(h, l)) 40 #define __GENMASK_ULL(h, l) \ argument 41 (((~ULL(0)) - (ULL(1) << (l)) + 1) & \ 43 #define GENMASK_ULL(h, l) \ argument [all …]
|
D | lockdep.h | 293 #define lock_set_novalidate_class(l, n, i) \ argument 294 lock_set_class(l, n, &__lockdep_no_validate__, 0, i) 318 #define lockdep_assert_held(l) \ argument 319 lockdep_assert(lockdep_is_held(l) != LOCK_STATE_NOT_HELD) 321 #define lockdep_assert_not_held(l) \ argument 322 lockdep_assert(lockdep_is_held(l) != LOCK_STATE_HELD) 324 #define lockdep_assert_held_write(l) \ argument 325 lockdep_assert(lockdep_is_held_type(l, 0)) 327 #define lockdep_assert_held_read(l) \ argument 328 lockdep_assert(lockdep_is_held_type(l, 1)) [all …]
|
D | local_lock_internal.h | 27 static inline void local_lock_acquire(local_lock_t *l) in local_lock_acquire() argument 29 lock_map_acquire(&l->dep_map); in local_lock_acquire() 30 DEBUG_LOCKS_WARN_ON(l->owner); in local_lock_acquire() 31 l->owner = current; in local_lock_acquire() 34 static inline void local_lock_release(local_lock_t *l) in local_lock_release() argument 36 DEBUG_LOCKS_WARN_ON(l->owner != current); in local_lock_release() 37 l->owner = NULL; in local_lock_release() 38 lock_map_release(&l->dep_map); in local_lock_release() 41 static inline void local_lock_debug_init(local_lock_t *l) in local_lock_debug_init() argument 43 l->owner = NULL; in local_lock_debug_init() [all …]
|
D | math64.h | 203 } l; in mul_u64_u64_shr() member 210 rl.ll = mul_u32_u32(a0.l.low, b0.l.low); in mul_u64_u64_shr() 211 rm.ll = mul_u32_u32(a0.l.low, b0.l.high); in mul_u64_u64_shr() 212 rn.ll = mul_u32_u32(a0.l.high, b0.l.low); in mul_u64_u64_shr() 213 rh.ll = mul_u32_u32(a0.l.high, b0.l.high); in mul_u64_u64_shr() 220 rl.l.high = c = (u64)rl.l.high + rm.l.low + rn.l.low; in mul_u64_u64_shr() 221 rh.l.low = c = (c >> 32) + rm.l.high + rn.l.high + rh.l.low; in mul_u64_u64_shr() 222 rh.l.high = (c >> 32) + rh.l.high; in mul_u64_u64_shr() 267 } l; in mul_u64_u32_div() member 271 rl.ll = mul_u32_u32(u.l.low, mul); in mul_u64_u32_div() [all …]
|
D | stdarg.h | 6 #define va_start(v, l) __builtin_va_start(v, l) argument
|
D | lockref.h | 47 static inline bool __lockref_is_dead(const struct lockref *l) in __lockref_is_dead() argument 49 return ((int)l->count < 0); in __lockref_is_dead()
|
D | time.h | 98 #define time_between32(t, l, h) ((u32)(h) - (u32)(l) >= (u32)(t) - (u32)(l)) argument
|
D | bitops.h | 203 static inline unsigned fls_long(unsigned long l) in fls_long() argument 205 if (sizeof(l) == 4) in fls_long() 206 return fls(l); in fls_long() 207 return fls64(l); in fls_long() 224 static inline int get_count_order_long(unsigned long l) in get_count_order_long() argument 226 if (l == 0UL) in get_count_order_long() 228 return (int)fls_long(--l); in get_count_order_long()
|
D | const.h | 12 (sizeof(int) == sizeof(*(8 ? ((void *)((long)(x) * 0l)) : (int *)8)))
|
D | migrate.h | 64 extern void putback_movable_pages(struct list_head *l); 69 extern int migrate_pages(struct list_head *l, new_page_t new, free_page_t free, 86 static inline void putback_movable_pages(struct list_head *l) {} in putback_movable_pages() argument 87 static inline int migrate_pages(struct list_head *l, new_page_t new, in migrate_pages() argument
|
D | ww_mutex.h | 30 #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
|
D | badblocks.h | 18 #define BB_MAKE(a, l, ack) (((a)<<9) | ((l)-1) | ((u64)(!!(ack)) << 63)) argument
|
D | fs_context.h | 198 #define __logfc(fc, l, fmt, ...) logfc((fc)->log.log, NULL, \ argument 199 l, fmt, ## __VA_ARGS__) 200 #define __plog(p, l, fmt, ...) logfc((p)->log, (p)->prefix, \ argument 201 l, fmt, ## __VA_ARGS__)
|
/include/linux/ceph/ |
D | striper.h | 10 void ceph_calc_file_object_mapping(struct ceph_file_layout *l, 36 int ceph_file_to_extents(struct ceph_file_layout *l, u64 off, u64 len, 42 int ceph_iterate_extents(struct ceph_file_layout *l, u64 off, u64 len, 64 int ceph_extent_to_file(struct ceph_file_layout *l, 69 u64 ceph_get_num_objects(struct ceph_file_layout *l, u64 size);
|
/include/uapi/linux/ |
D | romfs_fs.h | 17 #define __mkw(h,l) (((h)&0x00ff)<< 8|((l)&0x00ff)) argument 18 #define __mkl(h,l) (((h)&0xffff)<<16|((l)&0xffff)) argument
|
/include/kvm/ |
D | iodev.h | 44 int l, void *v) in kvm_iodevice_read() argument 46 return dev->ops->read ? dev->ops->read(vcpu, dev, addr, l, v) in kvm_iodevice_read() 52 int l, const void *v) in kvm_iodevice_write() argument 54 return dev->ops->write ? dev->ops->write(vcpu, dev, addr, l, v) in kvm_iodevice_write()
|
/include/asm-generic/bitops/ |
D | ext2-atomic-setbit.h | 9 #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/media/i2c/ |
D | ov772x.h | 35 #define OV772X_AUTO_EDGECTRL(u, l) \ argument 38 .lower = (l & OV772X_EDGE_LOWER_MASK), \
|
/include/linux/mfd/ |
D | tmio.h | 15 #define tmio_ioread16_rep(r, b, l) readsw(r, b, l) argument 21 #define tmio_iowrite16_rep(r, b, l) writesw(r, b, l) argument
|
/include/video/ |
D | pm3fb.h | 591 #define PM3FBDestReadMode_Layout0(l) (((l) & 0x3) << 12) argument 592 #define PM3FBDestReadMode_Layout1(l) (((l) & 0x3) << 14) argument 593 #define PM3FBDestReadMode_Layout2(l) (((l) & 0x3) << 16) argument 594 #define PM3FBDestReadMode_Layout3(l) (((l) & 0x3) << 18) argument 620 #define PM3FBSourceReadMode_Layout(l) (((l) & 0x3) << 8) argument 660 #define PM3FBWriteMode_Layout0(l) (((l) & 0x3) << 16) argument 661 #define PM3FBWriteMode_Layout1(l) (((l) & 0x3) << 18) argument 662 #define PM3FBWriteMode_Layout2(l) (((l) & 0x3) << 20) argument 663 #define PM3FBWriteMode_Layout3(l) (((l) & 0x3) << 22) argument
|
/include/crypto/ |
D | algapi.h | 159 unsigned long l; in crypto_xor() local 162 l = get_unaligned(d) ^ get_unaligned(s++); in crypto_xor() 163 put_unaligned(l, d++); in crypto_xor() 180 unsigned long l; in crypto_xor_cpy() local 183 l = get_unaligned(s1++) ^ get_unaligned(s2++); in crypto_xor_cpy() 184 put_unaligned(l, d++); in crypto_xor_cpy()
|