Home | History | Annotate | Download | only in ec

Lines Matching full:scalars

1501  * small point multiples 0*P, 1*P, ..., 17*P are in pre_comp[], the scalars
1502 * in scalars[]. If g_scalar is non-NULL, we also add this multiple of the
1506 const felem_bytearray scalars[],
1519 /* Loop over all scalars msb-to-lsb, interleaving additions of multiples
1566 /* loop over all scalars */
1568 bits = get_bit(scalars[num], i + 4) << 5;
1569 bits |= get_bit(scalars[num], i + 3) << 4;
1570 bits |= get_bit(scalars[num], i + 2) << 3;
1571 bits |= get_bit(scalars[num], i + 1) << 2;
1572 bits |= get_bit(scalars[num], i) << 1;
1573 bits |= get_bit(scalars[num], i - 1);
1707 /* TODO: This function used to take |points| and |scalars| as arrays of
1712 BIGNUM const *const *scalars = p_ != NULL ? &p_scalar_ : NULL;
1764 /* we treat NULL scalars as 0, and NULL points as points at infinity,
1776 p_scalar = scalars[i];