Home | History | Annotate | Download | only in bn

Lines Matching refs:used

22  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
83 unsigned used, size;
117 unsigned int used;
134 ret->used = 0;
154 } else if (!BN_STACK_push(&ctx->stack, ctx->used)) {
178 ctx->used++;
188 if (fp < ctx->used) {
189 BN_POOL_release(&ctx->pool, ctx->used - fp);
192 ctx->used = fp;
238 p->used = p->size = 0;
254 if (p->used == p->size) {
277 p->used++;
282 if (!p->used) {
284 } else if ((p->used % BN_CTX_POOL_SIZE) == 0) {
288 return p->current->vals + ((p->used++) % BN_CTX_POOL_SIZE);
292 unsigned int offset = (p->used - 1) % BN_CTX_POOL_SIZE;
293 p->used -= num;