Searched refs:stackp (Results 1 - 22 of 22) sorted by last modified time

/netbsd-current/sys/kern/
H A Dkern_exec.c1741 char **stackp, void *argp)
1749 cpp = (char **)*stackp;
1809 *stackp = (char *)cpp;
1740 copyargs(struct lwp *l, struct exec_package *pack, struct ps_strings *arginfo, char **stackp, void *argp) argument
H A Dexec_elf.c153 elf_populate_auxv(struct lwp *l, struct exec_package *pack, char **stackp) argument
246 execname->a_v = (uintptr_t)(*stackp + vlen);
248 if ((error = copyout(path, (*stackp + vlen), len)) != 0)
255 if ((error = copyout(ai, *stackp, vlen)) != 0)
257 *stackp += vlen + len;
268 struct ps_strings *arginfo, char **stackp, void *argp)
272 if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0)
275 return elf_populate_auxv(l, pack, stackp);
267 elf_copyargs(struct lwp *l, struct exec_package *pack, struct ps_strings *arginfo, char **stackp, void *argp) argument
/netbsd-current/external/gpl3/gdb/dist/sim/rx/
H A Dsyscalls.c69 int argp, stackp; variable
80 rv = mem_get_si (get_reg (sp) + stackp);
81 stackp += 4;
147 stackp = 4;
/netbsd-current/external/gpl3/gdb/dist/sim/ppc/
H A Dhw_memory.c249 int stackp = 0; local
256 if (n_stack_args < stackp + 1)
258 alignment = stack_args[stackp];
259 stackp++;
265 if (n_stack_args < stackp + nr_cells)
268 if (stack_args[stackp] != 0)
270 stackp++;
272 size = stack_args[stackp];
273 stackp++;
280 if (n_stack_args != stackp) {
405 int stackp = 0; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/sim/m32c/
H A Dsyscalls.c61 int argp, stackp; variable
101 rv = mem_get_qi (get_reg (sp) + stackp);
103 stackp++;
106 rv = mem_get_hi (get_reg (sp) + stackp);
109 rv = mem_get_psi (get_reg (sp) + stackp);
111 stackp++;
114 rv = mem_get_si (get_reg (sp) + stackp);
117 stackp += bytes;
183 stackp = A16 ? 3 : 4;
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dread-md.cc1078 struct file_name_list *stackp; local
1081 for (stackp = m_first_dir_md_include; stackp; stackp = stackp->next)
1085 pathname = concat (stackp->fname, sep, filename, NULL);
/netbsd-current/bin/sh/
H A Dmemalloc.c118 struct stack_block *stackp = &stackbase; variable in typeref:struct:stack_block
140 sp->prev = stackp;
143 stackp = sp;
171 mark->stackp = stackp;
196 while (stackp != mark->stackp) {
198 sp = stackp;
199 stackp = sp->prev;
225 if (stacknxt == stackp
[all...]
H A Dmemalloc.h38 struct stack_block *stackp; member in struct:stackmark
/netbsd-current/external/gpl3/gdb.old/dist/sim/rx/
H A Dsyscalls.c69 int argp, stackp; variable
80 rv = mem_get_si (get_reg (sp) + stackp);
81 stackp += 4;
147 stackp = 4;
/netbsd-current/external/gpl3/gdb.old/dist/sim/m32c/
H A Dsyscalls.c60 int argp, stackp; variable
100 rv = mem_get_qi (get_reg (sp) + stackp);
102 stackp++;
105 rv = mem_get_hi (get_reg (sp) + stackp);
108 rv = mem_get_psi (get_reg (sp) + stackp);
110 stackp++;
113 rv = mem_get_si (get_reg (sp) + stackp);
116 stackp += bytes;
182 stackp = A16 ? 3 : 4;
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dread-md.c1065 struct file_name_list *stackp; local
1068 for (stackp = m_first_dir_md_include; stackp; stackp = stackp->next)
1072 pathname = concat (stackp->fname, sep, filename, NULL);
/netbsd-current/usr.bin/compress/
H A Dzopen.c167 #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);
/netbsd-current/sys/compat/linux32/common/
H A Dlinux32_exec_elf32.c113 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);
112 linux32_elf32_copyargs(struct lwp *l, struct exec_package *pack, struct ps_strings *arginfo, char **stackp, void *argp) argument
/netbsd-current/sys/compat/linux/common/
H A Dlinux_exec_elf32.c483 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;
H A Dlinux_exec_aout.c81 struct ps_strings *arginfo, char **stackp, void *argp)
83 char **cpp = (char **)*stackp;
84 char **stk = (char **)*stackp;
127 *stackp = (char *)cpp;
80 linux_aout_copyargs(struct lwp *l, struct exec_package *pack, struct ps_strings *arginfo, char **stackp, void *argp) argument
/netbsd-current/sys/compat/netbsd32/
H A Dnetbsd32_exec.h85 struct ps_strings *arginfo, char **stackp, void *argp)
87 uint32_t *cpp = (uint32_t *)*stackp;
135 *stackp = (char *)cpp;
84 netbsd32_copyargs(struct lwp *l, struct exec_package *pack, struct ps_strings *arginfo, char **stackp, void *argp) argument
H A Dnetbsd32_exec_elf32.c135 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);
134 netbsd32_elf32_copyargs(struct lwp *l, struct exec_package *pack, struct ps_strings *arginfo, char **stackp, void *argp) argument
/netbsd-current/sys/compat/linux/arch/powerpc/
H A Dlinux_exec_powerpc.c66 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;
/netbsd-current/external/gpl3/gdb.old/dist/sim/ppc/
H A Dhw_memory.c246 int stackp = 0; local
253 if (n_stack_args < stackp + 1)
255 alignment = stack_args[stackp];
256 stackp++;
262 if (n_stack_args < stackp + nr_cells)
265 if (stack_args[stackp] != 0)
267 stackp++;
269 size = stack_args[stackp];
270 stackp++;
277 if (n_stack_args != stackp) {
402 int stackp = 0; local
[all...]
/netbsd-current/sys/compat/linux/arch/amd64/
H A Dlinux_exec_machdep.c126 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);
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/safestack/
H A Dsafestack.cc183 thread_stack_ll **stackp = &temp_stacks; local
184 while (*stackp) {
185 thread_stack_ll *stack = *stackp;
191 *stackp = stack->next;
194 stackp = &stack->next;
207 *stackp = thread_stacks;
/netbsd-current/external/bsd/libarchive/dist/libarchive/
H A Darchive_read_support_filter_compress.c130 unsigned char *stackp; member in struct:private_data
258 state->stackp = state->stack;
293 if (state->stackp > state->stack) {
294 *p++ = *--state->stackp;
390 *state->stackp++ = state->finbyte;
396 *state->stackp++ = state->suffix[code];
399 *state->stackp++ = state->finbyte = code;

Completed in 523 milliseconds