Lines Matching refs:pool
65 BN_POOL pool; member
85 BN_POOL_ITEM *item = ctx->pool.head; in ctxdbg()
127 BN_POOL_init(&ret->pool); in BN_CTX_new_ex()
162 BN_POOL_ITEM *pool = ctx->pool.head; in BN_CTX_free() local
165 ctx->stack.size, ctx->pool.size); in BN_CTX_free()
167 while (pool) { in BN_CTX_free()
170 BIO_printf(trc_out, "%02x ", pool->vals[loop++].dmax); in BN_CTX_free()
171 pool = pool->next; in BN_CTX_free()
177 BN_POOL_finish(&ctx->pool); in BN_CTX_free()
206 BN_POOL_release(&ctx->pool, ctx->used - fp); in BN_CTX_end()
221 if ((ret = BN_POOL_get(&ctx->pool, ctx->flags)) == NULL) { in BN_CTX_get()