Home | History | Annotate | Download | only in bn

Lines Matching refs:dmax

265 		OPENSSL_cleanse(a->d,a->dmax*sizeof(a->d[0]));
310 ret->dmax=0;
317 /* The caller MUST check that words > b->dmax before calling this */
401 * words <= b->dmax && top < words
402 * because BN_dup() does not preserve 'dmax'!
406 if (words > b->dmax)
416 r->dmax = words;
449 if (words > b->dmax)
455 b->dmax=words;
461 if (b->top < b->dmax)
465 for (i=(b->dmax - b->top)>>3; i>0; i--,A+=8)
470 for (i=(b->dmax - b->top)&7; i>0; i--,A++)
472 assert(A == &(b->d[b->dmax]));
548 tmp_dmax = a->dmax;
553 a->dmax = b->dmax;
558 b->dmax = tmp_dmax;
571 memset(a->d,0,a->dmax*sizeof(a->d[0]));