Home
last modified time | relevance | path

Searched refs:point (Results 1 – 25 of 393) sorted by relevance

12345678910>>...16

/dragonfly/contrib/gcc-4.7/gcc/cp/
H A Dcfns.gperf64 #fclose -- POSIX thread cancellation point
68 #fgetc -- POSIX thread cancellation point
70 #fgets -- POSIX thread cancellation point
75 #fopen -- POSIX thread cancellation point
77 #fputc -- POSIX thread cancellation point
78 #fputs -- POSIX thread cancellation point
81 #fread -- POSIX thread cancellation point
93 #getc -- POSIX thread cancellation point
96 #gets -- POSIX thread cancellation point
149 #putc -- POSIX thread cancellation point
[all …]
/dragonfly/contrib/gdb-7/readline/
H A Dmbutil.c82 int point; local
97 if (seed < point)
109 point++;
119 point += tmp;
137 point += tmp;
142 return point;
166 tmp = mbrtowc (&wc, string + point, length - point, &ps);
179 prev = point;
188 prev = point;
268 int point;
[all …]
H A Dtext.c296 int point; local
309 point = rl_point + count;
310 if (point > rl_end)
311 point = rl_end;
314 return (point);
323 int point; local
344 rl_point = point;
397 int point; local
407 point = rl_point;
411 point = _rl_find_prev_mbchar (rl_line_buffer, point, MB_FIND_NONZERO);
[all …]
/dragonfly/crypto/libressl/crypto/ec/
H A Dec_oct.c82 if (group->meth != point->meth) { in EC_POINT_set_compressed_coordinates()
89 group, point, x, y_bit, ctx); in EC_POINT_set_compressed_coordinates()
98 group, point, x, y_bit, ctx); in EC_POINT_set_compressed_coordinates()
104 if (EC_POINT_is_on_curve(group, point, ctx) <= 0) { in EC_POINT_set_compressed_coordinates()
137 if (group->meth != point->meth) { in EC_POINT_point2oct()
143 return ec_GFp_simple_point2oct(group, point, in EC_POINT_point2oct()
152 return ec_GF2m_simple_point2oct(group, point, in EC_POINT_point2oct()
160 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, in EC_POINT_oct2point() argument
168 if (group->meth != point->meth) { in EC_POINT_oct2point()
174 return ec_GFp_simple_oct2point(group, point, in EC_POINT_oct2point()
[all …]
H A Dec2_smpl.c319 BN_init(&point->X); in ec_GF2m_simple_point_init()
320 BN_init(&point->Y); in ec_GF2m_simple_point_init()
321 BN_init(&point->Z); in ec_GF2m_simple_point_init()
330 BN_free(&point->X); in ec_GF2m_simple_point_finish()
331 BN_free(&point->Y); in ec_GF2m_simple_point_finish()
332 BN_free(&point->Z); in ec_GF2m_simple_point_finish()
343 point->Z_is_one = 0; in ec_GF2m_simple_point_clear_finish()
369 point->Z_is_one = 0; in ec_GF2m_simple_point_set_to_infinity()
370 BN_zero(&point->Z); in ec_GF2m_simple_point_set_to_infinity()
576 return BN_GF2m_add(&point->Y, &point->X, &point->Y); in ec_GF2m_simple_invert()
[all …]
H A Dec_lib.c856 EC_POINT_free(EC_POINT * point) in EC_POINT_free() argument
858 if (!point) in EC_POINT_free()
862 point->meth->point_finish(point); in EC_POINT_free()
863 free(point); in EC_POINT_free()
870 if (!point) in EC_POINT_clear_free()
874 point->meth->point_clear_finish(point); in EC_POINT_clear_free()
876 point->meth->point_finish(point); in EC_POINT_clear_free()
877 freezero(point, sizeof *point); in EC_POINT_clear_free()
922 return point->meth; in EC_POINT_method_of()
933 if (group->meth != point->meth) { in EC_POINT_set_to_infinity()
[all …]
H A Decp_smpl.c365 BN_init(&point->X); in ec_GFp_simple_point_init()
366 BN_init(&point->Y); in ec_GFp_simple_point_init()
367 BN_init(&point->Z); in ec_GFp_simple_point_init()
377 BN_free(&point->X); in ec_GFp_simple_point_finish()
378 BN_free(&point->Y); in ec_GFp_simple_point_finish()
434 if (!group->meth->field_encode(group, &point->X, &point->X, ctx)) in ec_GFp_simple_set_Jprojective_coordinates()
442 if (!group->meth->field_encode(group, &point->Y, &point->Y, ctx)) in ec_GFp_simple_set_Jprojective_coordinates()
457 if (!group->meth->field_encode(group, &point->Z, &point->Z, ctx)) in ec_GFp_simple_set_Jprojective_coordinates()
565 Z_ = &point->Z; in ec_GFp_simple_point_get_affine_coordinates()
975 return BN_usub(&point->Y, &group->field, &point->Y); in ec_GFp_simple_invert()
[all …]
H A Dec_print.c60 EC_POINT_point2bn(const EC_GROUP * group, const EC_POINT * point, in EC_POINT_point2bn() argument
66 buf_len = EC_POINT_point2oct(group, point, form, in EC_POINT_point2bn()
74 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx)) { in EC_POINT_point2bn()
87 const BIGNUM * bn, EC_POINT * point, BN_CTX * ctx) in EC_POINT_bn2point() argument
103 if (point == NULL) { in EC_POINT_bn2point()
109 ret = point; in EC_POINT_bn2point()
112 if (point == NULL) in EC_POINT_bn2point()
125 EC_POINT_point2hex(const EC_GROUP * group, const EC_POINT * point, in EC_POINT_point2hex() argument
132 buf_len = EC_POINT_point2oct(group, point, form, in EC_POINT_point2hex()
165 EC_POINT * point, BN_CTX * ctx) in EC_POINT_hex2point() argument
[all …]
H A Dec_check.c65 EC_POINT *point = NULL; in EC_GROUP_check() local
93 if ((point = EC_POINT_new(group)) == NULL) in EC_GROUP_check()
101 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx)) in EC_GROUP_check()
103 if (EC_POINT_is_at_infinity(group, point) <= 0) { in EC_GROUP_check()
113 EC_POINT_free(point); in EC_GROUP_check()
H A Dec_key.c317 EC_POINT *point = NULL; in EC_KEY_check_key() local
329 if ((point = EC_POINT_new(eckey->group)) == NULL) in EC_KEY_check_key()
347 if (EC_POINT_is_at_infinity(eckey->group, point) <= 0) { in EC_KEY_check_key()
360 if (!EC_POINT_mul(eckey->group, point, eckey->priv_key, in EC_KEY_check_key()
365 if (EC_POINT_cmp(eckey->group, point, eckey->pub_key, in EC_KEY_check_key()
374 EC_POINT_free(point); in EC_KEY_check_key()
383 EC_POINT *point = NULL; in EC_KEY_set_public_key_affine_coordinates() local
394 point = EC_POINT_new(key->group); in EC_KEY_set_public_key_affine_coordinates()
396 if (!point) in EC_KEY_set_public_key_affine_coordinates()
416 if (!EC_KEY_set_public_key(key, point)) in EC_KEY_set_public_key_affine_coordinates()
[all …]
H A Dec2_oct.c94 ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, in ec_GF2m_simple_set_compressed_coordinates() argument
159 if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx)) in ec_GF2m_simple_set_compressed_coordinates()
176 ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, in ec_GF2m_simple_point2oct() argument
192 if (EC_POINT_is_at_infinity(group, point) > 0) { in ec_GF2m_simple_point2oct()
228 if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx)) in ec_GF2m_simple_point2oct()
292 ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point, in ec_GF2m_simple_oct2point() argument
340 return EC_POINT_set_to_infinity(group, point); in ec_GF2m_simple_oct2point()
376 if (!EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx)) in ec_GF2m_simple_oct2point()
410 if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx)) in ec_GF2m_simple_oct2point()
H A Decp_oct.c71 EC_POINT * point, const BIGNUM * x_, int y_bit, BN_CTX * ctx) in ec_GFp_simple_set_compressed_coordinates() argument
188 if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx)) in ec_GFp_simple_set_compressed_coordinates()
201 ec_GFp_simple_point2oct(const EC_GROUP * group, const EC_POINT * point, point_conversion_form_t for… in ec_GFp_simple_point2oct() argument
216 if (EC_POINT_is_at_infinity(group, point) > 0) { in ec_GFp_simple_point2oct()
249 if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx)) in ec_GFp_simple_point2oct()
306 ec_GFp_simple_oct2point(const EC_GROUP * group, EC_POINT * point, in ec_GFp_simple_oct2point() argument
338 return EC_POINT_set_to_infinity(group, point); in ec_GFp_simple_oct2point()
369 if (!EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx)) in ec_GFp_simple_oct2point()
388 if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx)) in ec_GFp_simple_oct2point()
H A Dec2_mult.c264 const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) in ec_GF2m_montgomery_point_multiply() argument
270 if (r == point) { in ec_GF2m_montgomery_point_multiply()
275 if ((scalar == NULL) || BN_is_zero(scalar) || (point == NULL) || in ec_GF2m_montgomery_point_multiply()
276 EC_POINT_is_at_infinity(group, point) > 0) { in ec_GF2m_montgomery_point_multiply()
280 if (!point->Z_is_one) in ec_GF2m_montgomery_point_multiply()
302 if (!BN_GF2m_mod_arr(x1, &point->X, group->poly)) in ec_GF2m_montgomery_point_multiply()
332 if (!gf2m_Madd(group, &point->X, x2, z2, x1, z1, ctx)) in ec_GF2m_montgomery_point_multiply()
346 i = gf2m_Mxy(group, &point->X, &point->Y, x1, z1, x2, z2, ctx); in ec_GF2m_montgomery_point_multiply()
/dragonfly/games/snake/snake/
H A Dsnake.c65 struct point { struct
87 #define pchar(point, c) mvaddch((point)->line + 1, (point)->col + 1, (c)) argument
90 struct point you;
105 void chase(struct point *, struct point *);
113 struct point *point(struct point *, int, int);
235 struct point *
236 point(struct point *ps, int x, int y) in point() function
468 struct point p; in snrand()
586 chase(struct point *np, struct point *sp) in chase()
589 struct point d; in chase()
[all …]
/dragonfly/crypto/libressl/crypto/gost/
H A Dgostr341001_key.c117 EC_POINT *point = NULL; in GOST_KEY_check_key() local
129 if ((point = EC_POINT_new(key->group)) == NULL) in GOST_KEY_check_key()
144 if (EC_POINT_mul(key->group, point, NULL, key->pub_key, order, in GOST_KEY_check_key()
149 if (EC_POINT_is_at_infinity(key->group, point) == 0) { in GOST_KEY_check_key()
176 EC_POINT_free(point); in GOST_KEY_check_key()
185 EC_POINT *point = NULL; in GOST_KEY_set_public_key_affine_coordinates() local
196 point = EC_POINT_new(key->group); in GOST_KEY_set_public_key_affine_coordinates()
197 if (point == NULL) in GOST_KEY_set_public_key_affine_coordinates()
204 if (EC_POINT_set_affine_coordinates(key->group, point, x, y, in GOST_KEY_set_public_key_affine_coordinates()
218 if (GOST_KEY_set_public_key(key, point) == 0) in GOST_KEY_set_public_key_affine_coordinates()
[all …]
/dragonfly/contrib/ee/
H A Dee.c732 point++;
739 point++;
1403 point++; in prevline()
1418 point--;
3958 if ((*point == ' ') || (*point == '\t')) in Format()
4017 if ((*point == ' ') || (*point == '\t')) in Format()
4031 if ((*point == ' ') && (*(point + 1) == ' ')) in Format()
4044 if ((*point == '.') && (*(point + 1) == ' ')) in Format()
4552 if ((*point == ' ') || (*point == '\t')) in Auto_Format()
4620 if ((*point == ' ') || (*point == '\t')) in Auto_Format()
[all …]
/dragonfly/crypto/libressl/ssl/
H A Dssl_kex.c272 EC_POINT *point = NULL; in ssl_kex_dummy_ecdhe_x25519() local
280 if ((point = EC_POINT_new(group)) == NULL) in ssl_kex_dummy_ecdhe_x25519()
300 EC_POINT_free(point); in ssl_kex_dummy_ecdhe_x25519()
333 const EC_POINT *point; in ssl_kex_public_ecdhe_ecp() local
340 if ((point = EC_KEY_get0_public_key(ecdh)) == NULL) in ssl_kex_public_ecdhe_ecp()
343 if ((ecp_len = EC_POINT_point2oct(group, point, in ssl_kex_public_ecdhe_ecp()
362 EC_POINT *point = NULL; in ssl_kex_peer_public_ecdhe_ecp() local
371 if ((point = EC_POINT_new(group)) == NULL) in ssl_kex_peer_public_ecdhe_ecp()
376 if (!EC_KEY_set_public_key(ecdh, point)) in ssl_kex_peer_public_ecdhe_ecp()
383 EC_POINT_free(point); in ssl_kex_peer_public_ecdhe_ecp()
[all …]
/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_crld.c275 DIST_POINT *point = NULL; in crldp_from_section() local
278 if (!point) in crldp_from_section()
293 point->CRLissuer = in crldp_from_section()
295 if (!point->CRLissuer) in crldp_from_section()
300 return point; in crldp_from_section()
303 DIST_POINT_free(point); in crldp_from_section()
320 DIST_POINT *point; in v2i_crld() local
329 if (!point) in v2i_crld()
764 DIST_POINT *point; in i2r_crldp() local
770 if (point->distpoint) in i2r_crldp()
[all …]
/dragonfly/contrib/tcsh-6/
H A Dcsh-mode.el509 (let ((beg (point)))
511 (delete-region beg (point)))
523 (point)))
544 (setq start (point))
549 (setq start (point)))
560 (buffer-substring (point)
563 (point))))
770 (point)))
776 (end (point))
782 (point))))
[all …]
/dragonfly/contrib/gdb-7/gdb/
H A Dcompleter.c48 int point);
509 char *line_buffer, int point, in VEC()
531 tmp_command = (char *) alloca (point + 1); in VEC()
537 strncpy (tmp_command, line_buffer, point); in VEC()
538 tmp_command[point] = '\0'; in VEC()
542 word = tmp_command + point - strlen (text); in VEC()
544 if (point == 0) in VEC()
577 if (q != tmp_command + point) in VEC()
612 if (p == tmp_command + point) in VEC()
772 point, handle_completions); in VEC()
[all …]
/dragonfly/sys/dev/drm/amd/display/modules/color/
H A Dcolor_gamma.c500 point = &coeff[i].r; in build_custom_gamma_mapping_coefficients_worker()
505 point = &coeff[i].g; in build_custom_gamma_mapping_coefficients_worker()
535 point->pos = hw_pos; in build_custom_gamma_mapping_coefficients_worker()
554 point = &coeff->r; in calculate_mapped_value()
556 point = &coeff->g; in calculate_mapped_value()
558 point = &coeff->b; in calculate_mapped_value()
560 if ((point->left_index < 0) || (point->left_index > max_index)) { in calculate_mapped_value()
565 if ((point->right_index < 0) || (point->right_index > max_index)) { in calculate_mapped_value()
574 point->coeff, in calculate_mapped_value()
582 point->coeff, in calculate_mapped_value()
[all …]
/dragonfly/crypto/libressl/crypto/ecdsa/
H A Decs_ossl.c136 EC_POINT *point = NULL; in ecdsa_sign_setup() local
157 if ((point = EC_POINT_new(group)) == NULL) { in ecdsa_sign_setup()
209 if (!EC_POINT_mul(group, point, k, NULL, NULL, ctx)) { in ecdsa_sign_setup()
213 if (!EC_POINT_get_affine_coordinates(group, point, X, NULL, in ecdsa_sign_setup()
242 EC_POINT_free(point); in ecdsa_sign_setup()
451 EC_POINT *point = NULL; in ecdsa_do_verify() local
509 if ((point = EC_POINT_new(group)) == NULL) { in ecdsa_do_verify()
513 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) { in ecdsa_do_verify()
517 if (!EC_POINT_get_affine_coordinates(group, point, X, NULL, ctx)) { in ecdsa_do_verify()
532 EC_POINT_free(point); in ecdsa_do_verify()
/dragonfly/contrib/wpa_supplicant/src/crypto/
H A Dcrypto_wolfssl.c1397 mp_forcezero(point->x); in crypto_ec_point_deinit()
1398 mp_forcezero(point->y); in crypto_ec_point_deinit()
1399 mp_forcezero(point->z); in crypto_ec_point_deinit()
1401 wc_ecc_del_point(point); in crypto_ec_point_deinit()
1446 ecc_point *point = NULL; in crypto_ec_point_from_bin() local
1453 if (!point) in crypto_ec_point_from_bin()
1461 mp_set(point->z, 1); in crypto_ec_point_from_bin()
1467 point = NULL; in crypto_ec_point_from_bin()
1563 if (mp_sub(&e->prime, point->y, point->y) != MP_OKAY) in crypto_ec_point_invert()
1741 ecc_point *point = NULL; in crypto_ecdh_set_peerkey() local
[all …]
/dragonfly/contrib/gcc-4.7/gcc/config/i386/
H A Dconstraints.md68 ;; Floating-point register constraints.
71 "Any 80387 floating-point (stack) register.")
75 "Top of 80387 floating-point stack (@code{%st(0)}).")
79 "Second from top of 80387 floating-point stack (@code{%st(1)}).")
81 ;; Vector registers (also used for plain floating point nowadays).
95 ;; f x87 register when 80387 floating point arithmetic is enabled
174 ;; Floating-point constant constraints.
179 "Standard 80387 floating point constant."
185 "Standard SSE floating point constant."
/dragonfly/contrib/gmp/mpf/
H A Dout_str.c82 const char *point = GMP_DECIMAL_POINT; in mpf_out_str() local
83 size_t pointlen = strlen (point); in mpf_out_str()
85 fwrite (point, 1, pointlen, stream); in mpf_out_str()

12345678910>>...16