Lines Matching refs:scalars
1667 * small point multiples 0*P, 1*P, ..., 17*P are in pre_comp[], the scalars
1668 * in scalars[]. If g_scalar is non-NULL, we also add this multiple of the
1673 const felem_bytearray scalars[],
1689 * Loop over all scalars msb-to-lsb, interleaving additions of multiples
1735 /* loop over all scalars */
1737 bits = get_bit(scalars[num], i + 4) << 5;
1738 bits |= get_bit(scalars[num], i + 3) << 4;
1739 bits |= get_bit(scalars[num], i + 2) << 3;
1740 bits |= get_bit(scalars[num], i + 1) << 2;
1741 bits |= get_bit(scalars[num], i) << 1;
1742 bits |= get_bit(scalars[num], i - 1);
2020 * Computes scalar*generator + \sum scalars[i]*points[i], ignoring NULL
2026 const BIGNUM *scalars[], BN_CTX *ctx)
2108 * we treat NULL scalars as 0, and NULL points as points at infinity,
2124 p_scalar = scalars[i];