Symbol: BN_is_bit_set
crypto/libressl/crypto/bn/bn_bpsw.c
140
digit = BN_is_bit_set(k, i);
crypto/libressl/crypto/bn/bn_bpsw.c
181
while (BN_is_bit_set(n, s))
crypto/libressl/crypto/bn/bn_bpsw.c
341
while (!BN_is_bit_set(n_minus_one, s))
crypto/libressl/crypto/bn/bn_exp.c
1011
if (BN_is_bit_set(p, b)) {
crypto/libressl/crypto/bn/bn_exp.c
1125
if (BN_is_bit_set(p, wstart) == 0) {
crypto/libressl/crypto/bn/bn_exp.c
1144
if (BN_is_bit_set(p, wstart - i)) {
crypto/libressl/crypto/bn/bn_exp.c
160
if (BN_is_bit_set(p, i)) {
crypto/libressl/crypto/bn/bn_exp.c
333
if (BN_is_bit_set(p, wstart) == 0) {
crypto/libressl/crypto/bn/bn_exp.c
352
if (BN_is_bit_set(p, wstart - i)) {
crypto/libressl/crypto/bn/bn_exp.c
481
if (BN_is_bit_set(p, wstart) == 0) {
crypto/libressl/crypto/bn/bn_exp.c
501
if (BN_is_bit_set(p, wstart - i)) {
crypto/libressl/crypto/bn/bn_exp.c
811
wvalue = (wvalue << 1) + BN_is_bit_set(p, bits);
crypto/libressl/crypto/bn/bn_exp.c
819
wvalue = (wvalue << 1) + BN_is_bit_set(p, bits);
crypto/libressl/crypto/bn/bn_exp.c
865
wvalue = (wvalue << 1) + BN_is_bit_set(p, bits);
crypto/libressl/crypto/bn/bn_exp.c
881
wvalue = (wvalue << 1) + BN_is_bit_set(p, bits);
crypto/libressl/crypto/bn/bn_exp2.c
251
if (BN_is_bit_set(p1, b)) {
crypto/libressl/crypto/bn/bn_exp2.c
254
while (!BN_is_bit_set(p1, i)) /* works for i<0 */
crypto/libressl/crypto/bn/bn_exp2.c
260
if (BN_is_bit_set(p1, i))
crypto/libressl/crypto/bn/bn_exp2.c
266
if (BN_is_bit_set(p2, b)) {
crypto/libressl/crypto/bn/bn_exp2.c
269
while (!BN_is_bit_set(p2, i))
crypto/libressl/crypto/bn/bn_exp2.c
275
if (BN_is_bit_set(p2, i))
crypto/libressl/crypto/bn/bn_gcd.c
326
while (!BN_is_bit_set(B, shift)) /* note that 0 < B */
crypto/libressl/crypto/bn/bn_gcd.c
346
while (!BN_is_bit_set(A, shift)) /* note that 0 < A */
crypto/libressl/crypto/bn/bn_gf2m.c
1018
if (BN_is_bit_set(b, i)) {
crypto/libressl/crypto/bn/bn_kron.c
111
while (!BN_is_bit_set(b, v))
crypto/libressl/crypto/bn/bn_kron.c
152
while (!BN_is_bit_set(a, v))
crypto/libressl/crypto/bn/bn_prime.c
340
while (!BN_is_bit_set(A1, k))
crypto/libressl/crypto/bn/bn_rand.c
237
else if (!BN_is_bit_set(range, n - 2) && !BN_is_bit_set(range, n - 3)) {
crypto/libressl/crypto/bn/bn_sqrt.c
135
while (!BN_is_bit_set(p, e))
crypto/libressl/crypto/bn/bn_sqrt.c
83
if (!BN_set_word(ret, BN_is_bit_set(a, 0))) {
crypto/libressl/crypto/ec/ec_mult.c
289
window_val += bit * BN_is_bit_set(scalar, j + w);
crypto/libressl/crypto/ec/ecp_smpl.c
1586
kbit = BN_is_bit_set(lambda, cardinality_bits);
crypto/libressl/crypto/ec/ecp_smpl.c
1676
kbit = BN_is_bit_set(k, i) ^ pbit;
crypto/libressl/include/openssl/bn.h
424
int BN_is_bit_set(const BIGNUM *a, int n);
crypto/openssh/dh.c
268
if (BN_is_bit_set(dh_pub, i))
usr.bin/dc/bcode.c
1221
while (!BN_is_bit_set(p->number, 0)) {
usr.bin/dc/bcode.c
1234
if (BN_is_bit_set(p->number, 0)) {
usr.bin/dc/inout.c
403
ch |= BN_is_bit_set(v, numbits-i-1) << (7 - i);