Searched refs:csp (Results 1 – 4 of 4) sorted by relevance
/linux-2.4.37.9/arch/sparc64/kernel/ |
D | process.c | 486 static unsigned long clone_stackframe(unsigned long csp, unsigned long psp) in clone_stackframe() argument 491 csp += STACK_BIAS; in clone_stackframe() 502 csp &= ~7UL; in clone_stackframe() 505 rval = (csp - distance); in clone_stackframe() 509 if (put_user(((u32)csp), &(((struct reg_window32 *)rval)->ins[6]))) in clone_stackframe() 512 if (put_user(((u64)csp - STACK_BIAS), in clone_stackframe() 648 unsigned long csp; in copy_thread() local 650 csp = clone_stackframe(sp, regs->u_regs[UREG_FP]); in copy_thread() 651 if (!csp) in copy_thread() 653 t->kregs->u_regs[UREG_FP] = csp; in copy_thread()
|
/linux-2.4.37.9/fs/ |
D | binfmt_elf.c | 125 elf_addr_t *sp, *csp; in create_elf_tables() local 168 csp = sp; in create_elf_tables() 169 csp -= (1+DLINFO_ITEMS)*2 + (k_platform ? 2 : 0); in create_elf_tables() 171 csp -= DLINFO_ARCH_ITEMS*2; in create_elf_tables() 173 csp -= envc+1; in create_elf_tables() 174 csp -= argc+1; in create_elf_tables() 175 csp -= (!ibcs ? 3 : 1); /* argc itself */ in create_elf_tables() 176 if ((unsigned long)csp & 15UL) in create_elf_tables() 177 sp -= ((unsigned long)csp & 15UL) / sizeof(*sp); in create_elf_tables()
|
/linux-2.4.37.9/arch/mips/kernel/ |
D | irixelf.c | 163 elf_addr_t *sp, *csp; in create_irix_tables() local 171 csp = sp; in create_irix_tables() 172 csp -= exec ? DLINFO_ITEMS*2 : 2; in create_irix_tables() 173 csp -= envc+1; in create_irix_tables() 174 csp -= argc+1; in create_irix_tables() 175 csp -= 1; /* argc itself */ in create_irix_tables() 176 if ((unsigned long)csp & 15UL) { in create_irix_tables() 177 sp -= (16UL - ((unsigned long)csp & 15UL)) / sizeof(*sp); in create_irix_tables()
|
/linux-2.4.37.9/arch/i386/kernel/ |
D | vm86.c | 517 unsigned char *csp, *ssp, opcode; in handle_vm86_fault() local 529 csp = (unsigned char *) (regs->cs << 4); in handle_vm86_fault() 537 switch (opcode = popb(csp, ip, simulate_sigsegv)) { in handle_vm86_fault() 589 int intno=popb(csp, ip, simulate_sigsegv); in handle_vm86_fault()
|