Symbol: point
crypto/libecc/include/libecc/sig/ec_key.h
220
prj_pt point;
crypto/libecc/src/sig/bip0340.c
1153
ret = prj_pt_copy(&elements[(2 * num)].point, G); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
1189
R = &elements[i].point;
crypto/libecc/src/sig/bip0340.c
1213
Y = &elements[num + i].point;
crypto/libecc/src/sig/bip0340.c
1270
ret = prj_pt_iszero(&elements[elements[0].index].point, &iszero); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
1005
W = &elements[i].point;
crypto/libecc/src/sig/ecfsdsa.c
1036
ret = prj_pt_iszero(&elements[elements[0].index].point, &iszero); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
956
ret = prj_pt_copy(&elements[(2 * num)].point, G); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
979
Y = &elements[num + i].point;
crypto/libecc/src/sig/eddsa.c
2722
ret = _prj_pt_unprotected_mult(&elements[(2 * num)].point, gen_cofactor, G); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
2775
ret = aff_pt_edwards_to_prj_pt_shortw(&R, shortw_curve, &elements[i].point, alpha_edwards); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
2806
ret = _prj_pt_unprotected_mult(&elements[num + i].point, gen_cofactor, pub_key_y); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
2810
ret = prj_pt_iszero(&elements[num + i].point, &iszero); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
2877
ret = prj_pt_iszero(&elements[elements[0].index].point, &iszero); EG(ret, err);
crypto/libecc/src/sig/sig_algs.c
1090
ret = prj_pt_add(&elements[index1].point, &elements[index0].point,
crypto/libecc/src/sig/sig_algs.c
1091
&elements[index1].point); EG(ret, err);
crypto/libecc/src/sig/sig_algs.c
1107
ret = _prj_pt_unprotected_mult(&elements[index0].point, &elements[index0].number, &elements[index0].point);
crypto/openssh/sshkey.c
2795
sshkey_dump_ec_point(const EC_GROUP *group, const EC_POINT *point)
crypto/openssh/sshkey.c
2799
if (point == NULL) {
crypto/openssh/sshkey.c
2807
if (EC_POINT_get_affine_coordinates_GFp(group, point,
crypto/openssl/crypto/ec/curve25519.c
211
const uint8_t point[32])
crypto/openssl/crypto/ec/curve25519.c
222
fe64_frombytes(x1, point);
crypto/openssl/crypto/ec/curve25519.c
4526
const uint8_t point[32])
crypto/openssl/crypto/ec/curve25519.c
4537
fe_frombytes(x1, point);
crypto/openssl/crypto/ec/curve25519.c
4577
const uint8_t point[32])
crypto/openssl/crypto/ec/curve25519.c
4579
x25519_scalar_mult_generic(out, scalar, point);
crypto/openssl/crypto/ec/curve25519.c
728
const uint8_t point[32])
crypto/openssl/crypto/ec/curve25519.c
737
x25519_scalar_mulx(out, scalar, point);
crypto/openssl/crypto/ec/curve25519.c
746
fe51_frombytes(x1, point);
crypto/openssl/crypto/ec/curve448/curve448.c
725
void ossl_curve448_point_destroy(curve448_point_t point)
crypto/openssl/crypto/ec/curve448/curve448.c
727
OPENSSL_cleanse(point, sizeof(curve448_point_t));
crypto/openssl/crypto/ec/curve448/point_448.h
303
void ossl_curve448_point_destroy(curve448_point_t point);
crypto/openssl/crypto/ec/ec2_oct.c
107
if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
crypto/openssl/crypto/ec/ec2_oct.c
126
const EC_POINT *point,
crypto/openssl/crypto/ec/ec2_oct.c
145
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ec2_oct.c
184
if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx))
crypto/openssl/crypto/ec/ec2_oct.c
254
int ossl_ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point,
crypto/openssl/crypto/ec/ec2_oct.c
304
return EC_POINT_set_to_infinity(group, point);
crypto/openssl/crypto/ec/ec2_oct.c
339
if (!EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx))
crypto/openssl/crypto/ec/ec2_oct.c
373
if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
crypto/openssl/crypto/ec/ec2_oct.c
40
EC_POINT *point,
crypto/openssl/crypto/ec/ec2_smpl.c
220
int ossl_ec_GF2m_simple_point_init(EC_POINT *point)
crypto/openssl/crypto/ec/ec2_smpl.c
222
point->X = BN_new();
crypto/openssl/crypto/ec/ec2_smpl.c
223
point->Y = BN_new();
crypto/openssl/crypto/ec/ec2_smpl.c
224
point->Z = BN_new();
crypto/openssl/crypto/ec/ec2_smpl.c
226
if (point->X == NULL || point->Y == NULL || point->Z == NULL) {
crypto/openssl/crypto/ec/ec2_smpl.c
227
BN_free(point->X);
crypto/openssl/crypto/ec/ec2_smpl.c
228
BN_free(point->Y);
crypto/openssl/crypto/ec/ec2_smpl.c
229
BN_free(point->Z);
crypto/openssl/crypto/ec/ec2_smpl.c
236
void ossl_ec_GF2m_simple_point_finish(EC_POINT *point)
crypto/openssl/crypto/ec/ec2_smpl.c
238
BN_free(point->X);
crypto/openssl/crypto/ec/ec2_smpl.c
239
BN_free(point->Y);
crypto/openssl/crypto/ec/ec2_smpl.c
240
BN_free(point->Z);
crypto/openssl/crypto/ec/ec2_smpl.c
244
void ossl_ec_GF2m_simple_point_clear_finish(EC_POINT *point)
crypto/openssl/crypto/ec/ec2_smpl.c
246
BN_clear_free(point->X);
crypto/openssl/crypto/ec/ec2_smpl.c
247
BN_clear_free(point->Y);
crypto/openssl/crypto/ec/ec2_smpl.c
248
BN_clear_free(point->Z);
crypto/openssl/crypto/ec/ec2_smpl.c
249
point->Z_is_one = 0;
crypto/openssl/crypto/ec/ec2_smpl.c
275
EC_POINT *point)
crypto/openssl/crypto/ec/ec2_smpl.c
277
point->Z_is_one = 0;
crypto/openssl/crypto/ec/ec2_smpl.c
278
BN_zero(point->Z);
crypto/openssl/crypto/ec/ec2_smpl.c
287
EC_POINT *point,
crypto/openssl/crypto/ec/ec2_smpl.c
298
if (!BN_copy(point->X, x))
crypto/openssl/crypto/ec/ec2_smpl.c
300
BN_set_negative(point->X, 0);
crypto/openssl/crypto/ec/ec2_smpl.c
301
if (!BN_copy(point->Y, y))
crypto/openssl/crypto/ec/ec2_smpl.c
303
BN_set_negative(point->Y, 0);
crypto/openssl/crypto/ec/ec2_smpl.c
304
if (!BN_copy(point->Z, BN_value_one()))
crypto/openssl/crypto/ec/ec2_smpl.c
306
BN_set_negative(point->Z, 0);
crypto/openssl/crypto/ec/ec2_smpl.c
307
point->Z_is_one = 1;
crypto/openssl/crypto/ec/ec2_smpl.c
319
const EC_POINT *point,
crypto/openssl/crypto/ec/ec2_smpl.c
325
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ec2_smpl.c
330
if (BN_cmp(point->Z, BN_value_one())) {
crypto/openssl/crypto/ec/ec2_smpl.c
335
if (!BN_copy(x, point->X))
crypto/openssl/crypto/ec/ec2_smpl.c
340
if (!BN_copy(y, point->Y))
crypto/openssl/crypto/ec/ec2_smpl.c
481
int ossl_ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point,
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
489
|| !group->meth->make_affine(group, point, ctx))
crypto/openssl/crypto/ec/ec2_smpl.c
491
return BN_GF2m_add(point->Y, point->X, point->Y);
crypto/openssl/crypto/ec/ec2_smpl.c
496
const EC_POINT *point)
crypto/openssl/crypto/ec/ec2_smpl.c
498
return BN_is_zero(point->Z);
crypto/openssl/crypto/ec/ec2_smpl.c
506
int ossl_ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point,
crypto/openssl/crypto/ec/ec2_smpl.c
518
if (EC_POINT_is_at_infinity(group, point))
crypto/openssl/crypto/ec/ec2_smpl.c
525
if (!point->Z_is_one)
crypto/openssl/crypto/ec/ec2_smpl.c
548
if (!BN_GF2m_add(lh, point->X, group->a))
crypto/openssl/crypto/ec/ec2_smpl.c
550
if (!field_mul(group, lh, lh, point->X, ctx))
crypto/openssl/crypto/ec/ec2_smpl.c
552
if (!BN_GF2m_add(lh, lh, point->Y))
crypto/openssl/crypto/ec/ec2_smpl.c
554
if (!field_mul(group, lh, lh, point->X, ctx))
crypto/openssl/crypto/ec/ec2_smpl.c
558
if (!field_sqr(group, y2, point->Y, ctx))
crypto/openssl/crypto/ec/ec2_smpl.c
630
int ossl_ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point,
crypto/openssl/crypto/ec/ec2_smpl.c
639
if (point->Z_is_one || EC_POINT_is_at_infinity(group, point))
crypto/openssl/crypto/ec/ec2_smpl.c
656
if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx))
crypto/openssl/crypto/ec/ec2_smpl.c
658
if (!BN_copy(point->X, x))
crypto/openssl/crypto/ec/ec2_smpl.c
660
if (!BN_copy(point->Y, y))
crypto/openssl/crypto/ec/ec2_smpl.c
662
if (!BN_one(point->Z))
crypto/openssl/crypto/ec/ec2_smpl.c
664
point->Z_is_one = 1;
crypto/openssl/crypto/ec/ec_asn1.c
379
const EC_POINT *point = NULL;
crypto/openssl/crypto/ec/ec_asn1.c
407
if ((point = EC_GROUP_get0_generator(group)) == NULL) {
crypto/openssl/crypto/ec/ec_asn1.c
414
len = EC_POINT_point2buf(group, point, form, &buffer, NULL);
crypto/openssl/crypto/ec/ec_asn1.c
515
EC_POINT *point = NULL;
crypto/openssl/crypto/ec/ec_asn1.c
703
if ((point = EC_POINT_new(ret)) == NULL)
crypto/openssl/crypto/ec/ec_asn1.c
710
if (!EC_POINT_oct2point(ret, point, params->base->data,
crypto/openssl/crypto/ec/ec_asn1.c
739
if (!EC_GROUP_set_generator(ret, point, a, b)) {
crypto/openssl/crypto/ec/ec_asn1.c
762
|| !EC_GROUP_set_generator(dup, point, a, NULL)) {
crypto/openssl/crypto/ec/ec_asn1.c
827
EC_POINT_free(point);
crypto/openssl/crypto/ec/ec_check.c
104
if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx))
crypto/openssl/crypto/ec/ec_check.c
106
if (!EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ec_check.c
115
EC_POINT_free(point);
crypto/openssl/crypto/ec/ec_check.c
58
EC_POINT *point = NULL;
crypto/openssl/crypto/ec/ec_check.c
94
if ((point = EC_POINT_new(group)) == NULL)
crypto/openssl/crypto/ec/ec_deprecated.c
22
const EC_POINT *point,
crypto/openssl/crypto/ec/ec_deprecated.c
29
buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx);
crypto/openssl/crypto/ec/ec_deprecated.c
42
const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec_deprecated.c
58
if (point == NULL) {
crypto/openssl/crypto/ec/ec_deprecated.c
64
ret = point;
crypto/openssl/crypto/ec/ec_deprecated.c
67
if (ret != point)
crypto/openssl/crypto/ec/ec_key.c
563
EC_POINT *point = NULL;
crypto/openssl/crypto/ec/ec_key.c
575
point = EC_POINT_new(eckey->group);
crypto/openssl/crypto/ec/ec_key.c
576
if (point == NULL)
crypto/openssl/crypto/ec/ec_key.c
585
if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx)) {
crypto/openssl/crypto/ec/ec_key.c
589
if (!EC_POINT_is_at_infinity(eckey->group, point)) {
crypto/openssl/crypto/ec/ec_key.c
595
EC_POINT_free(point);
crypto/openssl/crypto/ec/ec_key.c
626
EC_POINT *point = NULL;
crypto/openssl/crypto/ec/ec_key.c
636
point = EC_POINT_new(eckey->group);
crypto/openssl/crypto/ec/ec_key.c
637
if (point == NULL)
crypto/openssl/crypto/ec/ec_key.c
640
if (!EC_POINT_mul(eckey->group, point, eckey->priv_key, NULL, NULL, ctx)) {
crypto/openssl/crypto/ec/ec_key.c
644
if (EC_POINT_cmp(eckey->group, point, eckey->pub_key, ctx) != 0) {
crypto/openssl/crypto/ec/ec_key.c
650
EC_POINT_free(point);
crypto/openssl/crypto/ec/ec_key.c
695
EC_POINT *point = NULL;
crypto/openssl/crypto/ec/ec_key.c
707
point = EC_POINT_new(key->group);
crypto/openssl/crypto/ec/ec_key.c
709
if (point == NULL)
crypto/openssl/crypto/ec/ec_key.c
717
if (!EC_POINT_set_affine_coordinates(key->group, point, x, y, ctx))
crypto/openssl/crypto/ec/ec_key.c
719
if (!EC_POINT_get_affine_coordinates(key->group, point, tx, ty, ctx))
crypto/openssl/crypto/ec/ec_key.c
732
if (!EC_KEY_set_public_key(key, point))
crypto/openssl/crypto/ec/ec_key.c
743
EC_POINT_free(point);
crypto/openssl/crypto/ec/ec_lib.c
1002
int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point,
crypto/openssl/crypto/ec/ec_lib.c
1009
if (!ec_point_is_compat(point, group)) {
crypto/openssl/crypto/ec/ec_lib.c
1013
return group->meth->is_on_curve(group, point, ctx);
crypto/openssl/crypto/ec/ec_lib.c
1031
int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec_lib.c
1037
if (!ec_point_is_compat(point, group)) {
crypto/openssl/crypto/ec/ec_lib.c
1041
return group->meth->make_affine(group, point, ctx);
crypto/openssl/crypto/ec/ec_lib.c
1118
const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec_lib.c
1127
|| (point != NULL && !ec_point_is_compat(point, group))) {
crypto/openssl/crypto/ec/ec_lib.c
1144
num = (point != NULL && p_scalar != NULL) ? 1 : 0;
crypto/openssl/crypto/ec/ec_lib.c
1146
ret = group->meth->mul(group, r, g_scalar, num, &point, &p_scalar, ctx);
crypto/openssl/crypto/ec/ec_lib.c
1149
ret = ossl_ec_wNAF_mul(group, r, g_scalar, num, &point, &p_scalar, ctx);
crypto/openssl/crypto/ec/ec_lib.c
1412
const EC_POINT *point = EC_GROUP_get0_generator(group);
crypto/openssl/crypto/ec/ec_lib.c
1418
|| !EC_GROUP_set_generator(dup, point, order, NULL))
crypto/openssl/crypto/ec/ec_lib.c
1551
EC_POINT *point = NULL;
crypto/openssl/crypto/ec/ec_lib.c
1691
if ((point = EC_POINT_new(group)) == NULL)
crypto/openssl/crypto/ec/ec_lib.c
1695
if (!EC_POINT_oct2point(group, point, buf, ptmp->data_size, bnctx)) {
crypto/openssl/crypto/ec/ec_lib.c
1720
if (!EC_GROUP_set_generator(group, point, order, cofactor)) {
crypto/openssl/crypto/ec/ec_lib.c
1758
EC_POINT_free(point);
crypto/openssl/crypto/ec/ec_lib.c
744
void EC_POINT_free(EC_POINT *point)
crypto/openssl/crypto/ec/ec_lib.c
746
if (point == NULL)
crypto/openssl/crypto/ec/ec_lib.c
750
EC_POINT_clear_free(point);
crypto/openssl/crypto/ec/ec_lib.c
752
if (point->meth->point_finish != 0)
crypto/openssl/crypto/ec/ec_lib.c
753
point->meth->point_finish(point);
crypto/openssl/crypto/ec/ec_lib.c
754
OPENSSL_free(point);
crypto/openssl/crypto/ec/ec_lib.c
758
void EC_POINT_clear_free(EC_POINT *point)
crypto/openssl/crypto/ec/ec_lib.c
760
if (point == NULL)
crypto/openssl/crypto/ec/ec_lib.c
763
if (point->meth->point_clear_finish != 0)
crypto/openssl/crypto/ec/ec_lib.c
764
point->meth->point_clear_finish(point);
crypto/openssl/crypto/ec/ec_lib.c
765
else if (point->meth->point_finish != 0)
crypto/openssl/crypto/ec/ec_lib.c
766
point->meth->point_finish(point);
crypto/openssl/crypto/ec/ec_lib.c
767
OPENSSL_clear_free(point, sizeof(*point));
crypto/openssl/crypto/ec/ec_lib.c
808
const EC_METHOD *EC_POINT_method_of(const EC_POINT *point)
crypto/openssl/crypto/ec/ec_lib.c
810
return point->meth;
crypto/openssl/crypto/ec/ec_lib.c
814
int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point)
crypto/openssl/crypto/ec/ec_lib.c
820
if (group->meth != point->meth) {
crypto/openssl/crypto/ec/ec_lib.c
824
return group->meth->point_set_to_infinity(group, point);
crypto/openssl/crypto/ec/ec_lib.c
829
EC_POINT *point, const BIGNUM *x,
crypto/openssl/crypto/ec/ec_lib.c
837
if (!ec_point_is_compat(point, group)) {
crypto/openssl/crypto/ec/ec_lib.c
841
return ossl_ec_GFp_simple_set_Jprojective_coordinates_GFp(group, point,
crypto/openssl/crypto/ec/ec_lib.c
846
const EC_POINT *point, BIGNUM *x,
crypto/openssl/crypto/ec/ec_lib.c
854
if (!ec_point_is_compat(point, group)) {
crypto/openssl/crypto/ec/ec_lib.c
858
return ossl_ec_GFp_simple_get_Jprojective_coordinates_GFp(group, point,
crypto/openssl/crypto/ec/ec_lib.c
863
int EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point,
crypto/openssl/crypto/ec/ec_lib.c
871
if (!ec_point_is_compat(point, group)) {
crypto/openssl/crypto/ec/ec_lib.c
875
if (!group->meth->point_set_affine_coordinates(group, point, x, y, ctx))
crypto/openssl/crypto/ec/ec_lib.c
878
if (EC_POINT_is_on_curve(group, point, ctx) <= 0) {
crypto/openssl/crypto/ec/ec_lib.c
887
EC_POINT *point, const BIGNUM *x,
crypto/openssl/crypto/ec/ec_lib.c
890
return EC_POINT_set_affine_coordinates(group, point, x, y, ctx);
crypto/openssl/crypto/ec/ec_lib.c
895
EC_POINT *point, const BIGNUM *x,
crypto/openssl/crypto/ec/ec_lib.c
898
return EC_POINT_set_affine_coordinates(group, point, x, y, ctx);
crypto/openssl/crypto/ec/ec_lib.c
904
const EC_POINT *point, BIGNUM *x, BIGNUM *y,
crypto/openssl/crypto/ec/ec_lib.c
911
if (!ec_point_is_compat(point, group)) {
crypto/openssl/crypto/ec/ec_lib.c
915
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ec_lib.c
919
return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
crypto/openssl/crypto/ec/ec_lib.c
924
const EC_POINT *point, BIGNUM *x,
crypto/openssl/crypto/ec/ec_lib.c
927
return EC_POINT_get_affine_coordinates(group, point, x, y, ctx);
crypto/openssl/crypto/ec/ec_lib.c
932
const EC_POINT *point, BIGNUM *x,
crypto/openssl/crypto/ec/ec_lib.c
935
return EC_POINT_get_affine_coordinates(group, point, x, y, ctx);
crypto/openssl/crypto/ec/ec_lib.c
982
int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point)
crypto/openssl/crypto/ec/ec_lib.c
988
if (!ec_point_is_compat(point, group)) {
crypto/openssl/crypto/ec/ec_lib.c
992
return group->meth->is_at_infinity(group, point);
crypto/openssl/crypto/ec/ec_local.h
331
static ossl_inline int ec_point_is_compat(const EC_POINT *point,
crypto/openssl/crypto/ec/ec_local.h
334
return group->meth == point->meth
crypto/openssl/crypto/ec/ec_local.h
336
|| point->curve_name == 0
crypto/openssl/crypto/ec/ec_local.h
337
|| group->curve_name == point->curve_name);
crypto/openssl/crypto/ec/ec_local.h
529
const EC_POINT *point,
crypto/openssl/crypto/ec/ec_local.h
549
const EC_POINT *point,
crypto/openssl/crypto/ec/ec_local.h
569
const EC_POINT *point,
crypto/openssl/crypto/ec/ec_local.h
590
const EC_POINT *point,
crypto/openssl/crypto/ec/ec_local.h
756
const BIGNUM *scalar, const EC_POINT *point,
crypto/openssl/crypto/ec/ec_mult.c
141
const BIGNUM *scalar, const EC_POINT *point,
crypto/openssl/crypto/ec/ec_mult.c
153
if (point != NULL && EC_POINT_is_at_infinity(group, point))
crypto/openssl/crypto/ec/ec_mult.c
173
if (point == NULL) {
crypto/openssl/crypto/ec/ec_mult.c
179
if (!EC_POINT_copy(p, point)) {
crypto/openssl/crypto/ec/ec_oct.c
101
return ossl_ec_GF2m_simple_point2oct(group, point,
crypto/openssl/crypto/ec/ec_oct.c
106
return group->meth->point2oct(group, point, form, buf, len, ctx);
crypto/openssl/crypto/ec/ec_oct.c
109
int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point,
crypto/openssl/crypto/ec/ec_oct.c
117
if (!ec_point_is_compat(point, group)) {
crypto/openssl/crypto/ec/ec_oct.c
123
return ossl_ec_GFp_simple_oct2point(group, point, buf, len, ctx);
crypto/openssl/crypto/ec/ec_oct.c
131
return ossl_ec_GF2m_simple_oct2point(group, point, buf, len, ctx);
crypto/openssl/crypto/ec/ec_oct.c
134
return group->meth->oct2point(group, point, buf, len, ctx);
crypto/openssl/crypto/ec/ec_oct.c
137
size_t EC_POINT_point2buf(const EC_GROUP *group, const EC_POINT *point,
crypto/openssl/crypto/ec/ec_oct.c
144
len = EC_POINT_point2oct(group, point, form, NULL, 0, NULL);
crypto/openssl/crypto/ec/ec_oct.c
149
len = EC_POINT_point2oct(group, point, form, buf, len, ctx);
crypto/openssl/crypto/ec/ec_oct.c
24
int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point,
crypto/openssl/crypto/ec/ec_oct.c
32
if (!ec_point_is_compat(point, group)) {
crypto/openssl/crypto/ec/ec_oct.c
38
return ossl_ec_GFp_simple_set_compressed_coordinates(group, point, x,
crypto/openssl/crypto/ec/ec_oct.c
47
return ossl_ec_GF2m_simple_set_compressed_coordinates(group, point,
crypto/openssl/crypto/ec/ec_oct.c
51
return group->meth->point_set_compressed_coordinates(group, point, x,
crypto/openssl/crypto/ec/ec_oct.c
57
EC_POINT *point, const BIGNUM *x,
crypto/openssl/crypto/ec/ec_oct.c
60
return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
crypto/openssl/crypto/ec/ec_oct.c
65
EC_POINT *point, const BIGNUM *x,
crypto/openssl/crypto/ec/ec_oct.c
68
return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
crypto/openssl/crypto/ec/ec_oct.c
73
size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point,
crypto/openssl/crypto/ec/ec_oct.c
77
if (point == NULL) {
crypto/openssl/crypto/ec/ec_oct.c
86
if (!ec_point_is_compat(point, group)) {
crypto/openssl/crypto/ec/ec_oct.c
92
return ossl_ec_GFp_simple_point2oct(group, point, form, buf, len,
crypto/openssl/crypto/ec/ec_print.c
17
const EC_POINT *point,
crypto/openssl/crypto/ec/ec_print.c
24
buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx);
crypto/openssl/crypto/ec/ec_print.c
44
const char *hex, EC_POINT *point, BN_CTX *ctx)
crypto/openssl/crypto/ec/ec_print.c
54
if (point == NULL) {
crypto/openssl/crypto/ec/ec_print.c
59
pt = point;
crypto/openssl/crypto/ec/ec_print.c
74
if (pt != point)
crypto/openssl/crypto/ec/ecdsa_ossl.c
451
EC_POINT *point = NULL;
crypto/openssl/crypto/ec/ecdsa_ossl.c
524
if ((point = EC_POINT_new(group)) == NULL) {
crypto/openssl/crypto/ec/ecdsa_ossl.c
528
if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
crypto/openssl/crypto/ec/ecdsa_ossl.c
533
if (!EC_POINT_get_affine_coordinates(group, point, X, NULL, ctx)) {
crypto/openssl/crypto/ec/ecdsa_ossl.c
547
EC_POINT_free(point);
crypto/openssl/crypto/ec/eck_prn.c
138
if ((point = EC_GROUP_get0_generator(x)) == NULL) {
crypto/openssl/crypto/ec/eck_prn.c
151
gen_buf_len = EC_POINT_point2buf(x, point, form, &gen_buf, ctx);
crypto/openssl/crypto/ec/eck_prn.c
74
const EC_POINT *point = NULL;
crypto/openssl/crypto/ec/ecp_nistp224.c
1318
const EC_POINT *point,
crypto/openssl/crypto/ec/ecp_nistp224.c
1325
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_nistp224.c
1329
if ((!BN_to_felem(x_in, point->X)) || (!BN_to_felem(y_in, point->Y)) || (!BN_to_felem(z1, point->Z)))
crypto/openssl/crypto/ec/ecp_nistp256.c
1937
const EC_POINT *point,
crypto/openssl/crypto/ec/ecp_nistp256.c
1945
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_nistp256.c
1949
if ((!BN_to_felem(x_in, point->X)) || (!BN_to_felem(y_in, point->Y)) || (!BN_to_felem(z1, point->Z)))
crypto/openssl/crypto/ec/ecp_nistp384.c
1661
const EC_POINT *point,
crypto/openssl/crypto/ec/ecp_nistp384.c
1668
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_nistp384.c
1672
if ((!BN_to_felem(x_in, point->X)) || (!BN_to_felem(y_in, point->Y)) || (!BN_to_felem(z1, point->Z)))
crypto/openssl/crypto/ec/ecp_nistp521.c
1751
const EC_POINT *point,
crypto/openssl/crypto/ec/ecp_nistp521.c
1758
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_nistp521.c
1762
if ((!BN_to_felem(x_in, point->X)) || (!BN_to_felem(y_in, point->Y)) || (!BN_to_felem(z1, point->Z)))
crypto/openssl/crypto/ec/ecp_nistz256.c
1147
const EC_POINT *point,
crypto/openssl/crypto/ec/ecp_nistz256.c
1157
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_nistz256.c
1162
if (!ecp_nistz256_bignum_to_field_elem(point_x, point->X) || !ecp_nistz256_bignum_to_field_elem(point_y, point->Y) || !ecp_nistz256_bignum_to_field_elem(point_z, point->Z)) {
crypto/openssl/crypto/ec/ecp_nistz256.c
608
const EC_POINT **point,
crypto/openssl/crypto/ec/ecp_nistz256.c
668
if (!ecp_nistz256_bignum_to_field_elem(temp[0].X, point[i]->X)
crypto/openssl/crypto/ec/ecp_nistz256.c
669
|| !ecp_nistz256_bignum_to_field_elem(temp[0].Y, point[i]->Y)
crypto/openssl/crypto/ec/ecp_nistz256.c
670
|| !ecp_nistz256_bignum_to_field_elem(temp[0].Z, point[i]->Z)) {
crypto/openssl/crypto/ec/ecp_oct.c
148
if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
crypto/openssl/crypto/ec/ecp_oct.c
159
size_t ossl_ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point,
crypto/openssl/crypto/ec/ecp_oct.c
176
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_oct.c
212
if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx))
crypto/openssl/crypto/ec/ecp_oct.c
23
EC_POINT *point,
crypto/openssl/crypto/ec/ecp_oct.c
273
int ossl_ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point,
crypto/openssl/crypto/ec/ecp_oct.c
308
return EC_POINT_set_to_infinity(group, point);
crypto/openssl/crypto/ec/ecp_oct.c
339
if (!EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx))
crypto/openssl/crypto/ec/ecp_oct.c
359
if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
crypto/openssl/crypto/ec/ecp_sm2p256.c
451
const EC_POINT **point,
crypto/openssl/crypto/ec/ecp_sm2p256.c
473
if (EC_POINT_is_at_infinity(group, point[i]))
crypto/openssl/crypto/ec/ecp_sm2p256.c
491
|| ecp_sm2p256_bignum_field_elem(p.p.X, point[i]->X) <= 0
crypto/openssl/crypto/ec/ecp_sm2p256.c
492
|| ecp_sm2p256_bignum_field_elem(p.p.Y, point[i]->Y) <= 0
crypto/openssl/crypto/ec/ecp_sm2p256.c
493
|| ecp_sm2p256_bignum_field_elem(p.p.Z, point[i]->Z) <= 0) {
crypto/openssl/crypto/ec/ecp_smpl.c
1001
if (!point->Z_is_one) {
crypto/openssl/crypto/ec/ecp_smpl.c
1002
if (!field_sqr(group, tmp, point->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
1017
if (!field_mul(group, rh, rh, point->X, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
1024
if (!field_mul(group, rh, rh, point->X, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
1039
if (!field_mul(group, rh, rh, point->X, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
1047
if (!field_sqr(group, tmp, point->Y, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
1166
int ossl_ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point,
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
1188
if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
1190
if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
1192
if (!point->Z_is_one) {
crypto/openssl/crypto/ec/ecp_smpl.c
322
int ossl_ec_GFp_simple_point_init(EC_POINT *point)
crypto/openssl/crypto/ec/ecp_smpl.c
324
point->X = BN_new();
crypto/openssl/crypto/ec/ecp_smpl.c
325
point->Y = BN_new();
crypto/openssl/crypto/ec/ecp_smpl.c
326
point->Z = BN_new();
crypto/openssl/crypto/ec/ecp_smpl.c
327
point->Z_is_one = 0;
crypto/openssl/crypto/ec/ecp_smpl.c
329
if (point->X == NULL || point->Y == NULL || point->Z == NULL) {
crypto/openssl/crypto/ec/ecp_smpl.c
330
BN_free(point->X);
crypto/openssl/crypto/ec/ecp_smpl.c
331
BN_free(point->Y);
crypto/openssl/crypto/ec/ecp_smpl.c
332
BN_free(point->Z);
crypto/openssl/crypto/ec/ecp_smpl.c
338
void ossl_ec_GFp_simple_point_finish(EC_POINT *point)
crypto/openssl/crypto/ec/ecp_smpl.c
340
BN_free(point->X);
crypto/openssl/crypto/ec/ecp_smpl.c
341
BN_free(point->Y);
crypto/openssl/crypto/ec/ecp_smpl.c
342
BN_free(point->Z);
crypto/openssl/crypto/ec/ecp_smpl.c
345
void ossl_ec_GFp_simple_point_clear_finish(EC_POINT *point)
crypto/openssl/crypto/ec/ecp_smpl.c
347
BN_clear_free(point->X);
crypto/openssl/crypto/ec/ecp_smpl.c
348
BN_clear_free(point->Y);
crypto/openssl/crypto/ec/ecp_smpl.c
349
BN_clear_free(point->Z);
crypto/openssl/crypto/ec/ecp_smpl.c
350
point->Z_is_one = 0;
crypto/openssl/crypto/ec/ecp_smpl.c
368
EC_POINT *point)
crypto/openssl/crypto/ec/ecp_smpl.c
370
point->Z_is_one = 0;
crypto/openssl/crypto/ec/ecp_smpl.c
371
BN_zero(point->Z);
crypto/openssl/crypto/ec/ecp_smpl.c
376
EC_POINT *point,
crypto/openssl/crypto/ec/ecp_smpl.c
392
if (!BN_nnmod(point->X, x, group->field, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
395
if (!group->meth->field_encode(group, point->X, point->X, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
401
if (!BN_nnmod(point->Y, y, group->field, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
404
if (!group->meth->field_encode(group, point->Y, point->Y, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
412
if (!BN_nnmod(point->Z, z, group->field, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
414
Z_is_one = BN_is_one(point->Z);
crypto/openssl/crypto/ec/ecp_smpl.c
417
if (!group->meth->field_set_to_one(group, point->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
420
if (!group->meth->field_encode(group, point->Z, point->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
424
point->Z_is_one = Z_is_one;
crypto/openssl/crypto/ec/ecp_smpl.c
435
const EC_POINT *point,
crypto/openssl/crypto/ec/ecp_smpl.c
450
if (!group->meth->field_decode(group, x, point->X, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
454
if (!group->meth->field_decode(group, y, point->Y, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
458
if (!group->meth->field_decode(group, z, point->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
463
if (!BN_copy(x, point->X))
crypto/openssl/crypto/ec/ecp_smpl.c
467
if (!BN_copy(y, point->Y))
crypto/openssl/crypto/ec/ecp_smpl.c
471
if (!BN_copy(z, point->Z))
crypto/openssl/crypto/ec/ecp_smpl.c
484
EC_POINT *point,
crypto/openssl/crypto/ec/ecp_smpl.c
496
return EC_POINT_set_Jprojective_coordinates_GFp(group, point, x, y,
crypto/openssl/crypto/ec/ecp_smpl.c
501
const EC_POINT *point,
crypto/openssl/crypto/ec/ecp_smpl.c
510
if (EC_POINT_is_at_infinity(group, point)) {
crypto/openssl/crypto/ec/ecp_smpl.c
532
if (!group->meth->field_decode(group, Z, point->Z, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
536
Z_ = point->Z;
crypto/openssl/crypto/ec/ecp_smpl.c
542
if (!group->meth->field_decode(group, x, point->X, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
546
if (!group->meth->field_decode(group, y, point->Y, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
551
if (!BN_copy(x, point->X))
crypto/openssl/crypto/ec/ecp_smpl.c
555
if (!BN_copy(y, point->Y))
crypto/openssl/crypto/ec/ecp_smpl.c
579
if (!group->meth->field_mul(group, x, point->X, Z_2, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
599
if (!group->meth->field_mul(group, y, point->Y, Z_3, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
939
int ossl_ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point,
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
946
return BN_usub(point->Y, group->field, point->Y);
crypto/openssl/crypto/ec/ecp_smpl.c
950
const EC_POINT *point)
crypto/openssl/crypto/ec/ecp_smpl.c
952
return BN_is_zero(point->Z);
crypto/openssl/crypto/ec/ecp_smpl.c
955
int ossl_ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point,
crypto/openssl/crypto/ec/ecp_smpl.c
966
if (EC_POINT_is_at_infinity(group, point))
crypto/openssl/crypto/ec/ecp_smpl.c
998
if (!field_sqr(group, rh, point->X, ctx))
crypto/openssl/crypto/evp/ctrl_params_translate.c
1634
const EC_POINT *point = EC_KEY_get0_public_key(eckey);
crypto/openssl/crypto/evp/ctrl_params_translate.c
1638
ctx->sz = EC_POINT_point2buf(ecg, point,
crypto/openssl/crypto/evp/ctrl_params_translate.c
1665
const EC_POINT *point;
crypto/openssl/crypto/evp/ctrl_params_translate.c
1682
point = EC_KEY_get0_public_key(eckey);
crypto/openssl/crypto/evp/ctrl_params_translate.c
1694
if (!EC_POINT_get_affine_coordinates(ecg, point, x, y, bnctx))
crypto/openssl/crypto/x509/v3_crld.c
213
DIST_POINT *point = DIST_POINT_new();
crypto/openssl/crypto/x509/v3_crld.c
215
if (point == NULL)
crypto/openssl/crypto/x509/v3_crld.c
220
ret = set_dist_point_name(&point->distpoint, ctx, cnf);
crypto/openssl/crypto/x509/v3_crld.c
226
if (!set_reasons(&point->reasons, cnf->value))
crypto/openssl/crypto/x509/v3_crld.c
229
point->CRLissuer = gnames_from_sectname(ctx, cnf->value);
crypto/openssl/crypto/x509/v3_crld.c
230
if (point->CRLissuer == NULL)
crypto/openssl/crypto/x509/v3_crld.c
235
return point;
crypto/openssl/crypto/x509/v3_crld.c
238
DIST_POINT_free(point);
crypto/openssl/crypto/x509/v3_crld.c
258
DIST_POINT *point;
crypto/openssl/crypto/x509/v3_crld.c
266
point = crldp_from_section(ctx, dpsect);
crypto/openssl/crypto/x509/v3_crld.c
268
if (point == NULL)
crypto/openssl/crypto/x509/v3_crld.c
270
sk_DIST_POINT_push(crld, point); /* no failure as it was reserved */
crypto/openssl/crypto/x509/v3_crld.c
283
if ((point = DIST_POINT_new()) == NULL) {
crypto/openssl/crypto/x509/v3_crld.c
287
sk_DIST_POINT_push(crld, point); /* no failure as it was reserved */
crypto/openssl/crypto/x509/v3_crld.c
288
if ((point->distpoint = DIST_POINT_NAME_new()) == NULL) {
crypto/openssl/crypto/x509/v3_crld.c
292
point->distpoint->name.fullname = gens;
crypto/openssl/crypto/x509/v3_crld.c
293
point->distpoint->type = 0;
crypto/openssl/crypto/x509/v3_crld.c
464
DIST_POINT *point;
crypto/openssl/crypto/x509/v3_crld.c
469
point = sk_DIST_POINT_value(crld, i);
crypto/openssl/crypto/x509/v3_crld.c
470
if (point->distpoint)
crypto/openssl/crypto/x509/v3_crld.c
471
print_distpoint(out, point->distpoint, indent);
crypto/openssl/crypto/x509/v3_crld.c
472
if (point->reasons)
crypto/openssl/crypto/x509/v3_crld.c
473
print_reasons(out, "Reasons", point->reasons, indent);
crypto/openssl/crypto/x509/v3_crld.c
474
if (point->CRLissuer) {
crypto/openssl/crypto/x509/v3_crld.c
476
OSSL_GENERAL_NAMES_print(out, point->CRLissuer, indent);
crypto/openssl/crypto/x509/v3_crld.c
575
OSSL_AA_DIST_POINT *point = OSSL_AA_DIST_POINT_new();
crypto/openssl/crypto/x509/v3_crld.c
577
if (point == NULL)
crypto/openssl/crypto/x509/v3_crld.c
581
ret = set_dist_point_name(&point->distpoint, ctx, cnf);
crypto/openssl/crypto/x509/v3_crld.c
587
if (!set_reasons(&point->reasons, cnf->value))
crypto/openssl/crypto/x509/v3_crld.c
590
if (!X509V3_get_value_bool(cnf, &point->indirectCRL))
crypto/openssl/crypto/x509/v3_crld.c
593
if (!X509V3_get_value_bool(cnf, &point->containsUserAttributeCerts))
crypto/openssl/crypto/x509/v3_crld.c
596
if (!X509V3_get_value_bool(cnf, &point->containsAACerts))
crypto/openssl/crypto/x509/v3_crld.c
599
if (!X509V3_get_value_bool(cnf, &point->containsSOAPublicKeyCerts))
crypto/openssl/crypto/x509/v3_crld.c
604
return point;
crypto/openssl/crypto/x509/v3_crld.c
607
OSSL_AA_DIST_POINT_free(point);
crypto/openssl/crypto/x509/v3_crld.c
617
OSSL_AA_DIST_POINT *point = NULL;
crypto/openssl/crypto/x509/v3_crld.c
627
point = aaidp_from_section(ctx, dpsect);
crypto/openssl/crypto/x509/v3_crld.c
629
if (point == NULL)
crypto/openssl/crypto/x509/v3_crld.c
643
if ((point = OSSL_AA_DIST_POINT_new()) == NULL) {
crypto/openssl/crypto/x509/v3_crld.c
647
if ((point->distpoint = DIST_POINT_NAME_new()) == NULL) {
crypto/openssl/crypto/x509/v3_crld.c
651
point->distpoint->name.fullname = gens;
crypto/openssl/crypto/x509/v3_crld.c
652
point->distpoint->type = 0;
crypto/openssl/crypto/x509/v3_crld.c
655
return point;
crypto/openssl/crypto/x509/v3_crld.c
658
OSSL_AA_DIST_POINT_free(point);
crypto/openssl/include/openssl/ec.h
568
void EC_POINT_free(EC_POINT *point);
crypto/openssl/include/openssl/ec.h
573
void EC_POINT_clear_free(EC_POINT *point);
crypto/openssl/include/openssl/ec.h
595
int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point);
crypto/openssl/include/openssl/ec.h
602
OSSL_DEPRECATEDIN_3_0 const EC_METHOD *EC_POINT_method_of(const EC_POINT *point);
crypto/openssl/include/openssl/ec.h
775
size_t EC_POINT_point2buf(const EC_GROUP *group, const EC_POINT *point,
crypto/openssl/include/openssl/ec.h
841
int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point,
crypto/openssl/include/openssl/ec.h
856
EC_POINT *point, BN_CTX *ctx);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
216
const EC_POINT *point = NULL;
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
221
point = EC_GROUP_get0_generator(group);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
223
if (point == NULL)
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
240
buflen = EC_POINT_point2buf(group, point, form, &buf, ctx);
crypto/openssl/test/ecstresstest.c
41
static BIGNUM *walk_curve(const EC_GROUP *group, EC_POINT *point,
crypto/openssl/test/ecstresstest.c
48
|| !TEST_true(EC_POINT_get_affine_coordinates(group, point, scalar,
crypto/openssl/test/ecstresstest.c
53
if (!TEST_true(EC_POINT_mul(group, point, NULL, point, scalar, NULL))
crypto/openssl/test/ecstresstest.c
54
|| !TEST_true(EC_POINT_get_affine_coordinates(group, point,
crypto/openssl/test/ecstresstest.c
69
EC_POINT *point = NULL;
crypto/openssl/test/ecstresstest.c
78
|| !TEST_ptr(point = EC_POINT_dup(EC_GROUP_get0_generator(group),
crypto/openssl/test/ecstresstest.c
80
|| !TEST_ptr(result = walk_curve(group, point, num_repeats)))
crypto/openssl/test/ecstresstest.c
97
EC_POINT_free(point);
crypto/openssl/test/ectest.c
1077
EC_POINT *point = NULL;
crypto/openssl/test/ectest.c
1085
|| !TEST_ptr(point = EC_POINT_new(group))
crypto/openssl/test/ectest.c
1086
|| !TEST_true(EC_POINT_set_affine_coordinates(group, point, x, y, NULL))
crypto/openssl/test/ectest.c
1087
|| !TEST_size_t_ne(0, (len = EC_POINT_point2oct(group, point, POINT_CONVERSION_HYBRID, NULL, 0, NULL)))
crypto/openssl/test/ectest.c
1089
|| !TEST_size_t_eq(len, EC_POINT_point2oct(group, point, POINT_CONVERSION_HYBRID, buf, len, NULL)))
crypto/openssl/test/ectest.c
1095
if (!TEST_true(EC_POINT_oct2point(group, point, buf, len, NULL)))
crypto/openssl/test/ectest.c
1100
if (!TEST_false(EC_POINT_oct2point(group, point, buf, len, NULL)))
crypto/openssl/test/ectest.c
1107
EC_POINT_free(point);
sbin/ipfw/dummynet.c
856
const struct point *p1 = vp1;
sbin/ipfw/dummynet.c
857
const struct point *p2 = vp2;
sbin/ipfw/dummynet.c
887
struct point points[ED_MAX_SAMPLES_NO];
sbin/ipfw/dummynet.c
994
qsort(points, points_no, sizeof(struct point), compare_points);
sys/arm/nvidia/tegra124/tegra124_cpufreq.c
318
struct cpu_speed_point *point;
sys/arm/nvidia/tegra124/tegra124_cpufreq.c
321
point = get_speed_point(sc, freq);
sys/arm/nvidia/tegra124/tegra124_cpufreq.c
323
if (sc->act_speed_point->uvolt < point->uvolt) {
sys/arm/nvidia/tegra124/tegra124_cpufreq.c
326
point->uvolt, point->uvolt);
sys/arm/nvidia/tegra124/tegra124_cpufreq.c
340
rv = clk_set_freq(sc->clk_pll_x, point->freq, CLK_SET_ROUND_DOWN);
sys/arm/nvidia/tegra124/tegra124_cpufreq.c
352
if (sc->act_speed_point->uvolt > point->uvolt) {
sys/arm/nvidia/tegra124/tegra124_cpufreq.c
355
point->uvolt, point->uvolt);
sys/arm/nvidia/tegra124/tegra124_cpufreq.c
360
sc->act_speed_point = point;
sys/arm64/nvidia/tegra210/tegra210_cpufreq.c
276
struct cpu_speed_point *point;
sys/arm64/nvidia/tegra210/tegra210_cpufreq.c
279
point = get_speed_point(sc, freq);
sys/arm64/nvidia/tegra210/tegra210_cpufreq.c
282
rv = clk_set_freq(sc->clk_pll_x, point->freq, CLK_SET_ROUND_DOWN);
sys/arm64/nvidia/tegra210/tegra210_cpufreq.c
288
sc->act_speed_point = point;
sys/sys/ktr.h
192
#define KTR_POINT0(m, egroup, ident, point) \
sys/sys/ktr.h
193
KTR_EVENT0(m, egroup, ident, "point:\"%s\"", point)
sys/sys/ktr.h
194
#define KTR_POINT1(m, egroup, ident, point, a0, v0) \
sys/sys/ktr.h
195
KTR_EVENT1(m, egroup, ident, "point:\"%s\"", point, a0, (v0))
sys/sys/ktr.h
196
#define KTR_POINT2(m, egroup, ident, point, a0, v0, a1, v1) \
sys/sys/ktr.h
197
KTR_EVENT2(m, egroup, ident, "point:\"%s\"", point, a0, (v0), a1, (v1))
sys/sys/ktr.h
198
#define KTR_POINT3(m, egroup, ident, point, a0, v0, a1, v1, a2, v2) \
sys/sys/ktr.h
199
KTR_EVENT3(m, egroup, ident, "point:\"%s\"", point, \
sys/sys/ktr.h
201
#define KTR_POINT4(m, egroup, ident, point, a0, v0, a1, v1, a2, v2, a3, v3)\
sys/sys/ktr.h
203
point, a0, (v0), a1, (v1), a2, (v2), a3, (v3))