Lines Matching refs:stack
66 // The stack frame info is resizing, set a first-time expansion size;
72 // A |BN_STACK| is a stack of |size_t| values.
76 // Number of stack frames, and the size of the allocated array
92 // bignums is the stack of |BIGNUM|s managed by this |BN_CTX|.
94 // stack is the stack of |BN_CTX_start| frames. It is the value of |used| at
96 BN_STACK stack;
117 BN_STACK_init(&ret->stack);
130 BN_STACK_cleanup(&ctx->stack);
136 // Once an operation has failed, |ctx->stack| no longer matches the number
141 if (!BN_STACK_push(&ctx->stack, ctx->used)) {
186 // Once an operation has failed, |ctx->stack| no longer matches the number
191 ctx->used = BN_STACK_pop(&ctx->stack);