/src/bin/sh/ |
memalloc.c | 118 struct stack_block *stackp = &stackbase; variable in typeref:struct:stack_block * 139 sp->prev = stackp; 142 stackp = sp; 170 mark->stackp = stackp; 195 while (stackp != mark->stackp) { 197 sp = stackp; 198 stackp = sp->prev; 224 if (stacknxt == stackp->space && stackp != &stackbase) [all...] |
memalloc.h | 38 struct stack_block *stackp; member in struct:stackmark
|
/src/sys/compat/linux/arch/powerpc/ |
linux_exec_powerpc.c | 66 struct ps_strings *arginfo, char **stackp, 80 *stackp = (char *)(((unsigned long)*stackp - 1) & ~LINUX_SHIFT); 83 if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0) 92 *stackp = (char *)(((unsigned long)(*stackp) + LINUX_SHIFT) 174 if ((error = copyout(ai, *stackp, len)) != 0) 176 *stackp += len;
|
/src/sys/compat/netbsd32/ |
netbsd32_exec.h | 85 struct ps_strings *arginfo, char **stackp, void *argp) 87 uint32_t *cpp = (uint32_t *)*stackp; 135 *stackp = (char *)cpp;
|
netbsd32_exec_elf32.c | 135 struct ps_strings *arginfo, char **stackp, void *argp) 139 if ((error = netbsd32_copyargs(l, pack, arginfo, stackp, argp)) != 0) 142 return elf32_populate_auxv(l, pack, stackp);
|
/src/sys/external/bsd/compiler_rt/dist/lib/safestack/ |
safestack.cc | 183 thread_stack_ll **stackp = &temp_stacks; local in function:thread_cleanup_handler 184 while (*stackp) { 185 thread_stack_ll *stack = *stackp; 191 *stackp = stack->next; 194 stackp = &stack->next; 207 *stackp = thread_stacks;
|
/src/sys/compat/linux32/common/ |
linux32_exec_elf32.c | 113 struct ps_strings *arginfo, char **stackp, void *argp) 121 if ((error = netbsd32_copyargs(l, pack, arginfo, stackp, argp)) != 0) 124 esdp = (struct linux32_extra_stack_data *)(*stackp); /* userspace */ 245 *stackp += sizeof(esd);
|
/src/usr.bin/compress/ |
zopen.c | 167 #define stackp zs->u.r.zs_stackp macro 501 stackp = de_stack; 522 *stackp++ = finchar; 534 *stackp++ = tab_suffixof(code); 537 *stackp++ = finchar = tab_suffixof(code); 543 *bp++ = *--stackp; 544 } while (stackp > de_stack);
|
/src/sys/compat/linux/common/ |
linux_exec_aout.c | 81 struct ps_strings *arginfo, char **stackp, void *argp) 83 char **cpp = (char **)*stackp; 84 char **stk = (char **)*stackp; 127 *stackp = (char *)cpp;
|
linux_exec_elf32.c | 483 struct ps_strings *arginfo, char **stackp, void *argp) 492 if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0) 566 a->a_v = (Elf_Addr)(uintptr_t)*stackp; 579 if ((error = copyout(randbytes, *stackp, len)) != 0) 581 *stackp += len; 585 if ((error = copyout(ai, *stackp, len)) != 0) 587 *stackp += len;
|
/src/sys/compat/linux/arch/amd64/ |
linux_exec_machdep.c | 126 struct ps_strings *arginfo, char **stackp, void *argp) 138 if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0) 146 esdp = (struct linux_extra_stack_data64 *)(*stackp); 246 *stackp += sizeof(esd);
|
/src/sys/kern/ |
exec_elf.c | 156 elf_populate_auxv(struct lwp *l, struct exec_package *pack, char **stackp) 249 execname->a_v = (uintptr_t)(*stackp + vlen); 251 if ((error = copyout(path, (*stackp + vlen), len)) != 0) 258 if ((error = copyout(ai, *stackp, vlen)) != 0) 260 *stackp += vlen + len; 271 struct ps_strings *arginfo, char **stackp, void *argp) 275 if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0) 278 return elf_populate_auxv(l, pack, stackp);
|
kern_exec.c | 1737 char **stackp, void *argp) 1745 cpp = (char **)*stackp; 1805 *stackp = (char *)cpp;
|