Lines Matching refs:top
458 } else if (D->top == 1) {
547 * since access to top potentially leaks this information.
553 int i, j, top, rlen, glen, m, bit = 1, delta = 1, cond = 0, shifts = 0, ret = 0;
598 top = 1 + ((r->top >= g->top) ? r->top : g->top);
599 if (bn_wexpand(r, top) == NULL
600 || bn_wexpand(g, top) == NULL
601 || bn_wexpand(temp, top) == NULL)
605 BN_consttime_swap((~r->d[0]) & 1, r, g, top);
615 /* make sure g->top > 0 (i.e. if top == 0 then g == 0 always) */
616 & (~((g->top - 1) >> (sizeof(g->top) * 8 - 1)));
620 BN_consttime_swap(cond, r, g, top);
627 /* make sure g->top > 0 (i.e. if top == 0 then g == 0 always) */
628 & (~((g->top - 1) >> (sizeof(g->top) * 8 - 1))),
629 g, temp, top);