Home
last modified time | relevance | path

Searched refs:stackp (Results 1 – 17 of 17) sorted by relevance

/netbsd-src/bin/sh/
H A Dmemalloc.c118 struct stack_block *stackp = &stackbase; variable
140 sp->prev = stackp; in stalloc()
143 stackp = sp; in stalloc()
171 mark->stackp = stackp; in setstackmark()
196 while (stackp != mark->stackp) { in rststackmark()
198 sp = stackp; in rststackmark()
199 stackp = sp->prev; in rststackmark()
225 if (stacknxt == stackp->space && stackp != &stackbase) { in growstackblock()
230 oldstackp = stackp; in growstackblock()
231 sp = stackp; in growstackblock()
[all …]
H A Dmemalloc.h38 struct stack_block *stackp; member
/netbsd-src/external/gpl3/gdb/dist/sim/ppc/
H A Dhw_memory.c249 int stackp = 0; in hw_memory_instance_claim() local
256 if (n_stack_args < stackp + 1) in hw_memory_instance_claim()
258 alignment = stack_args[stackp]; in hw_memory_instance_claim()
259 stackp++; in hw_memory_instance_claim()
265 if (n_stack_args < stackp + nr_cells) in hw_memory_instance_claim()
268 if (stack_args[stackp] != 0) in hw_memory_instance_claim()
270 stackp++; in hw_memory_instance_claim()
272 size = stack_args[stackp]; in hw_memory_instance_claim()
273 stackp++; in hw_memory_instance_claim()
280 if (n_stack_args != stackp) { in hw_memory_instance_claim()
[all …]
/netbsd-src/sys/compat/linux/arch/powerpc/
H A Dlinux_exec_powerpc.c66 struct ps_strings *arginfo, char **stackp, in ELFNAME2()
80 *stackp = (char *)(((unsigned long)*stackp - 1) & ~LINUX_SHIFT); in ELFNAME2()
83 if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0) in ELFNAME2()
92 *stackp = (char *)(((unsigned long)(*stackp) + LINUX_SHIFT) in ELFNAME2()
174 if ((error = copyout(ai, *stackp, len)) != 0) in ELFNAME2()
176 *stackp += len; in ELFNAME2()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/safestack/
H A Dsafestack.cc183 thread_stack_ll **stackp = &temp_stacks; in thread_cleanup_handler() local
184 while (*stackp) { in thread_cleanup_handler()
185 thread_stack_ll *stack = *stackp; in thread_cleanup_handler()
191 *stackp = stack->next; in thread_cleanup_handler()
194 stackp = &stack->next; in thread_cleanup_handler()
207 *stackp = thread_stacks; in thread_cleanup_handler()
/netbsd-src/sys/compat/netbsd32/
H A Dnetbsd32_exec_elf32.c135 struct ps_strings *arginfo, char **stackp, void *argp) in netbsd32_elf32_copyargs() argument
139 if ((error = netbsd32_copyargs(l, pack, arginfo, stackp, argp)) != 0) in netbsd32_elf32_copyargs()
142 return elf32_populate_auxv(l, pack, stackp); in netbsd32_elf32_copyargs()
H A Dnetbsd32_exec.h85 struct ps_strings *arginfo, char **stackp, void *argp) in netbsd32_copyargs() argument
87 uint32_t *cpp = (uint32_t *)*stackp; in netbsd32_copyargs()
135 *stackp = (char *)cpp; in netbsd32_copyargs()
/netbsd-src/sys/compat/linux32/common/
H A Dlinux32_exec_elf32.c113 struct ps_strings *arginfo, char **stackp, void *argp) in linux32_elf32_copyargs() argument
121 if ((error = netbsd32_copyargs(l, pack, arginfo, stackp, argp)) != 0) in linux32_elf32_copyargs()
124 esdp = (struct linux32_extra_stack_data *)(*stackp); /* userspace */ in linux32_elf32_copyargs()
245 *stackp += sizeof(esd); in linux32_elf32_copyargs()
/netbsd-src/usr.bin/compress/
H A Dzopen.c167 #define stackp zs->u.r.zs_stackp macro
501 stackp = de_stack; in zread()
522 *stackp++ = finchar; in zread()
534 *stackp++ = tab_suffixof(code); in zread()
537 *stackp++ = finchar = tab_suffixof(code); in zread()
543 *bp++ = *--stackp; in zread()
544 } while (stackp > de_stack); in zread()
/netbsd-src/sys/compat/linux/common/
H A Dlinux_exec_elf32.c483 struct ps_strings *arginfo, char **stackp, void *argp) in ELFNAME2()
492 if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0) in ELFNAME2()
566 a->a_v = (Elf_Addr)(uintptr_t)*stackp; in ELFNAME2()
579 if ((error = copyout(randbytes, *stackp, len)) != 0) in ELFNAME2()
581 *stackp += len; in ELFNAME2()
585 if ((error = copyout(ai, *stackp, len)) != 0) in ELFNAME2()
587 *stackp += len; in ELFNAME2()
H A Dlinux_exec_aout.c81 struct ps_strings *arginfo, char **stackp, void *argp) in linux_aout_copyargs() argument
83 char **cpp = (char **)*stackp; in linux_aout_copyargs()
84 char **stk = (char **)*stackp; in linux_aout_copyargs()
127 *stackp = (char *)cpp; in linux_aout_copyargs()
/netbsd-src/sys/compat/linux/arch/amd64/
H A Dlinux_exec_machdep.c126 struct ps_strings *arginfo, char **stackp, void *argp) in ELFNAME2()
138 if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0) in ELFNAME2()
146 esdp = (struct linux_extra_stack_data64 *)(*stackp); in ELFNAME2()
246 *stackp += sizeof(esd); in ELFNAME2()
/netbsd-src/sys/kern/
H A Dexec_elf.c156 elf_populate_auxv(struct lwp *l, struct exec_package *pack, char **stackp) in elf_populate_auxv()
249 execname->a_v = (uintptr_t)(*stackp + vlen); in elf_populate_auxv()
251 if ((error = copyout(path, (*stackp + vlen), len)) != 0) in elf_populate_auxv()
258 if ((error = copyout(ai, *stackp, vlen)) != 0) in elf_populate_auxv()
260 *stackp += vlen + len; in elf_populate_auxv()
271 struct ps_strings *arginfo, char **stackp, void *argp) in elf_copyargs()
275 if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0) in elf_copyargs()
278 return elf_populate_auxv(l, pack, stackp);
153 elf_populate_auxv(struct lwp * l,struct exec_package * pack,char ** stackp) elf_populate_auxv() argument
268 elf_copyargs(struct lwp * l,struct exec_package * pack,struct ps_strings * arginfo,char ** stackp,void * argp) elf_copyargs() argument
H A Dkern_exec.c1742 char **stackp, void *argp) in copyargs()
1750 cpp = (char **)*stackp; in copyargs()
1810 *stackp = (char *)cpp; in copyargs()
1741 copyargs(struct lwp * l,struct exec_package * pack,struct ps_strings * arginfo,char ** stackp,void * argp) copyargs() argument
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dread-md.c1065 struct file_name_list *stackp; in handle_include() local
1068 for (stackp = m_first_dir_md_include; stackp; stackp = stackp->next) in handle_include()
1072 pathname = concat (stackp->fname, sep, filename, NULL); in handle_include()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dread-md.cc1078 struct file_name_list *stackp; in handle_include() local
1081 for (stackp = m_first_dir_md_include; stackp; stackp = stackp->next) in handle_include()
1085 pathname = concat (stackp->fname, sep, filename, NULL); in handle_include()
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/sh/
H A Dtestutils.inc25 start: mov.l stackp, r15
29 stackp: .long stackt