Home
last modified time | relevance | path

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

/minix3/bin/sh/
H A Dmemalloc.c116 struct stack_block *stackp = &stackbase; variable
138 sp->prev = stackp; in stalloc()
141 stackp = sp; in stalloc()
167 mark->stackp = stackp; in setstackmark()
182 while (stackp != mark->stackp) { in popstackmark()
183 sp = stackp; in popstackmark()
184 stackp = sp->prev; in popstackmark()
208 if (stacknxt == stackp->space && stackp != &stackbase) { in growstackblock()
214 oldstackp = stackp; in growstackblock()
215 sp = stackp; in growstackblock()
[all …]
H A Dmemalloc.h38 struct stack_block *stackp; member
/minix3/external/bsd/libarchive/dist/libarchive/
H A Darchive_read_support_compression_compress.c129 unsigned char *stackp; member
242 state->stackp = state->stack; in compress_bidder_init()
277 if (state->stackp > state->stack) { in compress_filter_read()
278 *p++ = *--state->stackp; in compress_filter_read()
373 *state->stackp++ = state->finbyte; in next_code()
379 *state->stackp++ = state->suffix[code]; in next_code()
382 *state->stackp++ = state->finbyte = code; in next_code()
/minix3/minix/commands/compress/
H A Dcompress.c1035 REGISTER char_type *stackp; local
1055 stackp = de_stack;
1072 *stackp++ = finchar;
1084 *stackp++ = tab_suffixof(code);
1087 *stackp++ = finchar = tab_suffixof(code);
1093 putc ( *--stackp ,stdout);
1094 while ( stackp > de_stack );
/minix3/minix/tests/
H A Dtest59.c605 int *stackp; in test_attributes() local
727 stackp = stackaddr; in test_attributes()
730 stackp[i] = MAGIC; in test_attributes()
744 if (stackp[0] != MAGIC) err(11, 66); /* End of the stack */ in test_attributes()
746 if (stackp[i] != MAGIC) stack_untouched = 0; in test_attributes()
748 if (stackp[no_ints / 2] != 0) err(11, 68);/*Zero half way through the stack*/ in test_attributes()