Lines Matching defs:bits
120 * 128 bits and the field element represented is:
123 * 58 bits apart, but are greater than 58 bits in length, the most significant
124 * bits of each limb overlap with the least significant bits of the next.
350 * digit number with all bits set to 1. See "The representation of field
353 * with 58 bits set and one limb with a number with 57 bits set.
859 * felem_is_zero returns a limb with all bits set if |in| == 0 (mod p) and 0
1405 * index | bits | point
1424 * The reason for this is so that we can clock bits into four different
1591 limb bits;
1611 bits = get_bit(g_scalar, i + 390) << 3;
1613 bits |= get_bit(g_scalar, i + 260) << 2;
1614 bits |= get_bit(g_scalar, i + 130) << 1;
1615 bits |= get_bit(g_scalar, i);
1618 select_point(bits, 16, g_pre_comp, tmp);
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);
1639 ossl_ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits);