Home | History | Annotate | Download | only in runtime

Lines Matching full:uint32

15 func (c *sigctxt) eax() uint32      { return c.regs().__gregs[_REG_EAX] }
16 func (c *sigctxt) ebx() uint32 { return c.regs().__gregs[_REG_EBX] }
17 func (c *sigctxt) ecx() uint32 { return c.regs().__gregs[_REG_ECX] }
18 func (c *sigctxt) edx() uint32 { return c.regs().__gregs[_REG_EDX] }
19 func (c *sigctxt) edi() uint32 { return c.regs().__gregs[_REG_EDI] }
20 func (c *sigctxt) esi() uint32 { return c.regs().__gregs[_REG_ESI] }
21 func (c *sigctxt) ebp() uint32 { return c.regs().__gregs[_REG_EBP] }
22 func (c *sigctxt) esp() uint32 { return c.regs().__gregs[_REG_UESP] }
23 func (c *sigctxt) eip() uint32 { return c.regs().__gregs[_REG_EIP] }
24 func (c *sigctxt) eflags() uint32 { return c.regs().__gregs[_REG_EFL] }
25 func (c *sigctxt) cs() uint32 { return uint32(c.regs().__gregs[_REG_CS]) }
26 func (c *sigctxt) fs() uint32 { return uint32(c.regs().__gregs[_REG_FS]) }
27 func (c *sigctxt) gs() uint32 { return uint32(c.regs().__gregs[_REG_GS]) }
28 func (c *sigctxt) sigcode() uint32 { return uint32(c.info._code) }
29 func (c *sigctxt) sigaddr() uint32 {
30 return uint32(*(*uint32)(unsafe.Pointer(&c.info._reason[0])))
33 func (c *sigctxt) set_eip(x uint32) { c.regs().__gregs[_REG_EIP] = x }
34 func (c *sigctxt) set_esp(x uint32) { c.regs().__gregs[_REG_UESP] = x }
35 func (c *sigctxt) set_sigcode(x uint32) { c.info._code = int32(x) }
36 func (c *sigctxt) set_sigaddr(x uint32) {
37 *(*uint32)(unsafe.Pointer(&c.info._reason[0])) = x