Lines Matching refs:top
114 /* compensate for the top two bits of a */
207 /* compensate for the top three bits of a */
261 if (a->top < b->top) {
269 if (bn_wexpand(r, at->top) == NULL)
272 for (i = 0; i < bt->top; i++) {
275 for (; i < at->top; i++) {
279 r->top = at->top;
312 if (!bn_wexpand(r, a->top))
314 for (j = 0; j < a->top; j++) {
317 r->top = a->top;
323 for (j = r->top - 1; j > dN;) {
360 /* clear up the top d1 bits */
429 zlen = a->top + b->top + 4;
432 s->top = zlen;
437 for (j = 0; j < b->top; j += 2) {
439 y1 = ((j + 1) == b->top) ? 0 : b->d[j + 1];
440 for (i = 0; i < a->top; i += 2) {
442 x1 = ((i + 1) == a->top) ? 0 : a->d[i + 1];
505 if (!bn_wexpand(s, 2 * a->top))
508 for (i = a->top - 1; i >= 0; i--) {
513 s->top = 2 * a->top;
627 int top = p->top;
630 if (!bn_wexpand(u, top))
633 for (i = u->top; i < top; i++)
635 u->top = top;
636 if (!bn_wexpand(b, top))
640 for (i = 1; i < top; i++)
642 b->top = top;
643 if (!bn_wexpand(c, top))
646 for (i = 0; i < top; i++)
648 c->top = top;
661 for (i = 0; i < top - 1; i++) {
696 for (i = 0; i < top; i++) {
1160 for (i = a->top - 1; i >= 0; i--) {