Symbol: point
crypto/libressl/apps/openssl/ecparam.c
410
const EC_POINT *point;
crypto/libressl/apps/openssl/ecparam.c
427
if ((point = EC_GROUP_get0_generator(group)) == NULL)
crypto/libressl/apps/openssl/ecparam.c
429
if (!EC_POINT_point2bn(group, point,
crypto/libressl/crypto/curve25519/curve25519-generic.c
31
const uint8_t point[32])
crypto/libressl/crypto/curve25519/curve25519-generic.c
33
x25519_scalar_mult_generic(out, scalar, point);
crypto/libressl/crypto/curve25519/curve25519.c
4814
const uint8_t point[32]) {
crypto/libressl/crypto/curve25519/curve25519.c
4822
fe_frombytes(x1, point);
crypto/libressl/crypto/curve25519/curve25519_internal.h
93
const uint8_t point[32]);
crypto/libressl/crypto/curve25519/curve25519_internal.h
95
const uint8_t point[32]);
crypto/libressl/crypto/ec/ec2_mult.c
264
const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx)
crypto/libressl/crypto/ec/ec2_mult.c
270
if (r == point) {
crypto/libressl/crypto/ec/ec2_mult.c
275
if ((scalar == NULL) || BN_is_zero(scalar) || (point == NULL) ||
crypto/libressl/crypto/ec/ec2_mult.c
276
EC_POINT_is_at_infinity(group, point) > 0) {
crypto/libressl/crypto/ec/ec2_mult.c
280
if (!point->Z_is_one)
crypto/libressl/crypto/ec/ec2_mult.c
302
if (!BN_GF2m_mod_arr(x1, &point->X, group->poly))
crypto/libressl/crypto/ec/ec2_mult.c
332
if (!gf2m_Madd(group, &point->X, x2, z2, x1, z1, ctx))
crypto/libressl/crypto/ec/ec2_mult.c
346
i = gf2m_Mxy(group, &point->X, &point->Y, x1, z1, x2, z2, ctx);
crypto/libressl/crypto/ec/ec2_oct.c
159
if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
crypto/libressl/crypto/ec/ec2_oct.c
176
ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point,
crypto/libressl/crypto/ec/ec2_oct.c
192
if (EC_POINT_is_at_infinity(group, point) > 0) {
crypto/libressl/crypto/ec/ec2_oct.c
228
if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx))
crypto/libressl/crypto/ec/ec2_oct.c
292
ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point,
crypto/libressl/crypto/ec/ec2_oct.c
340
return EC_POINT_set_to_infinity(group, point);
crypto/libressl/crypto/ec/ec2_oct.c
376
if (!EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx))
crypto/libressl/crypto/ec/ec2_oct.c
410
if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
crypto/libressl/crypto/ec/ec2_oct.c
94
ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point,
crypto/libressl/crypto/ec/ec2_smpl.c
317
ec_GF2m_simple_point_init(EC_POINT * point)
crypto/libressl/crypto/ec/ec2_smpl.c
319
BN_init(&point->X);
crypto/libressl/crypto/ec/ec2_smpl.c
320
BN_init(&point->Y);
crypto/libressl/crypto/ec/ec2_smpl.c
321
BN_init(&point->Z);
crypto/libressl/crypto/ec/ec2_smpl.c
328
ec_GF2m_simple_point_finish(EC_POINT * point)
crypto/libressl/crypto/ec/ec2_smpl.c
330
BN_free(&point->X);
crypto/libressl/crypto/ec/ec2_smpl.c
331
BN_free(&point->Y);
crypto/libressl/crypto/ec/ec2_smpl.c
332
BN_free(&point->Z);
crypto/libressl/crypto/ec/ec2_smpl.c
338
ec_GF2m_simple_point_clear_finish(EC_POINT * point)
crypto/libressl/crypto/ec/ec2_smpl.c
340
BN_clear_free(&point->X);
crypto/libressl/crypto/ec/ec2_smpl.c
341
BN_clear_free(&point->Y);
crypto/libressl/crypto/ec/ec2_smpl.c
342
BN_clear_free(&point->Z);
crypto/libressl/crypto/ec/ec2_smpl.c
343
point->Z_is_one = 0;
crypto/libressl/crypto/ec/ec2_smpl.c
367
ec_GF2m_simple_point_set_to_infinity(const EC_GROUP * group, EC_POINT * point)
crypto/libressl/crypto/ec/ec2_smpl.c
369
point->Z_is_one = 0;
crypto/libressl/crypto/ec/ec2_smpl.c
370
BN_zero(&point->Z);
crypto/libressl/crypto/ec/ec2_smpl.c
379
ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP * group, EC_POINT * point,
crypto/libressl/crypto/ec/ec2_smpl.c
387
if (!BN_copy(&point->X, x))
crypto/libressl/crypto/ec/ec2_smpl.c
389
BN_set_negative(&point->X, 0);
crypto/libressl/crypto/ec/ec2_smpl.c
390
if (!BN_copy(&point->Y, y))
crypto/libressl/crypto/ec/ec2_smpl.c
392
BN_set_negative(&point->Y, 0);
crypto/libressl/crypto/ec/ec2_smpl.c
393
if (!BN_copy(&point->Z, BN_value_one()))
crypto/libressl/crypto/ec/ec2_smpl.c
395
BN_set_negative(&point->Z, 0);
crypto/libressl/crypto/ec/ec2_smpl.c
396
point->Z_is_one = 1;
crypto/libressl/crypto/ec/ec2_smpl.c
409
const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx)
crypto/libressl/crypto/ec/ec2_smpl.c
413
if (EC_POINT_is_at_infinity(group, point) > 0) {
crypto/libressl/crypto/ec/ec2_smpl.c
417
if (BN_cmp(&point->Z, BN_value_one())) {
crypto/libressl/crypto/ec/ec2_smpl.c
422
if (!BN_copy(x, &point->X))
crypto/libressl/crypto/ec/ec2_smpl.c
427
if (!BN_copy(y, &point->Y))
crypto/libressl/crypto/ec/ec2_smpl.c
568
ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx)
crypto/libressl/crypto/ec/ec2_smpl.c
570
if (EC_POINT_is_at_infinity(group, point) > 0 || BN_is_zero(&point->Y))
crypto/libressl/crypto/ec/ec2_smpl.c
574
if (!EC_POINT_make_affine(group, point, ctx))
crypto/libressl/crypto/ec/ec2_smpl.c
576
return BN_GF2m_add(&point->Y, &point->X, &point->Y);
crypto/libressl/crypto/ec/ec2_smpl.c
582
ec_GF2m_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point)
crypto/libressl/crypto/ec/ec2_smpl.c
584
return BN_is_zero(&point->Z);
crypto/libressl/crypto/ec/ec2_smpl.c
593
ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx)
crypto/libressl/crypto/ec/ec2_smpl.c
601
if (EC_POINT_is_at_infinity(group, point) > 0)
crypto/libressl/crypto/ec/ec2_smpl.c
608
if (!point->Z_is_one)
crypto/libressl/crypto/ec/ec2_smpl.c
627
if (!BN_GF2m_add(lh, &point->X, &group->a))
crypto/libressl/crypto/ec/ec2_smpl.c
629
if (!field_mul(group, lh, lh, &point->X, ctx))
crypto/libressl/crypto/ec/ec2_smpl.c
631
if (!BN_GF2m_add(lh, lh, &point->Y))
crypto/libressl/crypto/ec/ec2_smpl.c
633
if (!field_mul(group, lh, lh, &point->X, ctx))
crypto/libressl/crypto/ec/ec2_smpl.c
637
if (!field_sqr(group, y2, &point->Y, ctx))
crypto/libressl/crypto/ec/ec2_smpl.c
704
ec_GF2m_simple_make_affine(const EC_GROUP * group, EC_POINT * point, BN_CTX * ctx)
crypto/libressl/crypto/ec/ec2_smpl.c
710
if (point->Z_is_one || EC_POINT_is_at_infinity(group, point) > 0)
crypto/libressl/crypto/ec/ec2_smpl.c
724
if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx))
crypto/libressl/crypto/ec/ec2_smpl.c
726
if (!BN_copy(&point->X, x))
crypto/libressl/crypto/ec/ec2_smpl.c
728
if (!BN_copy(&point->Y, y))
crypto/libressl/crypto/ec/ec2_smpl.c
730
if (!BN_one(&point->Z))
crypto/libressl/crypto/ec/ec_asn1.c
1043
EC_POINT *point = NULL;
crypto/libressl/crypto/ec/ec_asn1.c
1196
if ((point = EC_POINT_new(ret)) == NULL)
crypto/libressl/crypto/ec/ec_asn1.c
1204
if (!EC_POINT_oct2point(ret, point, params->base->data,
crypto/libressl/crypto/ec/ec_asn1.c
1231
if (!EC_GROUP_set_generator(ret, point, a, b)) {
crypto/libressl/crypto/ec/ec_asn1.c
1245
EC_POINT_free(point);
crypto/libressl/crypto/ec/ec_asn1.c
904
const EC_POINT *point = NULL;
crypto/libressl/crypto/ec/ec_asn1.c
933
if ((point = EC_GROUP_get0_generator(group)) == NULL) {
crypto/libressl/crypto/ec/ec_asn1.c
939
len = EC_POINT_point2oct(group, point, form, NULL, len, NULL);
crypto/libressl/crypto/ec/ec_asn1.c
948
if (!EC_POINT_point2oct(group, point, form, buffer, len, NULL)) {
crypto/libressl/crypto/ec/ec_check.c
101
if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx))
crypto/libressl/crypto/ec/ec_check.c
103
if (EC_POINT_is_at_infinity(group, point) <= 0) {
crypto/libressl/crypto/ec/ec_check.c
113
EC_POINT_free(point);
crypto/libressl/crypto/ec/ec_check.c
65
EC_POINT *point = NULL;
crypto/libressl/crypto/ec/ec_check.c
93
if ((point = EC_POINT_new(group)) == NULL)
crypto/libressl/crypto/ec/ec_key.c
317
EC_POINT *point = NULL;
crypto/libressl/crypto/ec/ec_key.c
329
if ((point = EC_POINT_new(eckey->group)) == NULL)
crypto/libressl/crypto/ec/ec_key.c
343
if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx)) {
crypto/libressl/crypto/ec/ec_key.c
347
if (EC_POINT_is_at_infinity(eckey->group, point) <= 0) {
crypto/libressl/crypto/ec/ec_key.c
360
if (!EC_POINT_mul(eckey->group, point, eckey->priv_key,
crypto/libressl/crypto/ec/ec_key.c
365
if (EC_POINT_cmp(eckey->group, point, eckey->pub_key,
crypto/libressl/crypto/ec/ec_key.c
374
EC_POINT_free(point);
crypto/libressl/crypto/ec/ec_key.c
383
EC_POINT *point = NULL;
crypto/libressl/crypto/ec/ec_key.c
394
point = EC_POINT_new(key->group);
crypto/libressl/crypto/ec/ec_key.c
396
if (!point)
crypto/libressl/crypto/ec/ec_key.c
404
if (!EC_POINT_set_affine_coordinates(key->group, point, x, y, ctx))
crypto/libressl/crypto/ec/ec_key.c
406
if (!EC_POINT_get_affine_coordinates(key->group, point, tx, ty, ctx))
crypto/libressl/crypto/ec/ec_key.c
416
if (!EC_KEY_set_public_key(key, point))
crypto/libressl/crypto/ec/ec_key.c
426
EC_POINT_free(point);
crypto/libressl/crypto/ec/ec_lcl.h
170
const EC_POINT *point, BN_CTX *);
crypto/libressl/crypto/ec/ec_lcl.h
172
const BIGNUM *p_scalar, const EC_POINT *point, BN_CTX *);
crypto/libressl/crypto/ec/ec_lcl.h
352
const EC_POINT *point, BN_CTX *);
crypto/libressl/crypto/ec/ec_lcl.h
354
const BIGNUM *p_scalar, const EC_POINT *point, BN_CTX *);
crypto/libressl/crypto/ec/ec_lcl.h
431
int ec_GFp_nistp224_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
crypto/libressl/crypto/ec/ec_lcl.h
440
int ec_GFp_nistp256_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
crypto/libressl/crypto/ec/ec_lcl.h
491
int ec_GFp_nistp521_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
crypto/libressl/crypto/ec/ec_lib.c
1000
if (EC_POINT_is_on_curve(group, point, ctx) <= 0) {
crypto/libressl/crypto/ec/ec_lib.c
1008
EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
crypto/libressl/crypto/ec/ec_lib.c
1011
return EC_POINT_set_affine_coordinates(group, point, x, y, ctx);
crypto/libressl/crypto/ec/ec_lib.c
1016
EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point,
crypto/libressl/crypto/ec/ec_lib.c
1019
return EC_POINT_set_affine_coordinates(group, point, x, y, ctx);
crypto/libressl/crypto/ec/ec_lib.c
1024
EC_POINT_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point,
crypto/libressl/crypto/ec/ec_lib.c
1031
if (group->meth != point->meth) {
crypto/libressl/crypto/ec/ec_lib.c
1035
return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
crypto/libressl/crypto/ec/ec_lib.c
1039
EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point,
crypto/libressl/crypto/ec/ec_lib.c
1042
return EC_POINT_get_affine_coordinates(group, point, x, y, ctx);
crypto/libressl/crypto/ec/ec_lib.c
1047
EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point,
crypto/libressl/crypto/ec/ec_lib.c
1050
return EC_POINT_get_affine_coordinates(group, point, x, y, ctx);
crypto/libressl/crypto/ec/ec_lib.c
1101
EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point)
crypto/libressl/crypto/ec/ec_lib.c
1107
if (group->meth != point->meth) {
crypto/libressl/crypto/ec/ec_lib.c
1111
return group->meth->is_at_infinity(group, point);
crypto/libressl/crypto/ec/ec_lib.c
1116
EC_POINT_is_on_curve(const EC_GROUP * group, const EC_POINT * point, BN_CTX * ctx)
crypto/libressl/crypto/ec/ec_lib.c
1122
if (group->meth != point->meth) {
crypto/libressl/crypto/ec/ec_lib.c
1126
return group->meth->is_on_curve(group, point, ctx);
crypto/libressl/crypto/ec/ec_lib.c
1147
EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx)
crypto/libressl/crypto/ec/ec_lib.c
1153
if (group->meth != point->meth) {
crypto/libressl/crypto/ec/ec_lib.c
1157
return group->meth->make_affine(group, point, ctx);
crypto/libressl/crypto/ec/ec_lib.c
1214
const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx)
crypto/libressl/crypto/ec/ec_lib.c
1222
if (g_scalar != NULL && point == NULL && p_scalar == NULL) {
crypto/libressl/crypto/ec/ec_lib.c
1233
if (g_scalar == NULL && point != NULL && p_scalar != NULL) {
crypto/libressl/crypto/ec/ec_lib.c
1241
return group->meth->mul_single_ct(group, r, p_scalar, point,
crypto/libressl/crypto/ec/ec_lib.c
1244
if (g_scalar != NULL && point != NULL && p_scalar != NULL) {
crypto/libressl/crypto/ec/ec_lib.c
1252
p_scalar, point, ctx);
crypto/libressl/crypto/ec/ec_lib.c
856
EC_POINT_free(EC_POINT * point)
crypto/libressl/crypto/ec/ec_lib.c
858
if (!point)
crypto/libressl/crypto/ec/ec_lib.c
861
if (point->meth->point_finish != 0)
crypto/libressl/crypto/ec/ec_lib.c
862
point->meth->point_finish(point);
crypto/libressl/crypto/ec/ec_lib.c
863
free(point);
crypto/libressl/crypto/ec/ec_lib.c
868
EC_POINT_clear_free(EC_POINT * point)
crypto/libressl/crypto/ec/ec_lib.c
870
if (!point)
crypto/libressl/crypto/ec/ec_lib.c
873
if (point->meth->point_clear_finish != 0)
crypto/libressl/crypto/ec/ec_lib.c
874
point->meth->point_clear_finish(point);
crypto/libressl/crypto/ec/ec_lib.c
875
else if (point->meth->point_finish != 0)
crypto/libressl/crypto/ec/ec_lib.c
876
point->meth->point_finish(point);
crypto/libressl/crypto/ec/ec_lib.c
877
freezero(point, sizeof *point);
crypto/libressl/crypto/ec/ec_lib.c
920
EC_POINT_method_of(const EC_POINT * point)
crypto/libressl/crypto/ec/ec_lib.c
922
return point->meth;
crypto/libressl/crypto/ec/ec_lib.c
927
EC_POINT_set_to_infinity(const EC_GROUP * group, EC_POINT * point)
crypto/libressl/crypto/ec/ec_lib.c
933
if (group->meth != point->meth) {
crypto/libressl/crypto/ec/ec_lib.c
937
return group->meth->point_set_to_infinity(group, point);
crypto/libressl/crypto/ec/ec_lib.c
941
EC_POINT_set_Jprojective_coordinates(const EC_GROUP *group, EC_POINT *point,
crypto/libressl/crypto/ec/ec_lib.c
948
if (group->meth != point->meth) {
crypto/libressl/crypto/ec/ec_lib.c
952
return group->meth->point_set_Jprojective_coordinates(group, point,
crypto/libressl/crypto/ec/ec_lib.c
958
const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx)
crypto/libressl/crypto/ec/ec_lib.c
964
if (group->meth != point->meth) {
crypto/libressl/crypto/ec/ec_lib.c
968
return group->meth->point_get_Jprojective_coordinates(group, point,
crypto/libressl/crypto/ec/ec_lib.c
973
EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
crypto/libressl/crypto/ec/ec_lib.c
976
return EC_POINT_set_Jprojective_coordinates(group, point, x, y, z, ctx);
crypto/libressl/crypto/ec/ec_lib.c
981
const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx)
crypto/libressl/crypto/ec/ec_lib.c
983
return EC_POINT_get_Jprojective_coordinates(group, point, x, y, z, ctx);
crypto/libressl/crypto/ec/ec_lib.c
987
EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point,
crypto/libressl/crypto/ec/ec_lib.c
994
if (group->meth != point->meth) {
crypto/libressl/crypto/ec/ec_lib.c
998
if (!group->meth->point_set_affine_coordinates(group, point, x, y, ctx))
crypto/libressl/crypto/ec/ec_oct.c
101
if (!group->meth->point_set_compressed_coordinates(group, point, x,
crypto/libressl/crypto/ec/ec_oct.c
104
if (EC_POINT_is_on_curve(group, point, ctx) <= 0) {
crypto/libressl/crypto/ec/ec_oct.c
112
EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
crypto/libressl/crypto/ec/ec_oct.c
115
return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
crypto/libressl/crypto/ec/ec_oct.c
120
EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point,
crypto/libressl/crypto/ec/ec_oct.c
123
return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
crypto/libressl/crypto/ec/ec_oct.c
128
EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point,
crypto/libressl/crypto/ec/ec_oct.c
137
if (group->meth != point->meth) {
crypto/libressl/crypto/ec/ec_oct.c
143
return ec_GFp_simple_point2oct(group, point,
crypto/libressl/crypto/ec/ec_oct.c
152
return ec_GF2m_simple_point2oct(group, point,
crypto/libressl/crypto/ec/ec_oct.c
156
return group->meth->point2oct(group, point, form, buf, len, ctx);
crypto/libressl/crypto/ec/ec_oct.c
160
EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point,
crypto/libressl/crypto/ec/ec_oct.c
168
if (group->meth != point->meth) {
crypto/libressl/crypto/ec/ec_oct.c
174
return ec_GFp_simple_oct2point(group, point,
crypto/libressl/crypto/ec/ec_oct.c
183
return ec_GF2m_simple_oct2point(group, point,
crypto/libressl/crypto/ec/ec_oct.c
187
return group->meth->oct2point(group, point, buf, len, ctx);
crypto/libressl/crypto/ec/ec_oct.c
74
EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point,
crypto/libressl/crypto/ec/ec_oct.c
82
if (group->meth != point->meth) {
crypto/libressl/crypto/ec/ec_oct.c
89
group, point, x, y_bit, ctx);
crypto/libressl/crypto/ec/ec_oct.c
98
group, point, x, y_bit, ctx);
crypto/libressl/crypto/ec/ec_print.c
103
if (point == NULL) {
crypto/libressl/crypto/ec/ec_print.c
109
ret = point;
crypto/libressl/crypto/ec/ec_print.c
112
if (point == NULL)
crypto/libressl/crypto/ec/ec_print.c
125
EC_POINT_point2hex(const EC_GROUP * group, const EC_POINT * point,
crypto/libressl/crypto/ec/ec_print.c
132
buf_len = EC_POINT_point2oct(group, point, form,
crypto/libressl/crypto/ec/ec_print.c
140
if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx)) {
crypto/libressl/crypto/ec/ec_print.c
165
EC_POINT * point, BN_CTX * ctx)
crypto/libressl/crypto/ec/ec_print.c
173
ret = EC_POINT_bn2point(group, tmp_bn, point, ctx);
crypto/libressl/crypto/ec/ec_print.c
60
EC_POINT_point2bn(const EC_GROUP * group, const EC_POINT * point,
crypto/libressl/crypto/ec/ec_print.c
66
buf_len = EC_POINT_point2oct(group, point, form,
crypto/libressl/crypto/ec/ec_print.c
74
if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx)) {
crypto/libressl/crypto/ec/ec_print.c
87
const BIGNUM * bn, EC_POINT * point, BN_CTX * ctx)
crypto/libressl/crypto/ec/eck_prn.c
157
const EC_POINT *point = NULL;
crypto/libressl/crypto/ec/eck_prn.c
220
if ((point = EC_GROUP_get0_generator(x)) == NULL) {
crypto/libressl/crypto/ec/eck_prn.c
231
if ((gen = EC_POINT_point2bn(x, point,
crypto/libressl/crypto/ec/ecp_oct.c
188
if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
crypto/libressl/crypto/ec/ecp_oct.c
201
ec_GFp_simple_point2oct(const EC_GROUP * group, const EC_POINT * point, point_conversion_form_t form,
crypto/libressl/crypto/ec/ecp_oct.c
216
if (EC_POINT_is_at_infinity(group, point) > 0) {
crypto/libressl/crypto/ec/ecp_oct.c
249
if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx))
crypto/libressl/crypto/ec/ecp_oct.c
306
ec_GFp_simple_oct2point(const EC_GROUP * group, EC_POINT * point,
crypto/libressl/crypto/ec/ecp_oct.c
338
return EC_POINT_set_to_infinity(group, point);
crypto/libressl/crypto/ec/ecp_oct.c
369
if (!EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx))
crypto/libressl/crypto/ec/ecp_oct.c
388
if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
crypto/libressl/crypto/ec/ecp_oct.c
71
EC_POINT * point, const BIGNUM * x_, int y_bit, BN_CTX * ctx)
crypto/libressl/crypto/ec/ecp_smpl.c
1028
if (!field_sqr(group, rh, &point->X, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
1031
if (!point->Z_is_one) {
crypto/libressl/crypto/ec/ecp_smpl.c
1032
if (!field_sqr(group, tmp, &point->Z, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
1047
if (!field_mul(group, rh, rh, &point->X, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
1054
if (!field_mul(group, rh, rh, &point->X, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
1069
if (!field_mul(group, rh, rh, &point->X, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
1077
if (!field_sqr(group, tmp, &point->Y, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
1192
ec_GFp_simple_make_affine(const EC_GROUP * group, EC_POINT * point, BN_CTX * ctx)
crypto/libressl/crypto/ec/ecp_smpl.c
1198
if (point->Z_is_one || EC_POINT_is_at_infinity(group, point) > 0)
crypto/libressl/crypto/ec/ecp_smpl.c
1212
if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
1214
if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
1216
if (!point->Z_is_one) {
crypto/libressl/crypto/ec/ecp_smpl.c
1514
const EC_POINT *point, BN_CTX *ctx)
crypto/libressl/crypto/ec/ecp_smpl.c
1532
if (point == NULL) {
crypto/libressl/crypto/ec/ecp_smpl.c
1536
if (!EC_POINT_copy(s, point))
crypto/libressl/crypto/ec/ecp_smpl.c
1714
const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx)
crypto/libressl/crypto/ec/ecp_smpl.c
1716
return ec_GFp_simple_mul_ct(group, r, scalar, point, ctx);
crypto/libressl/crypto/ec/ecp_smpl.c
1721
const BIGNUM *g_scalar, const BIGNUM *p_scalar, const EC_POINT *point,
crypto/libressl/crypto/ec/ecp_smpl.c
1724
return ec_wNAF_mul(group, r, g_scalar, 1, &point, &p_scalar, ctx);
crypto/libressl/crypto/ec/ecp_smpl.c
363
ec_GFp_simple_point_init(EC_POINT * point)
crypto/libressl/crypto/ec/ecp_smpl.c
365
BN_init(&point->X);
crypto/libressl/crypto/ec/ecp_smpl.c
366
BN_init(&point->Y);
crypto/libressl/crypto/ec/ecp_smpl.c
367
BN_init(&point->Z);
crypto/libressl/crypto/ec/ecp_smpl.c
368
point->Z_is_one = 0;
crypto/libressl/crypto/ec/ecp_smpl.c
375
ec_GFp_simple_point_finish(EC_POINT * point)
crypto/libressl/crypto/ec/ecp_smpl.c
377
BN_free(&point->X);
crypto/libressl/crypto/ec/ecp_smpl.c
378
BN_free(&point->Y);
crypto/libressl/crypto/ec/ecp_smpl.c
379
BN_free(&point->Z);
crypto/libressl/crypto/ec/ecp_smpl.c
384
ec_GFp_simple_point_clear_finish(EC_POINT * point)
crypto/libressl/crypto/ec/ecp_smpl.c
386
BN_clear_free(&point->X);
crypto/libressl/crypto/ec/ecp_smpl.c
387
BN_clear_free(&point->Y);
crypto/libressl/crypto/ec/ecp_smpl.c
388
BN_clear_free(&point->Z);
crypto/libressl/crypto/ec/ecp_smpl.c
389
point->Z_is_one = 0;
crypto/libressl/crypto/ec/ecp_smpl.c
409
ec_GFp_simple_point_set_to_infinity(const EC_GROUP * group, EC_POINT * point)
crypto/libressl/crypto/ec/ecp_smpl.c
411
point->Z_is_one = 0;
crypto/libressl/crypto/ec/ecp_smpl.c
412
BN_zero(&point->Z);
crypto/libressl/crypto/ec/ecp_smpl.c
419
EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z,
crypto/libressl/crypto/ec/ecp_smpl.c
431
if (!BN_nnmod(&point->X, x, &group->field, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
434
if (!group->meth->field_encode(group, &point->X, &point->X, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
439
if (!BN_nnmod(&point->Y, y, &group->field, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
442
if (!group->meth->field_encode(group, &point->Y, &point->Y, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
449
if (!BN_nnmod(&point->Z, z, &group->field, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
451
Z_is_one = BN_is_one(&point->Z);
crypto/libressl/crypto/ec/ecp_smpl.c
454
if (!group->meth->field_set_to_one(group, &point->Z, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
457
if (!group->meth->field_encode(group, &point->Z, &point->Z, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
461
point->Z_is_one = Z_is_one;
crypto/libressl/crypto/ec/ecp_smpl.c
472
const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx)
crypto/libressl/crypto/ec/ecp_smpl.c
484
if (!group->meth->field_decode(group, x, &point->X, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
488
if (!group->meth->field_decode(group, y, &point->Y, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
492
if (!group->meth->field_decode(group, z, &point->Z, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
497
if (!BN_copy(x, &point->X))
crypto/libressl/crypto/ec/ecp_smpl.c
501
if (!BN_copy(y, &point->Y))
crypto/libressl/crypto/ec/ecp_smpl.c
505
if (!BN_copy(z, &point->Z))
crypto/libressl/crypto/ec/ecp_smpl.c
518
ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP * group, EC_POINT * point,
crypto/libressl/crypto/ec/ecp_smpl.c
526
return EC_POINT_set_Jprojective_coordinates(group, point, x, y,
crypto/libressl/crypto/ec/ecp_smpl.c
531
ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP * group, const EC_POINT * point,
crypto/libressl/crypto/ec/ecp_smpl.c
539
if (EC_POINT_is_at_infinity(group, point) > 0) {
crypto/libressl/crypto/ec/ecp_smpl.c
561
if (!group->meth->field_decode(group, Z, &point->Z, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
565
Z_ = &point->Z;
crypto/libressl/crypto/ec/ecp_smpl.c
571
if (!group->meth->field_decode(group, x, &point->X, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
575
if (!group->meth->field_decode(group, y, &point->Y, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
580
if (!BN_copy(x, &point->X))
crypto/libressl/crypto/ec/ecp_smpl.c
584
if (!BN_copy(y, &point->Y))
crypto/libressl/crypto/ec/ecp_smpl.c
607
if (!group->meth->field_mul(group, x, &point->X, Z_2, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
624
if (!group->meth->field_mul(group, y, &point->Y, Z_3, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
969
ec_GFp_simple_invert(const EC_GROUP * group, EC_POINT * point, BN_CTX * ctx)
crypto/libressl/crypto/ec/ecp_smpl.c
971
if (EC_POINT_is_at_infinity(group, point) > 0 || BN_is_zero(&point->Y))
crypto/libressl/crypto/ec/ecp_smpl.c
975
return BN_usub(&point->Y, &group->field, &point->Y);
crypto/libressl/crypto/ec/ecp_smpl.c
980
ec_GFp_simple_is_at_infinity(const EC_GROUP * group, const EC_POINT * point)
crypto/libressl/crypto/ec/ecp_smpl.c
982
return BN_is_zero(&point->Z);
crypto/libressl/crypto/ec/ecp_smpl.c
987
ec_GFp_simple_is_on_curve(const EC_GROUP * group, const EC_POINT * point, BN_CTX * ctx)
crypto/libressl/crypto/ec/ecp_smpl.c
996
if (EC_POINT_is_at_infinity(group, point) > 0)
crypto/libressl/crypto/ecdsa/ecs_ossl.c
136
EC_POINT *point = NULL;
crypto/libressl/crypto/ecdsa/ecs_ossl.c
157
if ((point = EC_POINT_new(group)) == NULL) {
crypto/libressl/crypto/ecdsa/ecs_ossl.c
209
if (!EC_POINT_mul(group, point, k, NULL, NULL, ctx)) {
crypto/libressl/crypto/ecdsa/ecs_ossl.c
213
if (!EC_POINT_get_affine_coordinates(group, point, X, NULL,
crypto/libressl/crypto/ecdsa/ecs_ossl.c
242
EC_POINT_free(point);
crypto/libressl/crypto/ecdsa/ecs_ossl.c
451
EC_POINT *point = NULL;
crypto/libressl/crypto/ecdsa/ecs_ossl.c
509
if ((point = EC_POINT_new(group)) == NULL) {
crypto/libressl/crypto/ecdsa/ecs_ossl.c
513
if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
crypto/libressl/crypto/ecdsa/ecs_ossl.c
517
if (!EC_POINT_get_affine_coordinates(group, point, X, NULL, ctx)) {
crypto/libressl/crypto/ecdsa/ecs_ossl.c
532
EC_POINT_free(point);
crypto/libressl/crypto/gost/gostr341001_key.c
117
EC_POINT *point = NULL;
crypto/libressl/crypto/gost/gostr341001_key.c
129
if ((point = EC_POINT_new(key->group)) == NULL)
crypto/libressl/crypto/gost/gostr341001_key.c
144
if (EC_POINT_mul(key->group, point, NULL, key->pub_key, order,
crypto/libressl/crypto/gost/gostr341001_key.c
149
if (EC_POINT_is_at_infinity(key->group, point) == 0) {
crypto/libressl/crypto/gost/gostr341001_key.c
162
if (EC_POINT_mul(key->group, point, key->priv_key, NULL, NULL,
crypto/libressl/crypto/gost/gostr341001_key.c
167
if (EC_POINT_cmp(key->group, point, key->pub_key, ctx) != 0) {
crypto/libressl/crypto/gost/gostr341001_key.c
176
EC_POINT_free(point);
crypto/libressl/crypto/gost/gostr341001_key.c
185
EC_POINT *point = NULL;
crypto/libressl/crypto/gost/gostr341001_key.c
196
point = EC_POINT_new(key->group);
crypto/libressl/crypto/gost/gostr341001_key.c
197
if (point == NULL)
crypto/libressl/crypto/gost/gostr341001_key.c
204
if (EC_POINT_set_affine_coordinates(key->group, point, x, y,
crypto/libressl/crypto/gost/gostr341001_key.c
207
if (EC_POINT_get_affine_coordinates(key->group, point, tx, ty,
crypto/libressl/crypto/gost/gostr341001_key.c
218
if (GOST_KEY_set_public_key(key, point) == 0)
crypto/libressl/crypto/gost/gostr341001_key.c
227
EC_POINT_free(point);
crypto/libressl/crypto/x509/x509_crld.c
275
DIST_POINT *point = NULL;
crypto/libressl/crypto/x509/x509_crld.c
277
point = DIST_POINT_new();
crypto/libressl/crypto/x509/x509_crld.c
278
if (!point)
crypto/libressl/crypto/x509/x509_crld.c
283
ret = set_dist_point_name(&point->distpoint, ctx, cnf);
crypto/libressl/crypto/x509/x509_crld.c
289
if (!set_reasons(&point->reasons, cnf->value))
crypto/libressl/crypto/x509/x509_crld.c
293
point->CRLissuer =
crypto/libressl/crypto/x509/x509_crld.c
295
if (!point->CRLissuer)
crypto/libressl/crypto/x509/x509_crld.c
300
return point;
crypto/libressl/crypto/x509/x509_crld.c
303
DIST_POINT_free(point);
crypto/libressl/crypto/x509/x509_crld.c
320
DIST_POINT *point;
crypto/libressl/crypto/x509/x509_crld.c
327
point = crldp_from_section(ctx, dpsect);
crypto/libressl/crypto/x509/x509_crld.c
329
if (!point)
crypto/libressl/crypto/x509/x509_crld.c
331
if (!sk_DIST_POINT_push(crld, point)) {
crypto/libressl/crypto/x509/x509_crld.c
332
DIST_POINT_free(point);
crypto/libressl/crypto/x509/x509_crld.c
343
if (!(point = DIST_POINT_new()))
crypto/libressl/crypto/x509/x509_crld.c
345
if (!sk_DIST_POINT_push(crld, point)) {
crypto/libressl/crypto/x509/x509_crld.c
346
DIST_POINT_free(point);
crypto/libressl/crypto/x509/x509_crld.c
349
if (!(point->distpoint = DIST_POINT_NAME_new()))
crypto/libressl/crypto/x509/x509_crld.c
351
point->distpoint->name.fullname = gens;
crypto/libressl/crypto/x509/x509_crld.c
352
point->distpoint->type = 0;
crypto/libressl/crypto/x509/x509_crld.c
764
DIST_POINT *point;
crypto/libressl/crypto/x509/x509_crld.c
769
point = sk_DIST_POINT_value(crld, i);
crypto/libressl/crypto/x509/x509_crld.c
770
if (point->distpoint)
crypto/libressl/crypto/x509/x509_crld.c
771
print_distpoint(out, point->distpoint, indent);
crypto/libressl/crypto/x509/x509_crld.c
772
if (point->reasons)
crypto/libressl/crypto/x509/x509_crld.c
773
print_reasons(out, "Reasons", point->reasons,
crypto/libressl/crypto/x509/x509_crld.c
775
if (point->CRLissuer) {
crypto/libressl/crypto/x509/x509_crld.c
777
print_gens(out, point->CRLissuer, indent);
crypto/libressl/include/openssl/ec.h
423
void EC_POINT_free(EC_POINT *point);
crypto/libressl/include/openssl/ec.h
428
void EC_POINT_clear_free(EC_POINT *point);
crypto/libressl/include/openssl/ec.h
449
const EC_METHOD *EC_POINT_method_of(const EC_POINT *point);
crypto/libressl/include/openssl/ec.h
456
int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point);
crypto/libressl/include/openssl/ec.h
647
int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx);
crypto/libressl/include/openssl/ec.h
658
int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx);
crypto/libressl/ssl/ssl_kex.c
272
EC_POINT *point = NULL;
crypto/libressl/ssl/ssl_kex.c
280
if ((point = EC_POINT_new(group)) == NULL)
crypto/libressl/ssl/ssl_kex.c
286
if (!EC_GROUP_set_generator(group, point, order, NULL))
crypto/libressl/ssl/ssl_kex.c
300
EC_POINT_free(point);
crypto/libressl/ssl/ssl_kex.c
333
const EC_POINT *point;
crypto/libressl/ssl/ssl_kex.c
340
if ((point = EC_KEY_get0_public_key(ecdh)) == NULL)
crypto/libressl/ssl/ssl_kex.c
343
if ((ecp_len = EC_POINT_point2oct(group, point,
crypto/libressl/ssl/ssl_kex.c
348
if ((EC_POINT_point2oct(group, point, POINT_CONVERSION_UNCOMPRESSED,
crypto/libressl/ssl/ssl_kex.c
362
EC_POINT *point = NULL;
crypto/libressl/ssl/ssl_kex.c
371
if ((point = EC_POINT_new(group)) == NULL)
crypto/libressl/ssl/ssl_kex.c
373
if (EC_POINT_oct2point(group, point, CBS_data(cbs), CBS_len(cbs),
crypto/libressl/ssl/ssl_kex.c
376
if (!EC_KEY_set_public_key(ecdh, point))
crypto/libressl/ssl/ssl_kex.c
383
EC_POINT_free(point);
crypto/libressl/ssl/ssl_kex.c
392
const EC_POINT *point;
crypto/libressl/ssl/ssl_kex.c
402
if ((point = EC_KEY_get0_public_key(ecdh_peer)) == NULL)
crypto/libressl/ssl/ssl_kex.c
410
if (ECDH_compute_key(key, key_len, point, ecdh, NULL) <= 0)
crypto/openssh/sshkey.c
2698
sshkey_dump_ec_point(const EC_GROUP *group, const EC_POINT *point)
crypto/openssh/sshkey.c
2702
if (point == NULL) {
crypto/openssh/sshkey.c
2715
if (EC_POINT_get_affine_coordinates_GFp(group, point,
games/snake/snake/snake.c
105
void chase(struct point *, struct point *);
games/snake/snake/snake.c
106
int chk(const struct point *);
games/snake/snake/snake.c
113
struct point *point(struct point *, int, int);
games/snake/snake/snake.c
116
void right(const struct point *);
games/snake/snake/snake.c
119
void snrand(struct point *);
games/snake/snake/snake.c
122
int stretch(const struct point *);
games/snake/snake/snake.c
123
void surround(struct point *);
games/snake/snake/snake.c
125
void win(const struct point *);
games/snake/snake/snake.c
235
struct point *
games/snake/snake/snake.c
236
point(struct point *ps, int x, int y)
games/snake/snake/snake.c
466
snrand(struct point *sp)
games/snake/snake/snake.c
468
struct point p;
games/snake/snake/snake.c
586
chase(struct point *np, struct point *sp)
games/snake/snake/snake.c
589
struct point d;
games/snake/snake/snake.c
592
point(&d, you.col - sp->col, you.line - sp->line);
games/snake/snake/snake.c
609
point(&d, sp->col + mx[i], sp->line + my[i]);
games/snake/snake/snake.c
643
point(np, sp->col + mx[w], sp->line + my[w]);
games/snake/snake/snake.c
649
struct point p;
games/snake/snake/snake.c
654
point(&p, COLS / 2 - 8, LINES / 2 - 1);
games/snake/snake/snake.c
693
stretch(const struct point *ps)
games/snake/snake/snake.c
695
struct point p;
games/snake/snake/snake.c
697
point(&p, you.col, you.line);
games/snake/snake/snake.c
740
surround(struct point *ps)
games/snake/snake/snake.c
783
win(const struct point *ps)
games/snake/snake/snake.c
785
struct point x;
games/snake/snake/snake.c
790
point(&x, ps->col, ps->line);
games/snake/snake/snake.c
819
struct point tmp;
games/snake/snake/snake.c
87
#define pchar(point, c) mvaddch((point)->line + 1, (point)->col + 1, (c))
games/snake/snake/snake.c
872
chk(const struct point *sp)
games/snake/snake/snake.c
90
struct point you;
games/snake/snake/snake.c
91
struct point money;
games/snake/snake/snake.c
92
struct point finish;
games/snake/snake/snake.c
93
struct point snake[6];
sys/crypto/curve25519/curve25519.c
812
const uint8_t point[CURVE25519_KEY_SIZE])
sys/crypto/curve25519/curve25519.c
848
fe_frombytes(&x1, point);
sys/crypto/curve25519/curve25519.h
27
const uint8_t point[CURVE25519_KEY_SIZE]);
sys/dev/drm/amd/display/modules/color/color_gamma.c
470
struct gamma_point *point;
sys/dev/drm/amd/display/modules/color/color_gamma.c
500
point = &coeff[i].r;
sys/dev/drm/amd/display/modules/color/color_gamma.c
505
point = &coeff[i].g;
sys/dev/drm/amd/display/modules/color/color_gamma.c
510
point = &coeff[i].b;
sys/dev/drm/amd/display/modules/color/color_gamma.c
517
point->coeff = dc_fixpt_div(
sys/dev/drm/amd/display/modules/color/color_gamma.c
525
point->coeff = dc_fixpt_zero;
sys/dev/drm/amd/display/modules/color/color_gamma.c
527
point->coeff = dc_fixpt_from_int(2);
sys/dev/drm/amd/display/modules/color/color_gamma.c
533
point->left_index = index_left;
sys/dev/drm/amd/display/modules/color/color_gamma.c
534
point->right_index = index_right;
sys/dev/drm/amd/display/modules/color/color_gamma.c
535
point->pos = hw_pos;
sys/dev/drm/amd/display/modules/color/color_gamma.c
549
const struct gamma_point *point;
sys/dev/drm/amd/display/modules/color/color_gamma.c
554
point = &coeff->r;
sys/dev/drm/amd/display/modules/color/color_gamma.c
556
point = &coeff->g;
sys/dev/drm/amd/display/modules/color/color_gamma.c
558
point = &coeff->b;
sys/dev/drm/amd/display/modules/color/color_gamma.c
560
if ((point->left_index < 0) || (point->left_index > max_index)) {
sys/dev/drm/amd/display/modules/color/color_gamma.c
565
if ((point->right_index < 0) || (point->right_index > max_index)) {
sys/dev/drm/amd/display/modules/color/color_gamma.c
570
if (point->pos == HW_POINT_POSITION_MIDDLE)
sys/dev/drm/amd/display/modules/color/color_gamma.c
574
point->coeff,
sys/dev/drm/amd/display/modules/color/color_gamma.c
576
rgb[point->right_index].r,
sys/dev/drm/amd/display/modules/color/color_gamma.c
577
rgb[point->left_index].r)),
sys/dev/drm/amd/display/modules/color/color_gamma.c
578
rgb[point->left_index].r);
sys/dev/drm/amd/display/modules/color/color_gamma.c
582
point->coeff,
sys/dev/drm/amd/display/modules/color/color_gamma.c
584
rgb[point->right_index].g,
sys/dev/drm/amd/display/modules/color/color_gamma.c
585
rgb[point->left_index].g)),
sys/dev/drm/amd/display/modules/color/color_gamma.c
586
rgb[point->left_index].g);
sys/dev/drm/amd/display/modules/color/color_gamma.c
590
point->coeff,
sys/dev/drm/amd/display/modules/color/color_gamma.c
592
rgb[point->right_index].b,
sys/dev/drm/amd/display/modules/color/color_gamma.c
593
rgb[point->left_index].b)),
sys/dev/drm/amd/display/modules/color/color_gamma.c
594
rgb[point->left_index].b);
sys/dev/drm/amd/display/modules/color/color_gamma.c
595
else if (point->pos == HW_POINT_POSITION_LEFT) {
sys/dev/drm/drm_syncobj.c
171
u64 point,
sys/dev/drm/drm_syncobj.c
233
u32 handle, u64 point,
sys/dev/drm/include/drm/drm_syncobj.h
134
void drm_syncobj_replace_fence(struct drm_syncobj *syncobj, u64 point,
sys/dev/drm/include/drm/drm_syncobj.h
137
u32 handle, u64 point,