Lines Matching refs:index
59 stack->position.index = -1;
93 stack->position.index = -1;
103 if (stack->position.index < 0) return(stack->error);
104 else return(stack->position.block->stack[stack->position.index]);
116 if (++stack->position.index >= stack->size)
131 stack->position.index = 0;
133 stack->position.block->stack[stack->position.index] = value;
152 if (stack->position.index < 0) return(-1);
153 else if (--stack->position.index < 0)
157 stack->position.index = stack->size - 1;