/linux-3.3/drivers/net/ethernet/freescale/fs_enet/ |
D | mac-fcc.c | 53 #define W32(_p, _m, _v) out_be32(&(_p)->_m, (_v)) argument 54 #define R32(_p, _m) in_be32(&(_p)->_m) argument 55 #define S32(_p, _m, _v) W32(_p, _m, R32(_p, _m) | (_v)) argument 56 #define C32(_p, _m, _v) W32(_p, _m, R32(_p, _m) & ~(_v)) argument 58 #define W16(_p, _m, _v) out_be16(&(_p)->_m, (_v)) argument 59 #define R16(_p, _m) in_be16(&(_p)->_m) argument 60 #define S16(_p, _m, _v) W16(_p, _m, R16(_p, _m) | (_v)) argument 61 #define C16(_p, _m, _v) W16(_p, _m, R16(_p, _m) & ~(_v)) argument 63 #define W8(_p, _m, _v) out_8(&(_p)->_m, (_v)) argument 64 #define R8(_p, _m) in_8(&(_p)->_m) argument [all …]
|
D | mac-scc.c | 68 #define W32(_p, _m, _v) __fs_out32(&(_p)->_m, (_v)) argument 69 #define R32(_p, _m) __fs_in32(&(_p)->_m) argument 70 #define S32(_p, _m, _v) W32(_p, _m, R32(_p, _m) | (_v)) argument 71 #define C32(_p, _m, _v) W32(_p, _m, R32(_p, _m) & ~(_v)) argument 73 #define W16(_p, _m, _v) __fs_out16(&(_p)->_m, (_v)) argument 74 #define R16(_p, _m) __fs_in16(&(_p)->_m) argument 75 #define S16(_p, _m, _v) W16(_p, _m, R16(_p, _m) | (_v)) argument 76 #define C16(_p, _m, _v) W16(_p, _m, R16(_p, _m) & ~(_v)) argument 78 #define W8(_p, _m, _v) __fs_out8(&(_p)->_m, (_v)) argument 79 #define R8(_p, _m) __fs_in8(&(_p)->_m) argument [all …]
|
/linux-3.3/drivers/net/ethernet/8390/ |
D | 8390p.c | 6 #define ei_inb(_p) inb(_p) argument 7 #define ei_outb(_v, _p) outb(_v, _p) argument 8 #define ei_inb_p(_p) inb_p(_p) argument 9 #define ei_outb_p(_v, _p) outb_p(_v, _p) argument
|
D | 8390.h | 149 #define ei_inb(_p) inb(_p) argument 150 #define ei_outb(_v,_p) outb(_v,_p) argument 151 #define ei_inb_p(_p) inb(_p) argument 152 #define ei_outb_p(_v,_p) outb(_v,_p) argument
|
D | etherh.c | 54 #define ei_inb(_p) readb((void __iomem *)_p) argument 55 #define ei_outb(_v,_p) writeb(_v,(void __iomem *)_p) argument 56 #define ei_inb_p(_p) readb((void __iomem *)_p) argument 57 #define ei_outb_p(_v,_p) writeb(_v,(void __iomem *)_p) argument
|
/linux-3.3/arch/ia64/include/asm/xen/ |
D | hypervisor.h | 52 #define scrub_pages(_p, _n) memset((void *)(_p), 0, (_n) << PAGE_SHIFT) argument 54 #define scrub_pages(_p, _n) ((void)0) argument
|
/linux-3.3/arch/c6x/include/asm/ |
D | unaligned.h | 24 const u8 *_p = p; in get_unaligned_le16() local 30 const u8 *_p = p; in get_unaligned_be16() local 36 u8 *_p = p; in put_unaligned_le16() local 43 u8 *_p = p; in put_unaligned_be16() local
|
/linux-3.3/security/keys/ |
D | proc.c | 186 struct rb_node *_p = v; in proc_keys_show() local 306 struct rb_node *_p; in proc_key_users_start() local 334 struct rb_node *_p = v; in proc_key_users_show() local
|
/linux-3.3/lib/ |
D | bch.c | 78 #define GF_M(_p) (CONFIG_BCH_CONST_M) argument 79 #define GF_T(_p) (CONFIG_BCH_CONST_T) argument 80 #define GF_N(_p) ((1 << (CONFIG_BCH_CONST_M))-1) argument 82 #define GF_M(_p) ((_p)->m) argument 83 #define GF_T(_p) ((_p)->t) argument 84 #define GF_N(_p) ((_p)->n) argument 87 #define BCH_ECC_WORDS(_p) DIV_ROUND_UP(GF_M(_p)*GF_T(_p), 32) argument 88 #define BCH_ECC_BYTES(_p) DIV_ROUND_UP(GF_M(_p)*GF_T(_p), 8) argument 941 #define find_poly_roots(_p, _k, _elp, _loc) chien_search(_p, len, _elp, _loc) argument
|
/linux-3.3/fs/proc/ |
D | task_nommu.c | 185 static int show_map(struct seq_file *m, void *_p) in show_map() 231 static void *m_next(struct seq_file *m, void *_p, loff_t *pos) in m_next()
|
D | nommu.c | 80 static int nommu_region_list_show(struct seq_file *m, void *_p) in nommu_region_list_show()
|
/linux-3.3/arch/frv/mm/ |
D | mmu-context.c | 46 struct list_head *_p; in get_cxn() local
|
/linux-3.3/net/rxrpc/ |
D | ar-transport.c | 218 struct rxrpc_transport *trans, *_p; in rxrpc_transport_reaper() local
|
D | ar-connection.c | 842 struct rxrpc_connection *conn, *_p; in rxrpc_connection_reaper() local
|
/linux-3.3/fs/fscache/ |
D | cookie.c | 378 struct hlist_node *_p; in __fscache_update_cookie() local
|
/linux-3.3/arch/powerpc/platforms/pseries/ |
D | cmm.c | 53 #define KB2PAGES(_p) ((_p)>>(PAGE_SHIFT-10)) argument 54 #define PAGES2KB(_p) ((_p)<<(PAGE_SHIFT-10)) argument
|
/linux-3.3/drivers/staging/zcache/ |
D | tmem.h | 80 #define is_persistent(_p) (_p->persistent) argument 81 #define is_ephemeral(_p) (!(_p->persistent)) argument
|
/linux-3.3/arch/arm/plat-samsung/include/plat/ |
D | cpu-freq.h | 88 #define PLLVAL(_m, _p, _s) (((_m) << 12) | ((_p) << 4) | (_s)) argument
|
/linux-3.3/drivers/xen/ |
D | xen-balloon.c | 44 #define PAGES2KB(_p) ((_p)<<(PAGE_SHIFT-10)) argument
|
/linux-3.3/fs/afs/ |
D | flock.c | 85 struct file_lock *p, *_p; in afs_grant_locks() local
|
/linux-3.3/fs/cachefiles/ |
D | namei.c | 155 struct rb_node **_p, *_parent = NULL; in cachefiles_mark_object_active() local
|
/linux-3.3/arch/arm/mach-s3c2410/include/mach/ |
D | regs-clock.h | 18 #define S3C2410_PLLVAL(_m,_p,_s) ((_m) << 12 | ((_p) << 4) | ((_s))) argument
|
/linux-3.3/virt/kvm/ |
D | eventfd.c | 519 struct _ioeventfd *_p; in ioeventfd_check_collision() local
|
/linux-3.3/drivers/misc/sgi-xp/ |
D | xpc.h | 847 #define XPC_DEACTIVATE_PARTITION(_p, _reason) \ argument 871 #define XPC_PARTID(_p) ((short)((_p) - &xpc_partitions[0])) argument 998 #define XPC_SET_REASON(_p, _reason, _line) \ argument
|
/linux-3.3/drivers/tty/serial/ |
D | ioc3_serial.c | 114 #define PENDING(_a, _p) (readl(&(_p)->vma->sio_ir) & (_a)->ic_enable) argument 297 #define RING(_p, _wh) &(((struct ring_buffer *)((_p)->ip_cpu_ringbuf))->_wh) argument
|