Home
last modified time | relevance | path

Searched defs:p (Results 1 – 25 of 571) sorted by relevance

12345678910>>...23

/arch/arm/include/asm/
Dbitops.h37 static inline void ____atomic_set_bit(unsigned int bit, volatile unsigned long *p) in ____atomic_set_bit()
49 static inline void ____atomic_clear_bit(unsigned int bit, volatile unsigned long *p) in ____atomic_clear_bit()
61 static inline void ____atomic_change_bit(unsigned int bit, volatile unsigned long *p) in ____atomic_change_bit()
74 ____atomic_test_and_set_bit(unsigned int bit, volatile unsigned long *p) in ____atomic_test_and_set_bit()
91 ____atomic_test_and_clear_bit(unsigned int bit, volatile unsigned long *p) in ____atomic_test_and_clear_bit()
108 ____atomic_test_and_change_bit(unsigned int bit, volatile unsigned long *p) in ____atomic_test_and_change_bit()
183 #define ATOMIC_BITOP_LE(name,nr,p) \ argument
188 #define ATOMIC_BITOP_BE(name,nr,p) \ argument
193 #define ATOMIC_BITOP_LE(name,nr,p) _##name##_le(nr,p) argument
194 #define ATOMIC_BITOP_BE(name,nr,p) _##name##_be(nr,p) argument
[all …]
Dio.h120 #define outb(v,p) __raw_writeb(v,__io(p)) argument
121 #define outw(v,p) __raw_writew((__force __u16) \ argument
123 #define outl(v,p) __raw_writel((__force __u32) \ argument
126 #define inb(p) ({ __u8 __v = __raw_readb(__io(p)); __v; }) argument
127 #define inw(p) ({ __u16 __v = le16_to_cpu((__force __le16) \ argument
129 #define inl(p) ({ __u32 __v = le32_to_cpu((__force __le32) \ argument
132 #define outsb(p,d,l) __raw_writesb(__io(p),d,l) argument
133 #define outsw(p,d,l) __raw_writesw(__io(p),d,l) argument
134 #define outsl(p,d,l) __raw_writesl(__io(p),d,l) argument
136 #define insb(p,d,l) __raw_readsb(__io(p),d,l) argument
[all …]
/arch/arm/mach-ixp2000/include/mach/
Dio.h35 #define ___io(p) ((void __iomem *)((p)+IXP2000_PCI_IO_VIRT_BASE)) argument
40 #define outb(v,p) __raw_writeb((v),alignb(___io(p))) argument
41 #define outw(v,p) __raw_writew((v),alignw(___io(p))) argument
42 #define outl(v,p) __raw_writel((v),___io(p)) argument
44 #define inb(p) ({ unsigned int __v = __raw_readb(alignb(___io(p))); __v; }) argument
45 #define inw(p) \ argument
47 #define inl(p) \ argument
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
[all …]
/arch/sh/include/asm/
Dunaligned-sh4a.h24 static __always_inline u32 __get_unaligned_cpu32(const u8 *p) in __get_unaligned_cpu32()
41 static inline u16 __get_unaligned_cpu16(const u8 *p) in __get_unaligned_cpu16()
55 static inline u64 __get_unaligned_cpu64(const u8 *p) in __get_unaligned_cpu64()
66 static inline u16 get_unaligned_le16(const void *p) in get_unaligned_le16()
71 static inline u32 get_unaligned_le32(const void *p) in get_unaligned_le32()
76 static inline u64 get_unaligned_le64(const void *p) in get_unaligned_le64()
81 static inline u16 get_unaligned_be16(const void *p) in get_unaligned_be16()
86 static inline u32 get_unaligned_be32(const void *p) in get_unaligned_be32()
91 static inline u64 get_unaligned_be64(const void *p) in get_unaligned_be64()
96 static inline void __put_le16_noalign(u8 *p, u16 val) in __put_le16_noalign()
[all …]
Dio.h41 #define inb(p) sh_mv.mv_inb((p)) argument
42 #define inw(p) sh_mv.mv_inw((p)) argument
43 #define inl(p) sh_mv.mv_inl((p)) argument
44 #define outb(x,p) sh_mv.mv_outb((x),(p)) argument
45 #define outw(x,p) sh_mv.mv_outw((x),(p)) argument
46 #define outl(x,p) sh_mv.mv_outl((x),(p)) argument
48 #define inb_p(p) sh_mv.mv_inb_p((p)) argument
49 #define inw_p(p) sh_mv.mv_inw_p((p)) argument
50 #define inl_p(p) sh_mv.mv_inl_p((p)) argument
51 #define outb_p(x,p) sh_mv.mv_outb_p((x),(p)) argument
[all …]
/arch/ia64/kernel/
Dmca_drv.h42 #define peidx_head(p) (((p)->info)) argument
43 #define peidx_mid(p) (((p)->id)) argument
44 #define peidx_bottom(p) (((p)->regs)) argument
46 #define peidx_psp(p) (&(peidx_head(p)->proc_state_parameter)) argument
47 #define peidx_field_valid(p) (&(peidx_head(p)->valid)) argument
48 #define peidx_minstate_area(p) (&(peidx_bottom(p)->min_state_area)) argument
50 #define peidx_cache_check_num(p) (peidx_head(p)->valid.num_cache_check) argument
51 #define peidx_tlb_check_num(p) (peidx_head(p)->valid.num_tlb_check) argument
52 #define peidx_bus_check_num(p) (peidx_head(p)->valid.num_bus_check) argument
53 #define peidx_reg_file_check_num(p) (peidx_head(p)->valid.num_reg_file_check) argument
[all …]
/arch/avr32/kernel/
Dkprobes.c27 int __kprobes arch_prepare_kprobe(struct kprobe *p) in arch_prepare_kprobe()
48 void __kprobes arch_arm_kprobe(struct kprobe *p) in arch_arm_kprobe()
57 void __kprobes arch_disarm_kprobe(struct kprobe *p) in arch_disarm_kprobe()
66 static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs) in prepare_singlestep()
90 static void __kprobes resume_execution(struct kprobe *p, struct pt_regs *regs) in resume_execution()
105 static void __kprobes set_current_kprobe(struct kprobe *p) in set_current_kprobe()
112 struct kprobe *p; in kprobe_handler() local
230 int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs) in setjmp_pre_handler()
252 int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs) in longjmp_break_handler()
/arch/arm/mach-ixp4xx/include/mach/
Dio.h77 #define writeb(v, p) __ixp4xx_writeb(v, p) argument
78 #define writew(v, p) __ixp4xx_writew(v, p) argument
79 #define writel(v, p) __ixp4xx_writel(v, p) argument
81 #define writesb(p, v, l) __ixp4xx_writesb(p, v, l) argument
82 #define writesw(p, v, l) __ixp4xx_writesw(p, v, l) argument
83 #define writesl(p, v, l) __ixp4xx_writesl(p, v, l) argument
85 #define readb(p) __ixp4xx_readb(p) argument
86 #define readw(p) __ixp4xx_readw(p) argument
87 #define readl(p) __ixp4xx_readl(p) argument
89 #define readsb(p, v, l) __ixp4xx_readsb(p, v, l) argument
[all …]
/arch/arm/mach-s3c2410/include/mach/
Dio.h195 #define inb(p) (__builtin_constant_p((p)) ? __inbc(p) : __inb(p)) argument
196 #define inw(p) (__builtin_constant_p((p)) ? __inwc(p) : __inw(p)) argument
197 #define inl(p) (__builtin_constant_p((p)) ? __inlc(p) : __inl(p)) argument
198 #define outb(v,p) (__builtin_constant_p((p)) ? __outbc(v,p) : __outb(v,p)) argument
199 #define outw(v,p) (__builtin_constant_p((p)) ? __outwc(v,p) : __outw(v,p)) argument
200 #define outl(v,p) (__builtin_constant_p((p)) ? __outlc(v,p) : __outl(v,p)) argument
201 #define __ioaddr(p) (__builtin_constant_p((p)) ? __ioaddr(p) : __ioaddrc(p)) argument
205 #define insb(p,d,l) __raw_readsb(__ioaddr(p),d,l) argument
206 #define insw(p,d,l) __raw_readsw(__ioaddr(p),d,l) argument
207 #define insl(p,d,l) __raw_readsl(__ioaddr(p),d,l) argument
[all …]
/arch/mips/mm/
Dtlbex.c159 u32 *p; in build_r3000_tlb_refill_handler() local
224 static void __cpuinit __maybe_unused build_tlb_probe_entry(u32 **p) in build_tlb_probe_entry()
249 static void __cpuinit build_tlb_write_entry(u32 **p, struct uasm_label **l, in build_tlb_write_entry()
397 build_get_pmde64(u32 **p, struct uasm_label **l, struct uasm_reloc **r, in build_get_pmde64()
458 build_get_pgd_vmalloc64(u32 **p, struct uasm_label **l, struct uasm_reloc **r, in build_get_pgd_vmalloc64()
530 build_get_pgde32(u32 **p, unsigned int tmp, unsigned int ptr) in build_get_pgde32()
564 static void __cpuinit build_adjust_context(u32 **p, unsigned int ctx) in build_adjust_context()
590 static void __cpuinit build_get_ptep(u32 **p, unsigned int tmp, unsigned int ptr) in build_get_ptep()
615 static void __cpuinit build_update_entries(u32 **p, unsigned int tmp, in build_update_entries()
660 u32 *p = tlb_handler; in build_r4000_tlb_refill_handler() local
[all …]
/arch/avr32/include/asm/
Dio.h69 # define __io(p) ((void *)phys_to_uncached(p)) argument
106 #define __BUILD_IOPORT_SINGLE(pfx, bwl, type, p, slow) \ argument
222 #define ioread8(p) ((unsigned int)readb(p)) argument
224 #define ioread16(p) ((unsigned int)readw(p)) argument
225 #define ioread16be(p) ((unsigned int)__raw_readw(p)) argument
227 #define ioread32(p) ((unsigned int)readl(p)) argument
228 #define ioread32be(p) ((unsigned int)__raw_readl(p)) argument
230 #define iowrite8(v,p) writeb(v, p) argument
232 #define iowrite16(v,p) writew(v, p) argument
233 #define iowrite16be(v,p) __raw_writew(v, p) argument
[all …]
/arch/arm/mach-ebsa110/include/mach/
Dio.h43 #define inb(p) __inb16(p) argument
44 #define outb(v,p) __outb16(v,p) argument
46 #define inb(p) __inb8(p) argument
47 #define outb(v,p) __outb8(v,p) argument
50 #define inw(p) __inw(p) argument
51 #define outw(v,p) __outw(v,p) argument
53 #define inl(p) __inl(p) argument
54 #define outl(v,p) __outl(v,p) argument
/arch/mn10300/kernel/
Dkprobes.c49 #define READ_BYTE(p, valp) \ argument
52 #define READ_WORD16(p, valp) \ argument
58 #define READ_WORD32(p, valp) \ argument
361 int __kprobes arch_prepare_kprobe(struct kprobe *p) in arch_prepare_kprobe()
366 void __kprobes arch_copy_kprobe(struct kprobe *p) in arch_copy_kprobe()
371 void __kprobes arch_arm_kprobe(struct kprobe *p) in arch_arm_kprobe()
378 void __kprobes arch_disarm_kprobe(struct kprobe *p) in arch_disarm_kprobe()
384 void arch_remove_kprobe(struct kprobe *p) in arch_remove_kprobe()
389 void __kprobes disarm_kprobe(struct kprobe *p, struct pt_regs *regs) in disarm_kprobe()
398 void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs) in prepare_singlestep()
[all …]
/arch/sparc/kernel/
Dkprobes.c47 int __kprobes arch_prepare_kprobe(struct kprobe *p) in arch_prepare_kprobe()
59 void __kprobes arch_arm_kprobe(struct kprobe *p) in arch_arm_kprobe()
65 void __kprobes arch_disarm_kprobe(struct kprobe *p) in arch_disarm_kprobe()
87 static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs, in set_current_kprobe()
95 static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs, in prepare_singlestep()
112 struct kprobe *p; in kprobe_handler() local
199 static unsigned long __kprobes relbranch_fixup(u32 insn, struct kprobe *p, in relbranch_fixup()
275 static void __kprobes resume_execution(struct kprobe *p, in resume_execution()
435 int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs) in setjmp_pre_handler()
468 int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs) in longjmp_break_handler()
[all …]
Debus.c50 static void __ebus_dma_reset(struct ebus_dma_info *p, int no_drain) in __ebus_dma_reset()
72 struct ebus_dma_info *p = dev_id; in ebus_dma_irq() local
97 int ebus_dma_register(struct ebus_dma_info *p) in ebus_dma_register()
124 int ebus_dma_irq_enable(struct ebus_dma_info *p, int on) in ebus_dma_irq_enable()
156 void ebus_dma_unregister(struct ebus_dma_info *p) in ebus_dma_unregister()
176 int ebus_dma_request(struct ebus_dma_info *p, dma_addr_t bus_addr, size_t len) in ebus_dma_request()
205 void ebus_dma_prepare(struct ebus_dma_info *p, int write) in ebus_dma_prepare()
229 unsigned int ebus_dma_residue(struct ebus_dma_info *p) in ebus_dma_residue()
235 unsigned int ebus_dma_addr(struct ebus_dma_info *p) in ebus_dma_addr()
241 void ebus_dma_enable(struct ebus_dma_info *p, int on) in ebus_dma_enable()
/arch/powerpc/kernel/
Dkprobes.c50 int __kprobes arch_prepare_kprobe(struct kprobe *p) in arch_prepare_kprobe()
83 void __kprobes arch_arm_kprobe(struct kprobe *p) in arch_arm_kprobe()
90 void __kprobes arch_disarm_kprobe(struct kprobe *p) in arch_disarm_kprobe()
97 void __kprobes arch_remove_kprobe(struct kprobe *p) in arch_remove_kprobe()
105 static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs) in prepare_singlestep()
141 static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs, in set_current_kprobe()
159 struct kprobe *p; in kprobe_handler() local
305 static int __kprobes trampoline_probe_handler(struct kprobe *p, in trampoline_probe_handler()
377 static void __kprobes resume_execution(struct kprobe *p, struct pt_regs *regs) in resume_execution()
526 int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs) in setjmp_pre_handler()
[all …]
/arch/powerpc/include/asm/
Dide.h12 #define __ide_mm_insw(p, a, c) readsw((void __iomem *)(p), (a), (c)) argument
13 #define __ide_mm_insl(p, a, c) readsl((void __iomem *)(p), (a), (c)) argument
14 #define __ide_mm_outsw(p, a, c) writesw((void __iomem *)(p), (a), (c)) argument
15 #define __ide_mm_outsl(p, a, c) writesl((void __iomem *)(p), (a), (c)) argument
/arch/sh/kernel/
Dkprobes.c42 int __kprobes arch_prepare_kprobe(struct kprobe *p) in arch_prepare_kprobe()
54 void __kprobes arch_copy_kprobe(struct kprobe *p) in arch_copy_kprobe()
60 void __kprobes arch_arm_kprobe(struct kprobe *p) in arch_arm_kprobe()
67 void __kprobes arch_disarm_kprobe(struct kprobe *p) in arch_disarm_kprobe()
74 int __kprobes arch_trampoline_kprobe(struct kprobe *p) in arch_trampoline_kprobe()
90 struct kprobe *p = get_kprobe((kprobe_opcode_t *) pc + 1); in kprobe_handle_illslot() local
102 void __kprobes arch_remove_kprobe(struct kprobe *p) in arch_remove_kprobe()
130 static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs, in set_current_kprobe()
141 static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs) in prepare_singlestep()
209 struct kprobe *p; in kprobe_handler() local
[all …]
/arch/arm/mach-rpc/include/mach/
Dio.h192 #define inb(p) (__builtin_constant_p((p)) ? __inbc(p) : __inb(p)) argument
193 #define inw(p) (__builtin_constant_p((p)) ? __inwc(p) : __inw(p)) argument
194 #define inl(p) (__builtin_constant_p((p)) ? __inlc(p) : __inl(p)) argument
195 #define outb(v,p) (__builtin_constant_p((p)) ? __outbc(v,p) : __outb(v,p)) argument
196 #define outw(v,p) (__builtin_constant_p((p)) ? __outwc(v,p) : __outw(v,p)) argument
197 #define outl(v,p) (__builtin_constant_p((p)) ? __outlc(v,p) : __outl(v,p)) argument
202 #define insb(p,d,l) __raw_readsb(__ioaddr(p),d,l) argument
203 #define insw(p,d,l) __raw_readsw(__ioaddr(p),d,l) argument
205 #define outsb(p,d,l) __raw_writesb(__ioaddr(p),d,l) argument
206 #define outsw(p,d,l) __raw_writesw(__ioaddr(p),d,l) argument
/arch/s390/kernel/
Dkprobes.c38 int __kprobes arch_prepare_kprobe(struct kprobe *p) in arch_prepare_kprobe()
189 void __kprobes arch_arm_kprobe(struct kprobe *p) in arch_arm_kprobe()
204 void __kprobes arch_disarm_kprobe(struct kprobe *p) in arch_disarm_kprobe()
219 void __kprobes arch_remove_kprobe(struct kprobe *p) in arch_remove_kprobe()
227 static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs) in prepare_singlestep()
263 static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs, in set_current_kprobe()
285 struct kprobe *p; in kprobe_handler() local
370 static int __kprobes trampoline_probe_handler(struct kprobe *p, in trampoline_probe_handler()
442 static void __kprobes resume_execution(struct kprobe *p, struct pt_regs *regs) in resume_execution()
608 int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs) in setjmp_pre_handler()
[all …]
Ds390_ext.c38 ext_int_info_t *p; in register_external_interrupt() local
53 ext_int_info_t *p) in register_early_external_interrupt()
69 ext_int_info_t *p, *q; in unregister_external_interrupt() local
92 ext_int_info_t *p) in unregister_early_external_interrupt()
117 ext_int_info_t *p; in do_extint() local
/arch/arm/kernel/
Dkprobes.c45 int __kprobes arch_prepare_kprobe(struct kprobe *p) in arch_prepare_kprobe()
80 void __kprobes arch_arm_kprobe(struct kprobe *p) in arch_arm_kprobe()
86 void __kprobes arch_disarm_kprobe(struct kprobe *p) in arch_disarm_kprobe()
92 void __kprobes arch_remove_kprobe(struct kprobe *p) in arch_remove_kprobe()
112 static void __kprobes set_current_kprobe(struct kprobe *p) in set_current_kprobe()
117 static void __kprobes singlestep(struct kprobe *p, struct pt_regs *regs, in singlestep()
133 struct kprobe *p, *cur; in kprobe_handler() local
359 int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs) in setjmp_pre_handler()
405 int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs) in longjmp_break_handler()
433 int __kprobes arch_trampoline_kprobe(struct kprobe *p) in arch_trampoline_kprobe()
/arch/arm/mach-clps711x/include/mach/
Dio.h31 #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
/arch/x86/kernel/
Dkprobes.c277 static void __kprobes fix_riprel(struct kprobe *p) in fix_riprel()
346 static void __kprobes arch_copy_kprobe(struct kprobe *p) in arch_copy_kprobe()
360 int __kprobes arch_prepare_kprobe(struct kprobe *p) in arch_prepare_kprobe()
370 void __kprobes arch_arm_kprobe(struct kprobe *p) in arch_arm_kprobe()
375 void __kprobes arch_disarm_kprobe(struct kprobe *p) in arch_disarm_kprobe()
380 void __kprobes arch_remove_kprobe(struct kprobe *p) in arch_remove_kprobe()
404 static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs, in set_current_kprobe()
426 static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs) in prepare_singlestep()
449 static void __kprobes setup_singlestep(struct kprobe *p, struct pt_regs *regs, in setup_singlestep()
470 static int __kprobes reenter_kprobe(struct kprobe *p, struct pt_regs *regs, in reenter_kprobe()
[all …]
/arch/x86/mm/
Dtestmmiotrace.c30 static void do_write_test(void __iomem *p) in do_write_test()
46 static void do_read_test(void __iomem *p) in do_read_test()
69 static void do_read_far_test(void __iomem *p) in do_read_far_test()
79 void __iomem *p = ioremap_nocache(mmio_address, size); in do_test() local

12345678910>>...23