Symbol: BN_is_bit_set
crypto/openssh/dh.c
268
if (BN_is_bit_set(dh_pub, i))
crypto/openssh/regress/unittests/bitmap/tests.c
103
ASSERT_INT_EQ(BN_is_bit_set(bn, n),
crypto/openssh/regress/unittests/bitmap/tests.c
127
ASSERT_INT_EQ(BN_is_bit_set(bn, n),
crypto/openssh/regress/unittests/bitmap/tests.c
71
ASSERT_INT_EQ(BN_is_bit_set(bn, n),
crypto/openssl/crypto/bn/bn_exp.c
1259
if (BN_is_bit_set(p, b)) {
crypto/openssl/crypto/bn/bn_exp.c
1384
if (BN_is_bit_set(p, wstart) == 0) {
crypto/openssl/crypto/bn/bn_exp.c
1403
if (BN_is_bit_set(p, wstart - i)) {
crypto/openssl/crypto/bn/bn_exp.c
258
if (BN_is_bit_set(p, wstart) == 0) {
crypto/openssl/crypto/bn/bn_exp.c
277
if (BN_is_bit_set(p, wstart - i)) {
crypto/openssl/crypto/bn/bn_exp.c
414
if (BN_is_bit_set(p, wstart) == 0) {
crypto/openssl/crypto/bn/bn_exp.c
434
if (BN_is_bit_set(p, wstart - i)) {
crypto/openssl/crypto/bn/bn_exp.c
82
if (BN_is_bit_set(p, i)) {
crypto/openssl/crypto/bn/bn_exp2.c
140
if (BN_is_bit_set(p1, b)) {
crypto/openssl/crypto/bn/bn_exp2.c
145
while (!BN_is_bit_set(p1, i)) /* works for i<0 */
crypto/openssl/crypto/bn/bn_exp2.c
151
if (BN_is_bit_set(p1, i))
crypto/openssl/crypto/bn/bn_exp2.c
157
if (BN_is_bit_set(p2, b)) {
crypto/openssl/crypto/bn/bn_exp2.c
162
while (!BN_is_bit_set(p2, i))
crypto/openssl/crypto/bn/bn_exp2.c
168
if (BN_is_bit_set(p2, i))
crypto/openssl/crypto/bn/bn_gcd.c
283
while (!BN_is_bit_set(B, shift)) { /* note that 0 < B */
crypto/openssl/crypto/bn/bn_gcd.c
305
while (!BN_is_bit_set(A, shift)) { /* note that 0 < A */
crypto/openssl/crypto/bn/bn_gf2m.c
879
if (BN_is_bit_set(b, i)) {
crypto/openssl/crypto/bn/bn_intern.c
117
window_val += bit * BN_is_bit_set(scalar, j + w);
crypto/openssl/crypto/bn/bn_kron.c
109
while (!BN_is_bit_set(A, i))
crypto/openssl/crypto/bn/bn_kron.c
70
while (!BN_is_bit_set(B, i))
crypto/openssl/crypto/bn/bn_prime.c
382
while (!BN_is_bit_set(w1, a))
crypto/openssl/crypto/bn/bn_rand.c
155
else if (!BN_is_bit_set(range, n - 2) && !BN_is_bit_set(range, n - 3)) {
crypto/openssl/crypto/bn/bn_sqrt.c
34
if (!BN_set_word(ret, BN_is_bit_set(a, 0))) {
crypto/openssl/crypto/bn/bn_sqrt.c
83
while (!BN_is_bit_set(p, e))
crypto/openssl/crypto/dh/dh_key.c
344
&& !BN_is_bit_set(dh->params.p, 2)) {
crypto/openssl/crypto/dsa/dsa_ossl.c
322
BN_consttime_swap(BN_is_bit_set(l, q_bits), k, l, q_words + 2);
crypto/openssl/crypto/ec/ec_mult.c
247
kbit = BN_is_bit_set(lambda, cardinality_bits);
crypto/openssl/crypto/ec/ec_mult.c
348
kbit = BN_is_bit_set(k, i) ^ pbit;
crypto/openssl/include/openssl/bn.h
305
int BN_is_bit_set(const BIGNUM *a, int n);