Home
last modified time | relevance | path

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

/freebsd-14.2/bin/sh/
H A Dmemalloc.c154 sp->prev = stackp; in stnewblock()
158 stackp = sp; in stnewblock()
206 mark->stackp = stackp; in setstackmark()
210 if (stackp != NULL && stacknxt == SPACE(stackp)) in setstackmark()
221 while (stackp != mark->stackp) { in popstackmark()
222 sp = stackp; in popstackmark()
223 stackp = sp->prev; in popstackmark()
269 if (stackp != NULL && stacknxt == SPACE(stackp)) { in growstackblock()
271 oldstackp = stackp; in growstackblock()
274 sp->prev = stackp; in growstackblock()
[all …]
H A Dmemalloc.h40 struct stack_block *stackp; member
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/safestack/
H A Dsafestack.cpp175 thread_stack_ll **stackp = &temp_stacks; in thread_cleanup_handler() local
176 while (*stackp) { in thread_cleanup_handler()
177 thread_stack_ll *stack = *stackp; in thread_cleanup_handler()
181 *stackp = stack->next; in thread_cleanup_handler()
184 stackp = &stack->next; in thread_cleanup_handler()
197 *stackp = thread_stacks; in thread_cleanup_handler()
/freebsd-14.2/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-14.2/usr.bin/compress/
H A Dzopen.c166 #define stackp zs->u.r.zs_stackp macro
508 stackp = de_stack; in zread()
529 *stackp++ = finchar; in zread()
541 *stackp++ = tab_suffixof(code); in zread()
544 *stackp++ = finchar = tab_suffixof(code); in zread()
550 *bp++ = *--stackp; in zread()
551 } while (stackp > de_stack); in zread()