Home
last modified time | relevance | path

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

/freebsd/bin/sh/
H A Dmemalloc.c129 static struct stack_block *stackp; variable
148 sp->prev = stackp; in stnewblock()
152 stackp = sp; in stnewblock()
200 mark->stackp = stackp; in setstackmark()
204 if (stackp != NULL && stacknxt == SPACE(stackp)) in setstackmark()
215 while (stackp != mark->stackp) { in popstackmark()
216 sp = stackp; in popstackmark()
217 stackp = sp->prev; in popstackmark()
263 if (stackp != NULL && stacknxt == SPACE(stackp)) { in growstackblock()
265 oldstackp = stackp; in growstackblock()
[all …]
H A Dmemalloc.h38 struct stack_block *stackp; member
/freebsd/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_compress.c129 unsigned char *stackp; member
254 state->stackp = state->stack; in compress_bidder_init()
289 if (state->stackp > state->stack) { in compress_filter_read()
290 *p++ = *--state->stackp; in compress_filter_read()
376 *state->stackp++ = state->finbyte; in next_code()
382 *state->stackp++ = state->suffix[code]; in next_code()
385 *state->stackp++ = state->finbyte = code; in next_code()
/freebsd/contrib/llvm-project/compiler-rt/lib/safestack/
H A Dsafestack.cpp200 thread_stack_ll **stackp = &temp_stacks; in thread_cleanup_handler() local
201 while (*stackp) { in thread_cleanup_handler()
202 thread_stack_ll *stack = *stackp; in thread_cleanup_handler()
206 *stackp = stack->next; in thread_cleanup_handler()
209 stackp = &stack->next; in thread_cleanup_handler()
222 *stackp = thread_stacks; in thread_cleanup_handler()
/freebsd/usr.bin/compress/
H A Dzopen.c163 #define stackp zs->u.r.zs_stackp macro
505 stackp = de_stack; in zread()
526 *stackp++ = finchar; in zread()
538 *stackp++ = tab_suffixof(code); in zread()
541 *stackp++ = finchar = tab_suffixof(code); in zread()
547 *bp++ = *--stackp; in zread()
548 } while (stackp > de_stack); in zread()