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

123456

/freebsd-10.0-release/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.0-release/contrib/ntp/scripts/
H A DVersionName7 case $point in
9 NAME="${NAME}p$point"
13 *) echo "Unexpected value for 'point' <$point>!"
/freebsd-10.0-release/contrib/ntp/
H A Dpackageinfo.sh12 point=8
/freebsd-10.0-release/crypto/openssl/crypto/ec/
H A Dec_oct.c71 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, argument
80 if (group->meth != point->meth)
89 group, point, x, y_bit, ctx);
98 group, point, x, y_bit, ctx);
101 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
105 int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, argument
114 if (group->meth != point->meth)
123 group, point, x, y_bit, ctx);
126 group, point, x, y_bit, ctx);
128 return group->meth->point_set_compressed_coordinates(group, point,
132 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
167 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,
68 buf_len = EC_POINT_point2oct(group, point, form,
76 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
91 EC_POINT *point,
109 if (point == NULL)
118 ret = point;
122 if (point == NULL)
136 const EC_POINT *point,
144 buf_len = EC_POINT_point2oct(group, point, form,
152 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
89 EC_POINT_bn2point(const EC_GROUP *group, const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx) argument
135 EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BN_CTX *ctx) argument
179 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
98 if ((point = EC_POINT_new(group)) == NULL) goto err;
106 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx)) goto err;
107 if (!EC_POINT_is_at_infinity(group, point))
120 if (point)
121 EC_POINT_free(point);
H A Dec2_smpl.c305 int ec_GF2m_simple_point_init(EC_POINT *point) argument
307 BN_init(&point->X);
308 BN_init(&point->Y);
309 BN_init(&point->Z);
315 void ec_GF2m_simple_point_finish(EC_POINT *point) argument
317 BN_free(&point->X);
318 BN_free(&point->Y);
319 BN_free(&point->Z);
324 void ec_GF2m_simple_point_clear_finish(EC_POINT *point) argument
326 BN_clear_free(&point
348 ec_GF2m_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
359 ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
386 ec_GF2m_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
529 ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
541 ec_GF2m_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
551 ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
651 ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
[all...]
H A Decp_smpl.c355 int ec_GFp_simple_point_init(EC_POINT *point) argument
357 BN_init(&point->X);
358 BN_init(&point->Y);
359 BN_init(&point->Z);
360 point->Z_is_one = 0;
366 void ec_GFp_simple_point_finish(EC_POINT *point) argument
368 BN_free(&point->X);
369 BN_free(&point->Y);
370 BN_free(&point->Z);
374 void ec_GFp_simple_point_clear_finish(EC_POINT *point) argument
394 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
402 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
462 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
515 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
529 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
925 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
935 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
941 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1143 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
[all...]
H A Dec_lib.c727 void EC_POINT_free(EC_POINT *point) argument
729 if (!point) return;
731 if (point->meth->point_finish != 0)
732 point->meth->point_finish(point);
733 OPENSSL_free(point);
737 void EC_POINT_clear_free(EC_POINT *point) argument
739 if (!point) return;
741 if (point->meth->point_clear_finish != 0)
742 point
787 EC_POINT_method_of(const EC_POINT *point) argument
793 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
809 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
826 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
843 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
860 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
877 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
894 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
959 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
975 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1007 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1060 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.c309 EC_POINT *point = NULL; local
325 if ((point = EC_POINT_new(eckey->group)) == NULL)
334 /* testing whether pub_key * order is the point at infinity */
341 if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx))
346 if (!EC_POINT_is_at_infinity(eckey->group, point))
361 if (!EC_POINT_mul(eckey->group, point, eckey->priv_key,
367 if (EC_POINT_cmp(eckey->group, point, eckey->pub_key,
378 if (point != NULL)
379 EC_POINT_free(point);
387 EC_POINT *point local
[all...]
H A Dec2_oct.c91 int ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, argument
149 if (!EC_POINT_set_affine_coordinates_GF2m(group, point, x, y, ctx)) goto err;
165 size_t ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, argument
182 if (EC_POINT_is_at_infinity(group, point))
225 if (!EC_POINT_get_affine_coordinates_GF2m(group, point, x, y, ctx)) goto err;
297 int ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point, argument
336 return EC_POINT_set_to_infinity(group, point);
370 if (!EC_POINT_set_compressed_coordinates_GF2m(group, point, x, y_bit, ctx)) goto err;
390 if (!EC_POINT_set_affine_coordinates_GF2m(group, point, x, y, ctx)) goto err;
393 if (!EC_POINT_is_on_curve(group, point, ct
[all...]
H A Decp_oct.c70 int ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, argument
187 if (!EC_POINT_set_affine_coordinates_GFp(group, point, x, y, ctx)) goto err;
199 size_t ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, argument
216 if (EC_POINT_is_at_infinity(group, point))
258 if (!EC_POINT_get_affine_coordinates_GFp(group, point, x, y, ctx)) goto err;
325 int ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point, argument
364 return EC_POINT_set_to_infinity(group, point);
397 if (!EC_POINT_set_compressed_coordinates_GFp(group, point, x, y_bit, ctx)) goto err;
416 if (!EC_POINT_set_affine_coordinates_GFp(group, point, x, y, ctx)) goto err;
419 if (!EC_POINT_is_on_curve(group, point, ct
[all...]
/freebsd-10.0-release/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.0-release/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.0-release/crypto/openssh/
H A Dbufec.c39 * point type header.
47 * uncompressed point. Fortunately OpenSSL handles the gory details for us.
51 const EC_POINT *point)
61 len = EC_POINT_point2oct(curve, point, POINT_CONVERSION_UNCOMPRESSED,
64 error("%s: giant EC point: len = %lu (max %u)",
70 if (EC_POINT_point2oct(curve, point, POINT_CONVERSION_UNCOMPRESSED,
89 const EC_POINT *point)
91 if (buffer_put_ecpoint_ret(buffer, curve, point) == -1)
97 EC_POINT *point)
105 error("%s: invalid point", __func_
50 buffer_put_ecpoint_ret(Buffer *buffer, const EC_GROUP *curve, const EC_POINT *point) argument
88 buffer_put_ecpoint(Buffer *buffer, const EC_GROUP *curve, const EC_POINT *point) argument
96 buffer_get_ecpoint_ret(Buffer *buffer, const EC_GROUP *curve, EC_POINT *point) argument
139 buffer_get_ecpoint(Buffer *buffer, const EC_GROUP *curve, EC_POINT *point) argument
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/x509v3/
H A Dv3_crld.c275 DIST_POINT *point = NULL; local
276 point = DIST_POINT_new();
277 if (!point)
283 ret = set_dist_point_name(&point->distpoint, ctx, cnf);
290 if (!set_reasons(&point->reasons, cnf->value))
295 point->CRLissuer =
297 if (!point->CRLissuer)
302 return point;
306 if (point)
307 DIST_POINT_free(point);
321 DIST_POINT *point; local
567 DIST_POINT *point; local
[all...]
/freebsd-10.0-release/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.0-release/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.0-release/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.0-release/contrib/groff/src/preproc/grn/
H A Dgprint.h68 typedef struct point { struct
70 struct point *nextpt;
/freebsd-10.0-release/crypto/openssl/crypto/ecdsa/
H A Decs_ossl.c359 EC_POINT *point = NULL; local
440 if ((point = EC_POINT_new(group)) == NULL)
445 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx))
453 point, X, NULL, ctx))
463 point, X, NULL, ctx))
480 if (point)
481 EC_POINT_free(point);
/freebsd-10.0-release/contrib/texinfo/info/
H A Dsession.c336 /* Reset the remembered pagetop and point of WINDOW to WINDOW's current
353 info_win->points[info_win->current] = window->point;
379 /* If this node, the current pagetop, and the current point are the
387 && info_win->points[info_win->current] == window->point)
391 location of point in this window. Because we are updating pagetops
407 info_win->points[info_win->nodes_index] = window->point;
527 /* Make sure that point appears in this window. */
531 window->point =
572 /* Immediately make WINDOW->point visible on the screen, and move the
596 /* Move WINDOW->point fro
652 register int point, len; local
672 register int point; local
725 long point; local
774 long point; local
3008 long point; local
[all...]

Completed in 188 milliseconds

123456