Symbol: EC_POINT_is_at_infinity
crypto/openssh/sshkey.c
2709
if (EC_POINT_is_at_infinity(group, public))
crypto/openssh/sshkey.c
2740
if (EC_POINT_is_at_infinity(group, nq) != 1)
crypto/openssl/crypto/ec/ec2_oct.c
145
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ec2_smpl.c
325
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ec2_smpl.c
363
if (EC_POINT_is_at_infinity(group, a)) {
crypto/openssl/crypto/ec/ec2_smpl.c
369
if (EC_POINT_is_at_infinity(group, b)) {
crypto/openssl/crypto/ec/ec2_smpl.c
484
if (EC_POINT_is_at_infinity(group, point) || BN_is_zero(point->Y))
crypto/openssl/crypto/ec/ec2_smpl.c
518
if (EC_POINT_is_at_infinity(group, point))
crypto/openssl/crypto/ec/ec2_smpl.c
588
if (EC_POINT_is_at_infinity(group, a)) {
crypto/openssl/crypto/ec/ec2_smpl.c
589
return EC_POINT_is_at_infinity(group, b) ? 0 : 1;
crypto/openssl/crypto/ec/ec2_smpl.c
592
if (EC_POINT_is_at_infinity(group, b))
crypto/openssl/crypto/ec/ec2_smpl.c
639
if (point->Z_is_one || EC_POINT_is_at_infinity(group, point))
crypto/openssl/crypto/ec/ec_check.c
106
if (!EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ec_key.c
537
if (EC_POINT_is_at_infinity(eckey->group, eckey->pub_key)) {
crypto/openssl/crypto/ec/ec_key.c
589
if (!EC_POINT_is_at_infinity(eckey->group, point)) {
crypto/openssl/crypto/ec/ec_lib.c
915
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ec_mult.c
153
if (point != NULL && EC_POINT_is_at_infinity(group, point))
crypto/openssl/crypto/ec/ecp_nistp224.c
1325
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_nistp256.c
1945
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_nistp384.c
1668
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_nistp521.c
1758
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_nistz256.c
1157
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_oct.c
176
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_s390x_nistp.c
93
if (EC_POINT_is_at_infinity(group, point_ptr) == 1
crypto/openssl/crypto/ec/ecp_sm2p256.c
473
if (EC_POINT_is_at_infinity(group, point[i]))
crypto/openssl/crypto/ec/ecp_smpl.c
1076
if (EC_POINT_is_at_infinity(group, a)) {
crypto/openssl/crypto/ec/ecp_smpl.c
1077
return EC_POINT_is_at_infinity(group, b) ? 0 : 1;
crypto/openssl/crypto/ec/ecp_smpl.c
1080
if (EC_POINT_is_at_infinity(group, b))
crypto/openssl/crypto/ec/ecp_smpl.c
1173
if (point->Z_is_one || EC_POINT_is_at_infinity(group, point))
crypto/openssl/crypto/ec/ecp_smpl.c
510
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_smpl.c
625
if (EC_POINT_is_at_infinity(group, a))
crypto/openssl/crypto/ec/ecp_smpl.c
627
if (EC_POINT_is_at_infinity(group, b))
crypto/openssl/crypto/ec/ecp_smpl.c
808
if (EC_POINT_is_at_infinity(group, a)) {
crypto/openssl/crypto/ec/ecp_smpl.c
942
if (EC_POINT_is_at_infinity(group, point) || BN_is_zero(point->Y))
crypto/openssl/crypto/ec/ecp_smpl.c
966
if (EC_POINT_is_at_infinity(group, point))
crypto/openssl/include/openssl/ec.h
833
int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *p);
crypto/openssl/test/ectest.c
1010
} while (!EC_POINT_is_at_infinity(group, P));
crypto/openssl/test/ectest.c
1013
|| !TEST_true(EC_POINT_is_at_infinity(group, P)))
crypto/openssl/test/ectest.c
111
|| !TEST_true(EC_POINT_is_at_infinity(group, Q))
crypto/openssl/test/ectest.c
112
|| !TEST_false(EC_POINT_is_at_infinity(group, P)))
crypto/openssl/test/ectest.c
138
|| !TEST_true(EC_POINT_is_at_infinity(group, P)))
crypto/openssl/test/ectest.c
195
|| !TEST_true(EC_POINT_is_at_infinity(group, P))
crypto/openssl/test/ectest.c
198
|| !TEST_true(EC_POINT_is_at_infinity(group, P))
crypto/openssl/test/ectest.c
222
if (EC_POINT_is_at_infinity(group, P)) {
crypto/openssl/test/ectest.c
237
} while (!EC_POINT_is_at_infinity(group, P));
crypto/openssl/test/ectest.c
240
|| !TEST_true(EC_POINT_is_at_infinity(group, P)))
crypto/openssl/test/ectest.c
2815
&& !TEST_true(EC_POINT_is_at_infinity(group, Q)))
crypto/openssl/test/ectest.c
529
|| !TEST_false(EC_POINT_is_at_infinity(group, Q))
crypto/openssl/test/ectest.c
535
|| !TEST_true(EC_POINT_is_at_infinity(group, R)) /* R = P + 2Q */
crypto/openssl/test/ectest.c
536
|| !TEST_false(EC_POINT_is_at_infinity(group, Q)))
crypto/openssl/test/ectest.c
568
|| !TEST_true(EC_POINT_is_at_infinity(group, P))
crypto/openssl/test/ectest.c
583
|| !TEST_true(EC_POINT_is_at_infinity(group, P)))
crypto/openssl/test/ectest.c
60
|| !TEST_true(EC_POINT_is_at_infinity(group, Q))
crypto/openssl/test/ectest.c
65
|| !TEST_true(EC_POINT_is_at_infinity(group, Q))
crypto/openssl/test/ectest.c
849
|| !TEST_false(EC_POINT_is_at_infinity(group, Q))
crypto/openssl/test/ectest.c
855
|| !TEST_true(EC_POINT_is_at_infinity(group, R)) /* R = P + 2Q */
crypto/openssl/test/ectest.c
856
|| !TEST_false(EC_POINT_is_at_infinity(group, Q)))
crypto/openssl/test/ectest.c
887
|| !TEST_true(EC_POINT_is_at_infinity(group, P)))
crypto/openssl/test/ectest.c
899
|| !TEST_true(EC_POINT_is_at_infinity(group, P)))
crypto/openssl/test/ectest.c
956
|| !TEST_true(EC_POINT_is_at_infinity(group, P)))
crypto/openssl/test/ectest.c
962
|| !TEST_true(EC_POINT_is_at_infinity(group, P))
crypto/openssl/test/ectest.c
996
if (EC_POINT_is_at_infinity(group, P))