Home | History | Annotate | Download | only in bn

Lines Matching defs:depth

103 	/* Stack depth and allocation size */
124 unsigned int depth, size;
147 /* Depth of stack overflow */
171 while(fpidx < stack->depth)
315 st->depth = st->size = 0;
326 st->depth = 0;
332 if(st->depth == st->size)
340 if(st->depth)
341 memcpy(newitems, st->indexes, st->depth *
347 st->indexes[(st->depth)++] = idx;
353 return st->indexes[--(st->depth)];