Lines Matching refs:stack
16 /* The stack frame info is resizing, set a first-time expansion size; */
46 /* A wrapper to manage the "stack frames" */
48 /* Array of indexes into the bignum stack */
50 /* Number of stack frames, and the size of the allocated array */
66 /* The "stack frames", if you will */
67 BN_STACK stack;
70 /* Depth of stack overflow */
86 BN_STACK *stack = &ctx->stack;
99 while (fpidx < stack->depth) {
100 while (bnidx++ < stack->indexes[fpidx])
128 BN_STACK_init(&ret->stack);
164 "BN_CTX_free(): stack-size=%d, pool-bignums=%d\n",
165 ctx->stack.size, ctx->pool.size);
176 BN_STACK_finish(&ctx->stack);
188 else if (!BN_STACK_push(&ctx->stack, ctx->used)) {
203 unsigned int fp = BN_STACK_pop(&ctx->stack);
204 /* Does this stack frame have anything to release? */
224 * the error stack.