Lines Matching refs:scalars
1577 * small point multiples 0*P, 1*P, ..., 16*P are in pre_comp[], the scalars
1578 * in scalars[]. If g_scalar is non-NULL, we also add this multiple of the
1583 const felem_bytearray scalars[],
1598 * Loop over all scalars msb-to-lsb, interleaving additions of multiples
1631 /* loop over all scalars */
1633 bits = get_bit(scalars[num], i + 4) << 5;
1634 bits |= get_bit(scalars[num], i + 3) << 4;
1635 bits |= get_bit(scalars[num], i + 2) << 3;
1636 bits |= get_bit(scalars[num], i + 1) << 2;
1637 bits |= get_bit(scalars[num], i) << 1;
1638 bits |= get_bit(scalars[num], i - 1);
1913 * Computes scalar*generator + \sum scalars[i]*points[i], ignoring NULL
1919 const BIGNUM *scalars[], BN_CTX *ctx)
2001 * we treat NULL scalars as 0, and NULL points as points at infinity,
2015 p_scalar = scalars[i];