Home
last modified time | relevance | path

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

/NextBSD/bin/sh/
HDmemalloc.c128 static struct stack_block *stackp; variable
147 sp->prev = stackp; in stnewblock()
151 stackp = sp; in stnewblock()
199 mark->stackp = stackp; in setstackmark()
203 if (stackp != NULL && stacknxt == SPACE(stackp)) in setstackmark()
214 while (stackp != mark->stackp) { in popstackmark()
215 sp = stackp; in popstackmark()
216 stackp = sp->prev; in popstackmark()
259 if (stackp != NULL && stacknxt == SPACE(stackp)) { in growstackblock()
261 oldstackp = stackp; in growstackblock()
[all …]
HDmemalloc.h39 struct stack_block *stackp; member
/NextBSD/contrib/libarchive/libarchive/
HDarchive_read_support_filter_compress.c130 unsigned char *stackp; member
249 state->stackp = state->stack; in compress_bidder_init()
284 if (state->stackp > state->stack) { in compress_filter_read()
285 *p++ = *--state->stackp; in compress_filter_read()
380 *state->stackp++ = state->finbyte; in next_code()
386 *state->stackp++ = state->suffix[code]; in next_code()
389 *state->stackp++ = state->finbyte = code; in next_code()
/NextBSD/usr.bin/compress/
HDzopen.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()
/NextBSD/contrib/gcc/
HDgensupport.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()