Home
last modified time | relevance | path

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

/freebsd-12.1/bin/sh/
H A Dmemalloc.c149 sp->prev = stackp; in stnewblock()
153 stackp = sp; in stnewblock()
201 mark->stackp = stackp; in setstackmark()
205 if (stackp != NULL && stacknxt == SPACE(stackp)) in setstackmark()
216 while (stackp != mark->stackp) { in popstackmark()
217 sp = stackp; in popstackmark()
218 stackp = sp->prev; in popstackmark()
261 if (stackp != NULL && stacknxt == SPACE(stackp)) { in growstackblock()
263 oldstackp = stackp; in growstackblock()
266 sp->prev = stackp; in growstackblock()
[all …]
H A Dmemalloc.h41 struct stack_block *stackp; member
/freebsd-12.1/contrib/compiler-rt/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()
/freebsd-12.1/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_compress.c130 unsigned char *stackp; member
258 state->stackp = state->stack; in compress_bidder_init()
293 if (state->stackp > state->stack) { in compress_filter_read()
294 *p++ = *--state->stackp; in compress_filter_read()
390 *state->stackp++ = state->finbyte; in next_code()
396 *state->stackp++ = state->suffix[code]; in next_code()
399 *state->stackp++ = state->finbyte = code; in next_code()
/freebsd-12.1/usr.bin/compress/
H A Dzopen.c168 #define stackp zs->u.r.zs_stackp macro
510 stackp = de_stack; in zread()
531 *stackp++ = finchar; in zread()
543 *stackp++ = tab_suffixof(code); in zread()
546 *stackp++ = finchar = tab_suffixof(code); in zread()
552 *bp++ = *--stackp; in zread()
553 } while (stackp > de_stack); in zread()
/freebsd-12.1/contrib/gcc/
H A Dgensupport.c216 struct file_name_list *stackp; in process_include() local
219 for (stackp = first_dir_md_include; stackp; stackp = stackp->next) in process_include()
223 pathname = concat (stackp->fname, sep, filename, NULL); in process_include()