Lines Matching defs:pool
14 /* How many bignums are in each "pool item"; */
65 BN_POOL pool;
85 BN_POOL_ITEM *item = ctx->pool.head;
127 BN_POOL_init(&ret->pool);
162 BN_POOL_ITEM *pool = ctx->pool.head;
164 "BN_CTX_free(): stack-size=%d, pool-bignums=%d\n",
165 ctx->stack.size, ctx->pool.size);
167 while (pool) {
170 BIO_printf(trc_out, "%02x ", pool->vals[loop++].dmax);
171 pool = pool->next;
177 BN_POOL_finish(&ctx->pool);
206 BN_POOL_release(&ctx->pool, ctx->used - fp);
221 if ((ret = BN_POOL_get(&ctx->pool, ctx->flags)) == NULL) {
321 /* Full; allocate a new pool item and link it in. */
346 /* Return the first bignum from the new pool */