/linux-3.3/include/asm-generic/ |
D | local64.h | 29 #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 …]
|
D | local.h | 28 #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 …]
|
D | atomic-long.h | 27 static inline long atomic_long_read(atomic_long_t *l) in atomic_long_read() 34 static inline void atomic_long_set(atomic_long_t *l, long i) in atomic_long_set() 41 static inline void atomic_long_inc(atomic_long_t *l) in atomic_long_inc() 48 static inline void atomic_long_dec(atomic_long_t *l) in atomic_long_dec() 55 static inline void atomic_long_add(long i, atomic_long_t *l) in atomic_long_add() 62 static inline void atomic_long_sub(long i, atomic_long_t *l) in atomic_long_sub() 69 static inline int atomic_long_sub_and_test(long i, atomic_long_t *l) in atomic_long_sub_and_test() 76 static inline int atomic_long_dec_and_test(atomic_long_t *l) in atomic_long_dec_and_test() 83 static inline int atomic_long_inc_and_test(atomic_long_t *l) in atomic_long_inc_and_test() 90 static inline int atomic_long_add_negative(long i, atomic_long_t *l) in atomic_long_add_negative() [all …]
|
/linux-3.3/arch/powerpc/include/asm/ |
D | local.h | 14 #define local_read(l) atomic_long_read(&(l)->a) argument 15 #define local_set(l,i) atomic_long_set(&(l)->a, (i)) argument 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 …]
|
/linux-3.3/arch/x86/include/asm/ |
D | local.h | 16 #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 int local_sub_and_test(long i, local_t *l) in local_sub_and_test() 72 static inline int local_dec_and_test(local_t *l) in local_dec_and_test() 90 static inline int local_inc_and_test(local_t *l) in local_inc_and_test() 109 static inline int local_add_negative(long i, local_t *l) in local_add_negative() [all …]
|
/linux-3.3/arch/alpha/include/asm/ |
D | local.h | 13 #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-3.3/arch/mips/include/asm/ |
D | local.h | 17 #define local_read(l) atomic_long_read(&(l)->a) argument 18 #define local_set(l, i) atomic_long_set(&(l)->a, (i)) argument 20 #define local_add(i, l) atomic_long_add((i), (&(l)->a)) argument 21 #define local_sub(i, l) atomic_long_sub((i), (&(l)->a)) argument 22 #define local_inc(l) atomic_long_inc(&(l)->a) argument 23 #define local_dec(l) atomic_long_dec(&(l)->a) argument 28 static __inline__ long local_add_return(long i, local_t * l) in local_add_return() 73 static __inline__ long local_sub_return(long i, local_t * l) in local_sub_return() 118 #define local_cmpxchg(l, o, n) \ argument 120 #define local_xchg(l, n) (atomic_long_xchg((&(l)->a), (n))) argument [all …]
|
/linux-3.3/arch/m32r/include/asm/ |
D | local.h | 38 #define local_read(l) ((l)->counter) argument 47 #define local_set(l, i) (((l)->counter) = (i)) argument 56 static inline long local_add_return(long i, local_t *l) in local_add_return() 87 static inline long local_sub_return(long i, local_t *l) in local_sub_return() 118 #define local_add(i, l) ((void) local_add_return((i), (l))) argument 127 #define local_sub(i, l) ((void) local_sub_return((i), (l))) argument 138 #define local_sub_and_test(i, l) (local_sub_return((i), (l)) == 0) argument 146 static inline long local_inc_return(local_t *l) in local_inc_return() 176 static inline long local_dec_return(local_t *l) in local_dec_return() 206 #define local_inc(l) ((void)local_inc_return(l)) argument [all …]
|
/linux-3.3/kernel/ |
D | rtmutex.h | 13 #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
|
D | kfifo.c | 109 unsigned int l; in kfifo_copy_in() local 131 unsigned int l; in __kfifo_in() local 148 unsigned int l; in kfifo_copy_out() local 170 unsigned int l; in __kfifo_out_peek() local 196 unsigned int l; in kfifo_copy_from_user() local 228 unsigned int l; in __kfifo_from_user() local 254 unsigned int l; in kfifo_copy_to_user() local 288 unsigned int l; in __kfifo_to_user() local 314 unsigned int l; in setup_sgl_buf() local 354 unsigned int l; in setup_sgl() local [all …]
|
/linux-3.3/include/linux/ |
D | lockdep.h | 344 #define lockdep_assert_held(l) WARN_ON(debug_locks && !lockdep_is_held(l)) argument 358 # define lock_acquire(l, s, t, r, c, n, i) do { } while (0) argument 359 # define lock_release(l, n, i) do { } while (0) argument 360 # define lock_set_class(l, n, k, s, i) do { } while (0) argument 361 # define lock_set_subclass(l, s, i) do { } while (0) argument 395 #define lockdep_assert_held(l) do { } while (0) argument 464 # define spin_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 2, NULL, i) argument 465 # define spin_acquire_nest(l, s, t, n, i) lock_acquire(l, s, t, 0, 2, n, i) argument 467 # define spin_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 1, NULL, i) argument 468 # define spin_acquire_nest(l, s, t, n, i) lock_acquire(l, s, t, 0, 1, NULL, i) argument [all …]
|
/linux-3.3/arch/arm/mach-omap1/ |
D | usb.c | 193 u32 l; in omap1_usb0_init() local 215 u32 l; in omap1_usb0_init() local 261 u32 l; in omap1_usb0_init() local 278 u32 l; in omap1_usb0_init() local 300 u32 l; in omap1_usb1_init() local 345 u32 l; in omap1_usb1_init() local 370 u32 l; in omap1_usb2_init() local 416 u32 l; in omap1_usb2_init() local
|
/linux-3.3/fs/nls/ |
D | nls_euc-jp.c | 17 #define IS_SJIS_LOW_BYTE(l) ((0x40 <= (l)) && ((l) <= 0xFC) && ((l) != 0x7F)) argument 19 #define IS_SJIS_JISX0208(h, l) ((((0x81 <= (h)) && ((h) <= 0x9F)) \ argument 23 #define IS_SJIS_UDC_LOW(h, l) (((0xF0 <= (h)) && ((h) <= 0xF4)) \ argument 25 #define IS_SJIS_UDC_HI(h, l) (((0xF5 <= (h)) && ((h) <= 0xF9)) \ argument 27 #define IS_SJIS_IBM(h, l) (((0xFA <= (h)) && ((h) <= 0xFC)) \ argument 29 #define IS_SJIS_NECIBM(h, l) (((0xED <= (h)) && ((h) <= 0xEE)) \ argument 44 #define IS_EUC_JISX0208(h, l) (IS_EUC_BYTE(h) && IS_EUC_BYTE(l)) argument 45 #define IS_EUC_JISX0201KANA(h, l) (((h) == SS2) && (0xA1 <= (l) && (l) <= 0xDF)) argument 46 #define IS_EUC_UDC_LOW(h, l) (((0xF5 <= (h)) && ((h) <= 0xFE)) \ argument 48 #define IS_EUC_UDC_HI(h, l) IS_EUC_UDC_LOW(h, l) /* G3 block */ argument [all …]
|
/linux-3.3/tools/perf/util/ |
D | parse-options.h | 102 #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } argument 104 #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .val… argument 105 #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), … argument 106 #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .va… argument 107 #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l)… argument 108 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), … argument 109 #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), … argument 110 #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l),… argument 111 #define OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .va… argument 112 #define OPT_U64(s, l, v, h) { .type = OPTION_U64, .short_name = (s), .long_name = (l), .val… argument [all …]
|
/linux-3.3/include/linux/ceph/ |
D | osdmap.h | 61 #define ceph_file_layout_su(l) ((__s32)le32_to_cpu((l).fl_stripe_unit)) argument 62 #define ceph_file_layout_stripe_count(l) \ argument 64 #define ceph_file_layout_object_size(l) ((__s32)le32_to_cpu((l).fl_object_size)) argument 65 #define ceph_file_layout_cas_hash(l) ((__s32)le32_to_cpu((l).fl_cas_hash)) argument 66 #define ceph_file_layout_object_su(l) \ argument 68 #define ceph_file_layout_pg_preferred(l) \ argument 70 #define ceph_file_layout_pg_pool(l) \ argument 73 static inline unsigned ceph_file_layout_stripe_width(struct ceph_file_layout *l) in ceph_file_layout_stripe_width() 80 static inline unsigned ceph_file_layout_period(struct ceph_file_layout *l) in ceph_file_layout_period()
|
/linux-3.3/arch/arm/mach-clps711x/include/mach/ |
D | io.h | 31 #define __raw_readsb(p,d,l) do { *(int *)0 = 0; } while (0) argument 32 #define __raw_readsl(p,d,l) do { *(int *)0 = 0; } while (0) argument 33 #define __raw_writesb(p,d,l) do { *(int *)0 = 0; } while (0) argument 34 #define __raw_writesl(p,d,l) do { *(int *)0 = 0; } while (0) argument
|
/linux-3.3/drivers/char/tpm/ |
D | tpm_tis.c | 67 #define TPM_ACCESS(l) (0x0000 | ((l) << 12)) argument 68 #define TPM_INT_ENABLE(l) (0x0008 | ((l) << 12)) argument 69 #define TPM_INT_VECTOR(l) (0x000C | ((l) << 12)) argument 70 #define TPM_INT_STATUS(l) (0x0010 | ((l) << 12)) argument 71 #define TPM_INTF_CAPS(l) (0x0014 | ((l) << 12)) argument 72 #define TPM_STS(l) (0x0018 | ((l) << 12)) argument 73 #define TPM_DATA_FIFO(l) (0x0024 | ((l) << 12)) argument 75 #define TPM_DID_VID(l) (0x0F00 | ((l) << 12)) argument 76 #define TPM_RID(l) (0x0F04 | ((l) << 12)) argument 101 static int check_locality(struct tpm_chip *chip, int l) in check_locality() [all …]
|
/linux-3.3/arch/arm/mach-ixp2000/include/mach/ |
D | io.h | 50 #define outsb(p,d,l) __raw_writesb(alignb(___io(p)),d,l) argument 51 #define outsw(p,d,l) __raw_writesw(alignw(___io(p)),d,l) argument 52 #define outsl(p,d,l) __raw_writesl(___io(p),d,l) argument 54 #define insb(p,d,l) __raw_readsb(alignb(___io(p)),d,l) argument 55 #define insw(p,d,l) __raw_readsw(alignw(___io(p)),d,l) argument 56 #define insl(p,d,l) __raw_readsl(___io(p),d,l) argument
|
/linux-3.3/drivers/net/ethernet/smsc/ |
D | smc91x.h | 68 #define SMC_insw(a, r, p, l) readsw((a) + (r), p, l) argument 69 #define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l) argument 70 #define SMC_insl(a, r, p, l) readsl((a) + (r), p, l) argument 71 #define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l) argument 95 #define SMC_insb(a, r, p, l) readsb((a) + (r), p, (l)) argument 97 #define SMC_insw(a, r, p, l) readsw((a) + (r), p, l) argument 99 #define SMC_outsb(a, r, p, l) writesb((a) + (r), p, (l)) argument 101 #define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l) argument 120 #define SMC_insb(a, r, p, l) readsb((a) + (r), p, (l)) argument 121 #define SMC_outsb(a, r, p, l) writesb((a) + (r), p, (l)) argument [all …]
|
/linux-3.3/fs/ |
D | mbcache.c | 271 struct list_head *l, *ltmp; in mb_cache_shrink() local 301 struct list_head *l, *ltmp; in mb_cache_destroy() local 391 struct list_head *l; in mb_cache_entry_insert() local 461 struct list_head *l; in mb_cache_entry_get() local 504 __mb_cache_entry_find(struct list_head *l, struct list_head *head, in __mb_cache_entry_find() 560 struct list_head *l; in mb_cache_entry_find_first() local 595 struct list_head *l; in mb_cache_entry_find_next() local
|
/linux-3.3/arch/powerpc/lib/ |
D | rheap.c | 31 struct list_head *l) in fixup() 159 struct list_head *l; in attach_free_block() local 235 struct list_head *l; in attach_taken_block() local 372 struct list_head *l; in rh_detach_region() local 444 struct list_head *l; in rh_alloc_align() local 529 struct list_head *l; in rh_alloc_fixed() local 615 struct list_head *l; in rh_free() local 644 struct list_head *l; in rh_get_stats() local 682 struct list_head *l; in rh_set_owner() local
|
/linux-3.3/arch/arm/mach-s3c2410/include/mach/ |
D | io.h | 203 #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-3.3/include/linux/wimax/ |
D | debug.h | 199 #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-3.3/drivers/scsi/arm/ |
D | queue.c | 109 struct list_head *l; in __queue_add() local 164 struct list_head *l; in queue_remove_exclude() local 212 struct list_head *l; in queue_remove_tgtluntag() local 239 struct list_head *l; in queue_remove_all_target() local 262 struct list_head *l; in queue_probetgtlun() local 288 struct list_head *l; in queue_remove_cmd() local
|
/linux-3.3/arch/arm/plat-omap/ |
D | dmtimer.c | 270 u32 l; in omap_dm_timer_modify_idlect_mask() local 321 u32 l; in omap_dm_timer_start() local 386 u32 l; in omap_dm_timer_set_load() local 413 u32 l; in omap_dm_timer_set_load_start() local 449 u32 l; in omap_dm_timer_set_match() local 474 u32 l; in omap_dm_timer_set_pwm() local 499 u32 l; in omap_dm_timer_set_prescaler() local 539 unsigned int l; in omap_dm_timer_read_status() local
|