Searched refs:stackp (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/bin/sh/
H A Dmemalloc.c129 static struct stack_block *stackp; variable in typeref:struct:stack_block
148 sp->prev = stackp;
152 stackp = sp;
200 mark->stackp = stackp;
204 if (stackp != NULL && stacknxt == SPACE(stackp))
215 while (stackp != mark->stackp) {
216 sp = stackp;
[all...]
H A Dmemalloc.h38 struct stack_block *stackp; member in struct:stackmark
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_compress.c129 unsigned char *stackp; member in struct:private_data
254 state->stackp = state->stack;
289 if (state->stackp > state->stack) {
290 *p++ = *--state->stackp;
376 *state->stackp++ = state->finbyte;
382 *state->stackp++ = state->suffix[code];
385 *state->stackp++ = state->finbyte = code;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/safestack/
H A Dsafestack.cpp175 thread_stack_ll **stackp = &temp_stacks; local
176 while (*stackp) {
177 thread_stack_ll *stack = *stackp;
181 *stackp = stack->next;
184 stackp = &stack->next;
197 *stackp = thread_stacks;
/freebsd-current/usr.bin/compress/
H A Dzopen.c163 #define stackp zs->u.r.zs_stackp macro
505 stackp = de_stack;
526 *stackp++ = finchar;
538 *stackp++ = tab_suffixof(code);
541 *stackp++ = finchar = tab_suffixof(code);
547 *bp++ = *--stackp;
548 } while (stackp > de_stack);

Completed in 142 milliseconds