Symbol: REG_
arch/x86/math-emu/get_address.c
232
cpu_reg_ptr = &REG_(rm);
arch/x86/math-emu/get_address.c
89
offset = REG_(base);
arch/x86/math-emu/get_address.c
97
offset += (REG_(index)) << ss;
arch/x86/um/os-Linux/mcontext.c
15
#define COPY2(X,Y) regs->gp[X] = mc->gregs[REG_##Y]
arch/x86/um/os-Linux/mcontext.c
16
#define COPY(X) regs->gp[X] = mc->gregs[REG_##X]
arch/x86/um/os-Linux/mcontext.c
17
#define COPY_SEG(X) regs->gp[X] = mc->gregs[REG_##X] & 0xffff;
arch/x86/um/os-Linux/mcontext.c
18
#define COPY_SEG_CPL3(X) regs->gp[X] = (mc->gregs[REG_##X] & 0xffff) | 3;
arch/x86/um/os-Linux/mcontext.c
29
#define COPY2(X,Y) regs->gp[X/sizeof(unsigned long)] = mc->gregs[REG_##Y]
arch/x86/um/os-Linux/mcontext.c
30
#define COPY(X) regs->gp[X/sizeof(unsigned long)] = mc->gregs[REG_##X]
arch/x86/um/os-Linux/mcontext.c
59
#define COPY2(X,Y) mc->gregs[REG_##Y] = regs->gp[X]
arch/x86/um/os-Linux/mcontext.c
60
#define COPY(X) mc->gregs[REG_##X] = regs->gp[X]
arch/x86/um/os-Linux/mcontext.c
61
#define COPY_SEG(X) mc->gregs[REG_##X] = regs->gp[X] & 0xffff;
arch/x86/um/os-Linux/mcontext.c
62
#define COPY_SEG_CPL3(X) mc->gregs[REG_##X] = (regs->gp[X] & 0xffff) | 3;
arch/x86/um/os-Linux/mcontext.c
69
#define COPY2(X,Y) mc->gregs[REG_##Y] = regs->gp[X/sizeof(unsigned long)]
arch/x86/um/os-Linux/mcontext.c
70
#define COPY(X) mc->gregs[REG_##X] = regs->gp[X/sizeof(unsigned long)]
drivers/net/wireless/realtek/rtw89/coex.c
9259
#define CASE_BTC_REGTYPE_STR(e) case REG_## e: return #e
drivers/thermal/renesas/rcar_thermal.c
169
#define rcar_thermal_read(p, r) _rcar_thermal_read(p, REG_ ##r)
drivers/thermal/renesas/rcar_thermal.c
175
#define rcar_thermal_write(p, r, d) _rcar_thermal_write(p, REG_ ##r, d)
drivers/thermal/renesas/rcar_thermal.c
182
#define rcar_thermal_bset(p, r, m, d) _rcar_thermal_bset(p, REG_ ##r, m, d)
drivers/usb/host/xhci-debugfs.h
76
.offset = REG_ ##nm, \
sound/soc/renesas/fsi.c
334
__fsi_reg_write((p->base + REG_##r), d)
sound/soc/renesas/fsi.c
337
__fsi_reg_read((p->base + REG_##r))
sound/soc/renesas/fsi.c
340
__fsi_reg_mask_set((p->base + REG_##r), m, d)