Symbol: get_bit
crypto/openssl/crypto/ec/ecp_nistp224.c
1156
bits = get_bit(g_scalar, i + 196) << 3;
crypto/openssl/crypto/ec/ecp_nistp224.c
1157
bits |= get_bit(g_scalar, i + 140) << 2;
crypto/openssl/crypto/ec/ecp_nistp224.c
1158
bits |= get_bit(g_scalar, i + 84) << 1;
crypto/openssl/crypto/ec/ecp_nistp224.c
1159
bits |= get_bit(g_scalar, i + 28);
crypto/openssl/crypto/ec/ecp_nistp224.c
1173
bits = get_bit(g_scalar, i + 168) << 3;
crypto/openssl/crypto/ec/ecp_nistp224.c
1174
bits |= get_bit(g_scalar, i + 112) << 2;
crypto/openssl/crypto/ec/ecp_nistp224.c
1175
bits |= get_bit(g_scalar, i + 56) << 1;
crypto/openssl/crypto/ec/ecp_nistp224.c
1176
bits |= get_bit(g_scalar, i);
crypto/openssl/crypto/ec/ecp_nistp224.c
1188
bits = get_bit(scalars[num], i + 4) << 5;
crypto/openssl/crypto/ec/ecp_nistp224.c
1189
bits |= get_bit(scalars[num], i + 3) << 4;
crypto/openssl/crypto/ec/ecp_nistp224.c
1190
bits |= get_bit(scalars[num], i + 2) << 3;
crypto/openssl/crypto/ec/ecp_nistp224.c
1191
bits |= get_bit(scalars[num], i + 1) << 2;
crypto/openssl/crypto/ec/ecp_nistp224.c
1192
bits |= get_bit(scalars[num], i) << 1;
crypto/openssl/crypto/ec/ecp_nistp224.c
1193
bits |= get_bit(scalars[num], i - 1);
crypto/openssl/crypto/ec/ecp_nistp256.c
1698
bits = get_bit(g_scalar, i + 224) << 3;
crypto/openssl/crypto/ec/ecp_nistp256.c
1699
bits |= get_bit(g_scalar, i + 160) << 2;
crypto/openssl/crypto/ec/ecp_nistp256.c
1700
bits |= get_bit(g_scalar, i + 96) << 1;
crypto/openssl/crypto/ec/ecp_nistp256.c
1701
bits |= get_bit(g_scalar, i + 32);
crypto/openssl/crypto/ec/ecp_nistp256.c
1717
bits = get_bit(g_scalar, i + 192) << 3;
crypto/openssl/crypto/ec/ecp_nistp256.c
1718
bits |= get_bit(g_scalar, i + 128) << 2;
crypto/openssl/crypto/ec/ecp_nistp256.c
1719
bits |= get_bit(g_scalar, i + 64) << 1;
crypto/openssl/crypto/ec/ecp_nistp256.c
1720
bits |= get_bit(g_scalar, i);
crypto/openssl/crypto/ec/ecp_nistp256.c
1732
bits = get_bit(scalars[num], i + 4) << 5;
crypto/openssl/crypto/ec/ecp_nistp256.c
1733
bits |= get_bit(scalars[num], i + 3) << 4;
crypto/openssl/crypto/ec/ecp_nistp256.c
1734
bits |= get_bit(scalars[num], i + 2) << 3;
crypto/openssl/crypto/ec/ecp_nistp256.c
1735
bits |= get_bit(scalars[num], i + 1) << 2;
crypto/openssl/crypto/ec/ecp_nistp256.c
1736
bits |= get_bit(scalars[num], i) << 1;
crypto/openssl/crypto/ec/ecp_nistp256.c
1737
bits |= get_bit(scalars[num], i - 1);
crypto/openssl/crypto/ec/ecp_nistp384.c
1434
bits = get_bit(g_scalar, i + 285) << 3;
crypto/openssl/crypto/ec/ecp_nistp384.c
1436
bits |= get_bit(g_scalar, i + 190) << 2;
crypto/openssl/crypto/ec/ecp_nistp384.c
1437
bits |= get_bit(g_scalar, i + 95) << 1;
crypto/openssl/crypto/ec/ecp_nistp384.c
1438
bits |= get_bit(g_scalar, i);
crypto/openssl/crypto/ec/ecp_nistp384.c
1457
bits = get_bit(scalars[num], i + 4) << 5;
crypto/openssl/crypto/ec/ecp_nistp384.c
1458
bits |= get_bit(scalars[num], i + 3) << 4;
crypto/openssl/crypto/ec/ecp_nistp384.c
1459
bits |= get_bit(scalars[num], i + 2) << 3;
crypto/openssl/crypto/ec/ecp_nistp384.c
1460
bits |= get_bit(scalars[num], i + 1) << 2;
crypto/openssl/crypto/ec/ecp_nistp384.c
1461
bits |= get_bit(scalars[num], i) << 1;
crypto/openssl/crypto/ec/ecp_nistp384.c
1462
bits |= get_bit(scalars[num], i - 1);
crypto/openssl/crypto/ec/ecp_nistp521.c
1527
bits = get_bit(g_scalar, i + 390) << 3;
crypto/openssl/crypto/ec/ecp_nistp521.c
1529
bits |= get_bit(g_scalar, i + 260) << 2;
crypto/openssl/crypto/ec/ecp_nistp521.c
1530
bits |= get_bit(g_scalar, i + 130) << 1;
crypto/openssl/crypto/ec/ecp_nistp521.c
1531
bits |= get_bit(g_scalar, i);
crypto/openssl/crypto/ec/ecp_nistp521.c
1549
bits = get_bit(scalars[num], i + 4) << 5;
crypto/openssl/crypto/ec/ecp_nistp521.c
1550
bits |= get_bit(scalars[num], i + 3) << 4;
crypto/openssl/crypto/ec/ecp_nistp521.c
1551
bits |= get_bit(scalars[num], i + 2) << 3;
crypto/openssl/crypto/ec/ecp_nistp521.c
1552
bits |= get_bit(scalars[num], i + 1) << 2;
crypto/openssl/crypto/ec/ecp_nistp521.c
1553
bits |= get_bit(scalars[num], i) << 1;
crypto/openssl/crypto/ec/ecp_nistp521.c
1554
bits |= get_bit(scalars[num], i - 1);