Home | History | Annotate | Download | only in bn

Lines Matching full:used

23  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
104 unsigned used, size;
146 unsigned int used;
162 while(bnidx < ctx->used)
197 /* This function is an evil legacy and should not be used. This implementation
208 ctx->used = 0;
225 ret->used = 0;
262 else if(!BN_STACK_push(&ctx->stack, ctx->used))
279 if(fp < ctx->used)
280 BN_POOL_release(&ctx->pool, ctx->used - fp);
281 ctx->used = fp;
303 ctx->used++;
363 p->used = p->size = 0;
399 p->used = 0;
405 if(p->used == p->size)
427 p->used++;
431 if(!p->used)
433 else if((p->used % BN_CTX_POOL_SIZE) == 0)
435 return p->current->vals + ((p->used++) % BN_CTX_POOL_SIZE);
440 unsigned int offset = (p->used - 1) % BN_CTX_POOL_SIZE;
441 p->used -= num;