Searched refs:point (Results 1 - 25 of 152) sorted by relevance

1234567

/freebsd-10-stable/contrib/netbsd-tests/usr.bin/xlint/lint1/
H A Dd_c99_anon_struct.c5 struct point { struct
12 struct point top_left;
13 struct point bottom_right;
/freebsd-10-stable/crypto/openssh/
H A Dbufec.c33 const EC_POINT *point)
37 if ((ret = sshbuf_put_ec(buffer, point, curve)) != 0) {
46 const EC_POINT *point)
48 if (buffer_put_ecpoint_ret(buffer, curve, point) == -1)
54 EC_POINT *point)
58 if ((ret = sshbuf_get_ec(buffer, point, curve)) != 0) {
67 EC_POINT *point)
69 if (buffer_get_ecpoint_ret(buffer, curve, point) == -1)
32 buffer_put_ecpoint_ret(Buffer *buffer, const EC_GROUP *curve, const EC_POINT *point) argument
45 buffer_put_ecpoint(Buffer *buffer, const EC_GROUP *curve, const EC_POINT *point) argument
53 buffer_get_ecpoint_ret(Buffer *buffer, const EC_GROUP *curve, EC_POINT *point) argument
66 buffer_get_ecpoint(Buffer *buffer, const EC_GROUP *curve, EC_POINT *point) argument
/freebsd-10-stable/contrib/groff/src/libs/libgroff/
H A Diftoa.c29 /* room for a -, INT_DIGITS digits, a decimal point, and a terminating '\0' */
32 int point = 0; local
39 if (++point == decimal_point)
41 } while (i != 0 || point < decimal_point);
47 if (++point == decimal_point)
49 } while (i != 0 || point < decimal_point);
/freebsd-10-stable/contrib/ntp/scripts/build/
H A DVersionName22 case "$repotype::$point" in
26 NAME="${NAME}p${point}"
35 NAME="${NAME}p${point}"
37 *) NAME="${NAME}.${point}"
43 *) echo "Unexpected value for 'point' <$point>! (repotype is <$repotype>)"
H A DUpdatePoint88 # Do we want to bump the point?
90 # Do we want to bump the beta point?
92 # Do we want to change the RC point? (n=no, z=empty rcpoint and zero
99 # if we are not in a beta or RC state, enter beta unless point is NEW.
101 # - bump the beta point
109 # - - - (bump-point) and set rcpoint to 0 (and fall thru, so -RC1 is first)
110 # - - bump the RC point
112 # for dev, we only want to bump-point and possibly clear prerelease,
117 case "$point" in
130 # echo "Checking <$betapoint::$rcpoint::$point>"
[all...]
/freebsd-10-stable/crypto/openssl/crypto/ec/
H A Dec_oct.c72 EC_POINT *point, const BIGNUM *x,
81 if (group->meth != point->meth) {
88 return ec_GFp_simple_set_compressed_coordinates(group, point, x,
98 return ec_GF2m_simple_set_compressed_coordinates(group, point, x,
102 return group->meth->point_set_compressed_coordinates(group, point, x,
108 EC_POINT *point, const BIGNUM *x,
117 if (group->meth != point->meth) {
124 return ec_GFp_simple_set_compressed_coordinates(group, point, x,
127 return ec_GF2m_simple_set_compressed_coordinates(group, point, x,
130 return group->meth->point_set_compressed_coordinates(group, point,
71 EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
107 EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
135 EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
166 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
H A Dec_print.c60 const EC_POINT *point,
67 buf_len = EC_POINT_point2oct(group, point, form, NULL, 0, ctx);
74 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx)) {
87 const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx)
104 if (point == NULL) {
110 ret = point;
113 if (point == NULL)
127 const EC_POINT *point,
134 buf_len = EC_POINT_point2oct(group, point, form, NULL, 0, ctx);
141 if (!EC_POINT_point2oct(group, point, for
59 EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BIGNUM *ret, BN_CTX *ctx) argument
86 EC_POINT_bn2point(const EC_GROUP *group, const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx) argument
126 EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BN_CTX *ctx) argument
165 EC_POINT_hex2point(const EC_GROUP *group, const char *buf, EC_POINT *point, BN_CTX *ctx) argument
[all...]
H A Dec_check.c64 EC_POINT *point = NULL; local
94 if ((point = EC_POINT_new(group)) == NULL)
103 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx))
105 if (!EC_POINT_is_at_infinity(group, point)) {
117 if (point)
118 EC_POINT_free(point);
H A Dec2_smpl.c330 int ec_GF2m_simple_point_init(EC_POINT *point) argument
332 BN_init(&point->X);
333 BN_init(&point->Y);
334 BN_init(&point->Z);
339 void ec_GF2m_simple_point_finish(EC_POINT *point) argument
341 BN_free(&point->X);
342 BN_free(&point->Y);
343 BN_free(&point->Z);
347 void ec_GF2m_simple_point_clear_finish(EC_POINT *point) argument
349 BN_clear_free(&point
376 ec_GF2m_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
388 ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
420 ec_GF2m_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
580 ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
592 ec_GF2m_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
603 ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
719 ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
[all...]
H A Decp_smpl.c361 int ec_GFp_simple_point_init(EC_POINT *point) argument
363 BN_init(&point->X);
364 BN_init(&point->Y);
365 BN_init(&point->Z);
366 point->Z_is_one = 0;
371 void ec_GFp_simple_point_finish(EC_POINT *point) argument
373 BN_free(&point->X);
374 BN_free(&point->Y);
375 BN_free(&point->Z);
378 void ec_GFp_simple_point_clear_finish(EC_POINT *point) argument
399 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
407 ec_GFp_simple_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
468 ec_GFp_simple_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
518 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
536 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
981 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
990 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
995 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1209 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
[all...]
H A Dec_lib.c695 void EC_POINT_free(EC_POINT *point) argument
697 if (!point)
700 if (point->meth->point_finish != 0)
701 point->meth->point_finish(point);
702 OPENSSL_free(point);
705 void EC_POINT_clear_free(EC_POINT *point) argument
707 if (!point)
710 if (point->meth->point_clear_finish != 0)
711 point
752 EC_POINT_method_of(const EC_POINT *point) argument
757 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
771 EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
790 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
809 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
827 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
845 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
863 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
923 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
944 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
972 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1020 EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx) argument
[all...]
H A Dec_key.c299 EC_POINT *point = NULL; local
313 if ((point = EC_POINT_new(eckey->group)) == NULL)
321 /* testing whether pub_key * order is the point at infinity */
327 if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx)) {
331 if (!EC_POINT_is_at_infinity(eckey->group, point)) {
344 if (!EC_POINT_mul(eckey->group, point, eckey->priv_key,
349 if (EC_POINT_cmp(eckey->group, point, eckey->pub_key, ctx) != 0) {
358 if (point != NULL)
359 EC_POINT_free(point);
368 EC_POINT *point local
[all...]
H A Dec2_oct.c93 EC_POINT *point,
156 if (!EC_POINT_set_affine_coordinates_GF2m(group, point, x, y, ctx))
173 size_t ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, argument
190 if (EC_POINT_is_at_infinity(group, point)) {
229 if (!EC_POINT_get_affine_coordinates_GF2m(group, point, x, y, ctx))
297 int ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point, argument
332 return EC_POINT_set_to_infinity(group, point);
367 (group, point, x, y_bit, ctx))
385 if (!EC_POINT_set_affine_coordinates_GF2m(group, point, x, y, ctx))
390 if (EC_POINT_is_on_curve(group, point, ct
92 ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
[all...]
H A Decp_oct.c72 EC_POINT *point,
198 if (!EC_POINT_set_affine_coordinates_GFp(group, point, x, y, ctx))
210 size_t ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, argument
227 if (EC_POINT_is_at_infinity(group, point)) {
265 if (!EC_POINT_get_affine_coordinates_GFp(group, point, x, y, ctx))
327 int ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point, argument
361 return EC_POINT_set_to_infinity(group, point);
395 (group, point, x, y_bit, ctx))
411 if (!EC_POINT_set_affine_coordinates_GFp(group, point, x, y, ctx))
416 if (EC_POINT_is_on_curve(group, point, ct
71 ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
[all...]
/freebsd-10-stable/contrib/libreadline/
H A Dmbutil.c82 int point; local
93 point = seed + _rl_adjust_point (string, seed, &ps);
95 started byte. So correct the point and consume count */
96 if (seed < point)
101 tmp = mbrtowc (&wc, string+point, strlen(string + point), &ps);
105 point++;
115 point += tmp;
130 tmp = mbrtowc (&wc, string + point, strlen (string + point),
149 int prev, non_zero_prev, point, length; local
[all...]
/freebsd-10-stable/contrib/gdb/gdb/
H A Dcompleter.h22 extern char **complete_line (const char *text, char *line_buffer, int point);
H A Dcompleter.c46 int point);
49 (1) In figuring out where to point the TEXT parameter to the
380 complete_line (const char *text, char *line_buffer, int point)
399 tmp_command = (char *) alloca (point + 1);
402 strncpy (tmp_command, line_buffer, point);
403 tmp_command[point] = '\0';
405 to point, we can find the equivalent position in tmp_command
407 word = tmp_command + point - strlen (text);
409 if (point == 0)
442 if (q != tmp_command + point)
379 complete_line(const char *text, char *line_buffer, int point) argument
626 line_completion_function(const char *text, int matches, char *line_buffer, int point) argument
[all...]
/freebsd-10-stable/contrib/ntp/
H A Dpackageinfo.sh13 # To bump the -dev point (p) number, UpdatePoint needs no changes here.
20 # minor version, empty prerelease, and set point=NEW. UpdatePoint
21 # will empty point and rcpoint, and set betapoint=0.
26 # -RC1 during the runup to a -stable point release, UpdatePoint needs
27 # no changes here. Both betapoint and point will be incremented, and
36 # To skip all -stable prereleases and move from one primary or point
37 # release directly to the next point release, set rcpoint=GO.
86 point=12
/freebsd-10-stable/crypto/openssl/crypto/x509v3/
H A Dv3_crld.c256 DIST_POINT *point = NULL; local
257 point = DIST_POINT_new();
258 if (!point)
263 ret = set_dist_point_name(&point->distpoint, ctx, cnf);
269 if (!set_reasons(&point->reasons, cnf->value))
272 point->CRLissuer = gnames_from_sectname(ctx, cnf->value);
273 if (!point->CRLissuer)
278 return point;
281 if (point)
282 DIST_POINT_free(point);
297 DIST_POINT *point; local
519 DIST_POINT *point; local
[all...]
/freebsd-10-stable/contrib/apr-util/buckets/
H A Dapr_buckets_refcount.c20 apr_size_t point)
25 if ((rv = apr_bucket_simple_split(a, point)) != APR_SUCCESS) {
H A Dapr_buckets.c32 apr_size_t point)
H A Dapr_buckets_simple.c29 apr_size_t point)
33 if (point > a->length) {
39 a->length = point;
40 b->length -= point;
41 b->start += point;
/freebsd-10-stable/contrib/tcsh/
H A Dcsh-mode.el101 point is at the left margin or in the line's indentation; otherwise
283 "Return the vertical position of point in the buffer.
285 (+ (count-lines (point-min) (point))
290 (begin-re end-re anchor-point &optional balance-list)
294 (;; Locate the next compound begin keyword bounded by point-min
295 (match-point (if (re-search-backward begin-re (point-min) t)
297 (nest-column (if (zerop match-point)
300 (goto-char match-point)
[all...]
/freebsd-10-stable/contrib/ee/
H A Dee.c192 unsigned char *point; /* points to current position in line */ variable
568 curr_line->line = point = malloc(10);
707 point = resiz_line(10, curr_line, position);
709 temp = point;
717 while (point < temp)
723 *point = character; /* insert new character */
728 point++;
735 point++;
761 midscreen(scr_vert, point);
769 draw_line(scr_vert, scr_horz, point, positio
3746 midscreen(min(scr_vert, last_line), point); local
[all...]
/freebsd-10-stable/contrib/groff/src/preproc/grn/
H A Dgprint.h68 typedef struct point { struct
70 struct point *nextpt;

Completed in 143 milliseconds

1234567