Lines Matching defs:item
14 /* How many bignums are in each "pool item"; */
85 BN_POOL_ITEM *item = ctx->pool.head;
92 item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax);
94 item = item->next;
321 /* Full; allocate a new pool item and link it in. */
323 BN_POOL_ITEM *item;
325 if ((item = OPENSSL_malloc(sizeof(*item))) == NULL) {
329 for (loop = 0, bn = item->vals; loop++ < BN_CTX_POOL_SIZE; bn++) {
334 item->prev = p->tail;
335 item->next = NULL;
338 p->head = p->current = p->tail = item;
340 p->tail->next = item;
341 p->tail = item;
342 p->current = item;
347 return item->vals;