HomeSort by: relevance | last modified time | path
    Searched defs:stackp (Results 1 - 4 of 4) sorted by relevancy

  /src/bin/sh/
memalloc.h 38 struct stack_block *stackp; member in struct:stackmark
memalloc.c 118 struct stack_block *stackp = &stackbase; variable in typeref:struct:stack_block *
139 sp->prev = stackp;
142 stackp = sp;
170 mark->stackp = stackp;
195 while (stackp != mark->stackp) {
197 sp = stackp;
198 stackp = sp->prev;
224 if (stacknxt == stackp->space && stackp != &stackbase)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/safestack/
safestack.cc 183 thread_stack_ll **stackp = &temp_stacks; local in function:thread_cleanup_handler
184 while (*stackp) {
185 thread_stack_ll *stack = *stackp;
191 *stackp = stack->next;
194 stackp = &stack->next;
207 *stackp = thread_stacks;
  /src/usr.bin/compress/
zopen.c 167 #define stackp zs->u.r.zs_stackp macro
501 stackp = de_stack;
522 *stackp++ = finchar;
534 *stackp++ = tab_suffixof(code);
537 *stackp++ = finchar = tab_suffixof(code);
543 *bp++ = *--stackp;
544 } while (stackp > de_stack);

Completed in 14 milliseconds