Lines Matching defs:ucp
52 makecontext(ucontext_t *ucp, void (*func)(), int argc, ...)
62 ucp->uc_mcontext.gregs[REG_PC] = (greg_t)func;
72 sp = (long *)(((uintptr_t)ucp->uc_stack.ss_sp +
73 ucp->uc_stack.ss_size - size) & ~(STACK_ENTRY_ALIGN - 1));
86 ucp->uc_mcontext.gregs[REG_RDI] = tmp;
89 ucp->uc_mcontext.gregs[REG_RSI] = tmp;
92 ucp->uc_mcontext.gregs[REG_RDX] = tmp;
95 ucp->uc_mcontext.gregs[REG_RCX] = tmp;
98 ucp->uc_mcontext.gregs[REG_R8] = tmp;
101 ucp->uc_mcontext.gregs[REG_R9] = tmp;
113 ucp->uc_mcontext.gregs[REG_SP] = (greg_t)sp;