Home
last modified time | relevance | path

Searched defs:r (Results 1 – 25 of 236) sorted by relevance

12345678910

/arch/um/sys-x86_64/shared/sysdep/
Dptrace.h19 #define REGS_IP(r) ((r)[HOST_IP]) argument
20 #define REGS_SP(r) ((r)[HOST_SP]) argument
22 #define REGS_RBX(r) ((r)[HOST_RBX]) argument
23 #define REGS_RCX(r) ((r)[HOST_RCX]) argument
24 #define REGS_RDX(r) ((r)[HOST_RDX]) argument
25 #define REGS_RSI(r) ((r)[HOST_RSI]) argument
26 #define REGS_RDI(r) ((r)[HOST_RDI]) argument
27 #define REGS_RBP(r) ((r)[HOST_RBP]) argument
28 #define REGS_RAX(r) ((r)[HOST_RAX]) argument
29 #define REGS_R8(r) ((r)[HOST_R8]) argument
[all …]
/arch/um/sys-i386/shared/sysdep/
Dptrace.h29 #define REGS_IP(r) ((r)[HOST_IP]) argument
30 #define REGS_SP(r) ((r)[HOST_SP]) argument
31 #define REGS_EFLAGS(r) ((r)[HOST_EFLAGS]) argument
32 #define REGS_EAX(r) ((r)[HOST_EAX]) argument
33 #define REGS_EBX(r) ((r)[HOST_EBX]) argument
34 #define REGS_ECX(r) ((r)[HOST_ECX]) argument
35 #define REGS_EDX(r) ((r)[HOST_EDX]) argument
36 #define REGS_ESI(r) ((r)[HOST_ESI]) argument
37 #define REGS_EDI(r) ((r)[HOST_EDI]) argument
38 #define REGS_EBP(r) ((r)[HOST_EBP]) argument
[all …]
/arch/um/sys-x86_64/asm/
Dptrace.h18 #define PT_REGS_RBX(r) UPT_RBX(&(r)->regs) argument
19 #define PT_REGS_RCX(r) UPT_RCX(&(r)->regs) argument
20 #define PT_REGS_RDX(r) UPT_RDX(&(r)->regs) argument
21 #define PT_REGS_RSI(r) UPT_RSI(&(r)->regs) argument
22 #define PT_REGS_RDI(r) UPT_RDI(&(r)->regs) argument
23 #define PT_REGS_RBP(r) UPT_RBP(&(r)->regs) argument
24 #define PT_REGS_RAX(r) UPT_RAX(&(r)->regs) argument
25 #define PT_REGS_R8(r) UPT_R8(&(r)->regs) argument
26 #define PT_REGS_R9(r) UPT_R9(&(r)->regs) argument
27 #define PT_REGS_R10(r) UPT_R10(&(r)->regs) argument
[all …]
/arch/um/sys-i386/asm/
Dptrace.h14 #define PT_REGS_EAX(r) UPT_EAX(&(r)->regs) argument
15 #define PT_REGS_EBX(r) UPT_EBX(&(r)->regs) argument
16 #define PT_REGS_ECX(r) UPT_ECX(&(r)->regs) argument
17 #define PT_REGS_EDX(r) UPT_EDX(&(r)->regs) argument
18 #define PT_REGS_ESI(r) UPT_ESI(&(r)->regs) argument
19 #define PT_REGS_EDI(r) UPT_EDI(&(r)->regs) argument
20 #define PT_REGS_EBP(r) UPT_EBP(&(r)->regs) argument
22 #define PT_REGS_CS(r) UPT_CS(&(r)->regs) argument
23 #define PT_REGS_SS(r) UPT_SS(&(r)->regs) argument
24 #define PT_REGS_DS(r) UPT_DS(&(r)->regs) argument
[all …]
/arch/um/include/asm/
Dptrace-generic.h21 #define PT_REGS_IP(r) UPT_IP(&(r)->regs) argument
22 #define PT_REGS_SP(r) UPT_SP(&(r)->regs) argument
24 #define PT_REG(r, reg) UPT_REG(&(r)->regs, reg) argument
25 #define PT_REGS_SET(r, reg, val) UPT_SET(&(r)->regs, reg, val) argument
27 #define PT_REGS_SET_SYSCALL_RETURN(r, res) \ argument
29 #define PT_REGS_RESTART_SYSCALL(r) UPT_RESTART_SYSCALL(&(r)->regs) argument
31 #define PT_REGS_SYSCALL_NR(r) UPT_SYSCALL_NR(&(r)->regs) argument
33 #define PT_REGS_SC(r) UPT_SC(&(r)->regs) argument
/arch/um/sys-ppc/shared/sysdep/
Dptrace.h45 #define UM_REG(r, n) ((r)->regs[n]) argument
47 #define UM_SYSCALL_RET(r) UM_REG(r, PT_R3) argument
48 #define UM_SP(r) UM_REG(r, PT_R1) argument
49 #define UM_IP(r) UM_REG(r, PT_NIP) argument
50 #define UM_ELF_ZERO(r) UM_REG(r, PT_FPSCR) argument
51 #define UM_SYSCALL_NR(r) UM_REG(r, PT_R0) argument
52 #define UM_SYSCALL_ARG1(r) UM_REG(r, PT_ORIG_R3) argument
53 #define UM_SYSCALL_ARG2(r) UM_REG(r, PT_R4) argument
54 #define UM_SYSCALL_ARG3(r) UM_REG(r, PT_R5) argument
55 #define UM_SYSCALL_ARG4(r) UM_REG(r, PT_R6) argument
[all …]
/arch/powerpc/platforms/ps3/
Dmm.c235 static int ps3_mm_region_create(struct mem_region *r, unsigned long size) in ps3_mm_region_create()
275 static void ps3_mm_region_destroy(struct mem_region *r) in ps3_mm_region_destroy()
343 static unsigned long dma_sb_lpar_to_bus(struct ps3_dma_region *r, in dma_sb_lpar_to_bus()
354 static void __maybe_unused _dma_dump_region(const struct ps3_dma_region *r, in _dma_dump_region()
403 static struct dma_chunk * dma_find_chunk(struct ps3_dma_region *r, in dma_find_chunk()
432 static struct dma_chunk *dma_find_chunk_lpar(struct ps3_dma_region *r, in dma_find_chunk_lpar()
482 struct ps3_dma_region *r = c->region; in dma_ioc0_free_chunk() local
519 static int dma_sb_map_pages(struct ps3_dma_region *r, unsigned long phys_addr, in dma_sb_map_pages()
560 static int dma_ioc0_map_pages(struct ps3_dma_region *r, unsigned long phys_addr, in dma_ioc0_map_pages()
647 static int dma_sb_region_create(struct ps3_dma_region *r) in dma_sb_region_create()
[all …]
/arch/mips/lasat/
Dsysctl.c45 int r; in sysctl_lasatstring() local
62 int r; in proc_dolasatstring() local
77 int r; in proc_dolasatint() local
95 int r; in proc_dolasatrtc() local
119 int r; in sysctl_lasat_intvec() local
137 int r; in sysctl_lasat_rtc() local
217 int r; in sysctl_lasat_prid() local
233 int r; in proc_lasat_prid() local
/arch/mips/mm/
Dtlbex.c250 struct uasm_reloc **r, 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()
662 struct uasm_reloc *r = relocs; in build_r4000_tlb_refill_handler() local
811 iPTE_SW(u32 **p, struct uasm_reloc **r, unsigned int pte, unsigned int ptr, in iPTE_SW()
871 build_pte_present(u32 **p, struct uasm_label **l, struct uasm_reloc **r, in build_pte_present()
882 build_make_valid(u32 **p, struct uasm_reloc **r, unsigned int pte, in build_make_valid()
895 build_pte_writable(u32 **p, struct uasm_label **l, struct uasm_reloc **r, in build_pte_writable()
908 build_make_write(u32 **p, struct uasm_reloc **r, unsigned int pte, in build_make_write()
922 build_pte_modifiable(u32 **p, struct uasm_label **l, struct uasm_reloc **r, in build_pte_modifiable()
[all …]
/arch/powerpc/include/asm/
Dpmac_feature.h367 #define MACIO_FCR32(macio, r) ((macio)->base + ((r) >> 2)) argument
368 #define MACIO_FCR8(macio, r) (((volatile u8 __iomem *)((macio)->base)) + (r)) argument
370 #define MACIO_IN32(r) (in_le32(MACIO_FCR32(macio,r))) argument
371 #define MACIO_OUT32(r,v) (out_le32(MACIO_FCR32(macio,r), (v))) argument
372 #define MACIO_BIS(r,v) (MACIO_OUT32((r), MACIO_IN32(r) | (v))) argument
373 #define MACIO_BIC(r,v) (MACIO_OUT32((r), MACIO_IN32(r) & ~(v))) argument
374 #define MACIO_IN8(r) (in_8(MACIO_FCR8(macio,r))) argument
375 #define MACIO_OUT8(r,v) (out_8(MACIO_FCR8(macio,r), (v))) argument
389 #define UN_REG(r) (uninorth_base + ((r) >> 2)) argument
390 #define UN_IN(r) (in_be32(UN_REG(r))) argument
[all …]
/arch/powerpc/sysdev/
Dmv64x60_dev.c40 struct resource r[2]; in mv64x60_mpsc_register_shared_pdev() local
94 struct resource r[5]; in mv64x60_mpsc_device_setup() local
219 struct resource r[1]; in mv64x60_eth_register_shared_pdev() local
234 struct resource r[1]; in mv64x60_eth_device_setup() local
329 struct resource r[2]; in mv64x60_i2c_device_setup() local
385 struct resource r; in mv64x60_wdt_device_setup() local
Ddart.h59 #define DART_REG(r) (dart + ((r) >> 2)) argument
60 #define DART_IN(r) (in_be32(DART_REG(r))) argument
61 #define DART_OUT(r,v) (out_be32(DART_REG(r), (v))) argument
/arch/arm/common/
Dlocomo.c199 unsigned int r; in locomo_mask_irq() local
208 unsigned int r; in locomo_unmask_irq() local
233 unsigned int r; in locomo_key_ack_irq() local
242 unsigned int r; in locomo_key_mask_irq() local
251 unsigned int r; in locomo_key_unmask_irq() local
286 unsigned int r; in locomo_gpio_ack_irq() local
303 unsigned int r; in locomo_gpio_mask_irq() local
312 unsigned int r; in locomo_gpio_unmask_irq() local
368 unsigned int r; in locomo_lt_ack_irq() local
377 unsigned int r; in locomo_lt_mask_irq() local
[all …]
/arch/xtensa/include/asm/
Dtimex.h66 #define WSR_CCOUNT(r) asm volatile ("wsr %0,"__stringify(CCOUNT) :: "a" (r)) argument
67 #define RSR_CCOUNT(r) asm volatile ("rsr %0,"__stringify(CCOUNT) : "=a" (r)) argument
68 #define WSR_CCOMPARE(x,r) asm volatile ("wsr %0,"__stringify(CCOMPARE)"+"__stringify(x) :: "a"(r)) argument
69 #define RSR_CCOMPARE(x,r) asm volatile ("rsr %0,"__stringify(CCOMPARE)"+"__stringify(x) : "=a"(r)) argument
/arch/mn10300/unit-asb2305/
Dpci-asb2305.c98 struct resource *r, *pr; in pcibios_allocate_bus_resources() local
135 struct resource *r, *pr; in pcibios_allocate_resources() local
188 struct resource *r, *pr; in pcibios_assign_resources() local
225 struct resource *r; in pcibios_enable_resources() local
/arch/powerpc/mm/
Dhash_low_32.S309 #define TST_V(r) rlwinm. r,r,0,0,0 argument
310 #define SET_V(r) oris r,r,PTE_V@h argument
311 #define CLR_V(r,t) rlwinm r,r,0,1,31 argument
/arch/frv/mb93090-mb00/
Dpci-frv.c89 struct resource *r, *pr; in pcibios_allocate_bus_resources() local
113 struct resource *r, *pr; in pcibios_allocate_resources() local
157 struct resource *r; in pcibios_assign_resources() local
/arch/xtensa/kernel/
Dalign.S69 .macro __ssa8 r; ssa8b \r; .endm argument
70 .macro __ssa8r r; ssa8l \r; .endm argument
84 .macro __ssa8 r; ssa8l \r; .endm argument
85 .macro __ssa8r r; ssa8b \r; .endm argument
/arch/cris/include/arch-v32/arch/hwregs/
Dsupp_reg.h53 #define SPEC_REG_WR(r,v) \ argument
56 #define SPEC_REG_RD(r,v) \ argument
68 #define SUPP_REG_WR(r,v) \ argument
75 #define SUPP_REG_RD(r,v) \ argument
/arch/x86/math-emu/
Dfpu_tags.c94 void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr) in FPU_copy_to_regi()
100 void FPU_copy_to_reg1(FPU_REG const *r, u_char tag) in FPU_copy_to_reg1()
106 void FPU_copy_to_reg0(FPU_REG const *r, u_char tag) in FPU_copy_to_reg0()
/arch/sparc/kernel/
Dauxio_32.c28 struct resource r; in auxio_probe() local
116 struct resource r; in auxio_power_probe() local
/arch/sh/kernel/cpu/sh4a/
Dclock-sh7722.c420 unsigned long r; in sh7722_siu_set_rate() local
434 unsigned long r; in sh7722_siu_recalc() local
442 unsigned long r; in sh7722_siu_start_stop() local
473 unsigned long r; in sh7722_video_enable() local
481 unsigned long r; in sh7722_video_disable() local
490 unsigned long r; in sh7722_video_set_rate() local
501 unsigned long r; in sh7722_video_recalc() local
586 unsigned long r; in sh7722_mstpcr_start_stop() local
/arch/parisc/kernel/
Dreal2.S125 # define PUSH_CR(r, where) mfctl r, %r1 ! STREG,ma %r1, REG_SZ(where) argument
126 # define POP_CR(r, where) LDREG,mb -REG_SZ(where), %r1 ! mtctl %r1, r argument
/arch/mips/include/asm/sibyte/
Dsb1250_dma.h436 #define V_DM_CUR_DSCR_DSCR_COUNT(r) _SB_MAKEVALUE(r, S_DM_CUR_DSCR_DSCR_COUNT) argument
437 #define G_DM_CUR_DSCR_DSCR_COUNT(r) _SB_GETVALUE(r, S_DM_CUR_DSCR_DSCR_COUNT,\ argument
451 #define V_DM_PARTIAL_CRC_PARTIAL(r) _SB_MAKEVALUE(r, S_DM_PARTIAL_CRC_PARTIAL) argument
452 #define G_DM_PARTIAL_CRC_PARTIAL(r) _SB_GETVALUE(r, S_DM_PARTIAL_CRC_PARTIAL,\ argument
457 #define V_DM_PARTIAL_TCPCS_PARTIAL(r) _SB_MAKEVALUE(r, S_DM_PARTIAL_TCPCS_PARTIAL) argument
458 #define G_DM_PARTIAL_TCPCS_PARTIAL(r) _SB_GETVALUE(r, S_DM_PARTIAL_TCPCS_PARTIAL,\ argument
473 #define V_CRC_DEF_CRC_INIT(r) _SB_MAKEVALUE(r, S_CRC_DEF_CRC_INIT) argument
474 #define G_CRC_DEF_CRC_INIT(r) _SB_GETVALUE(r, S_CRC_DEF_CRC_INIT,\ argument
479 #define V_CRC_DEF_CRC_POLY(r) _SB_MAKEVALUE(r, S_CRC_DEF_CRC_POLY) argument
480 #define G_CRC_DEF_CRC_POLY(r) _SB_GETVALUE(r, S_CRC_DEF_CRC_POLY,\ argument
[all …]
/arch/x86/pci/
Dirq.c541 static __init int intel_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) in intel_router_probe()
610 static __init int via_router_probe(struct irq_router *r, in via_router_probe()
665 static __init int vlsi_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) in vlsi_router_probe()
678 static __init int serverworks_router_probe(struct irq_router *r, in serverworks_router_probe()
692 static __init int sis_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) in sis_router_probe()
703 static __init int cyrix_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) in cyrix_router_probe()
715 static __init int opti_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) in opti_router_probe()
727 static __init int ite_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) in ite_router_probe()
739 static __init int ali_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) in ali_router_probe()
752 static __init int amd_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) in amd_router_probe()
[all …]

12345678910