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

1234567

/freebsd-13-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-13-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-13-stable/crypto/openssl/crypto/ec/
H A Dec_oct.c18 int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, argument
27 if (!ec_point_is_compat(point, group)) {
34 return ec_GFp_simple_set_compressed_coordinates(group, point, x,
44 return ec_GF2m_simple_set_compressed_coordinates(group, point, x,
48 return group->meth->point_set_compressed_coordinates(group, point, x,
54 EC_POINT *point, const BIGNUM *x,
57 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
62 EC_POINT *point, const BIGNUM *x,
65 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
70 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, argument
53 EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
61 EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
101 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
129 EC_POINT_point2buf(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char **pbuf, BN_CTX *ctx) argument
[all...]
H A Dec_print.c15 const EC_POINT *point,
22 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx);
35 const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx)
53 if (point == NULL) {
59 ret = point;
62 if (ret != point)
76 const EC_POINT *point,
83 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx);
108 const char *buf, EC_POINT *point, BN_CTX *ctx)
116 ret = EC_POINT_bn2point(group, tmp_bn, point, ct
14 EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BIGNUM *ret, BN_CTX *ctx) argument
34 EC_POINT_bn2point(const EC_GROUP *group, const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx) argument
75 EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BN_CTX *ctx) argument
107 EC_POINT_hex2point(const EC_GROUP *group, const char *buf, EC_POINT *point, BN_CTX *ctx) argument
[all...]
H A Dec_check.c18 EC_POINT *point = NULL; local
49 if ((point = EC_POINT_new(group)) == NULL)
59 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx))
61 if (!EC_POINT_is_at_infinity(group, point)) {
70 EC_POINT_free(point);
H A Dec2_smpl.c213 int ec_GF2m_simple_point_init(EC_POINT *point) argument
215 point->X = BN_new();
216 point->Y = BN_new();
217 point->Z = BN_new();
219 if (point->X == NULL || point->Y == NULL || point->Z == NULL) {
220 BN_free(point->X);
221 BN_free(point->Y);
222 BN_free(point
229 ec_GF2m_simple_point_finish(EC_POINT *point) argument
237 ec_GF2m_simple_point_clear_finish(EC_POINT *point) argument
267 ec_GF2m_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
279 ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
311 ec_GF2m_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
470 ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
482 ec_GF2m_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
493 ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
605 ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
[all...]
H A Dec_lib.c680 void EC_POINT_free(EC_POINT *point) argument
682 if (!point)
685 if (point->meth->point_finish != 0)
686 point->meth->point_finish(point);
687 OPENSSL_free(point);
690 void EC_POINT_clear_free(EC_POINT *point) argument
692 if (!point)
695 if (point->meth->point_clear_finish != 0)
696 point
739 EC_POINT_method_of(const EC_POINT *point) argument
744 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
758 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
777 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
796 EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
820 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
828 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
837 EC_POINT_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
858 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
866 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
917 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
938 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
966 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1041 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 Decp_smpl.c315 int ec_GFp_simple_point_init(EC_POINT *point) argument
317 point->X = BN_new();
318 point->Y = BN_new();
319 point->Z = BN_new();
320 point->Z_is_one = 0;
322 if (point->X == NULL || point->Y == NULL || point->Z == NULL) {
323 BN_free(point->X);
324 BN_free(point
331 ec_GFp_simple_point_finish(EC_POINT *point) argument
338 ec_GFp_simple_point_clear_finish(EC_POINT *point) argument
360 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
368 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
428 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
477 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
495 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
936 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
945 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
950 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1161 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
[all...]
H A Dec2_oct.c34 EC_POINT *point,
97 if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
113 size_t ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, argument
130 if (EC_POINT_is_at_infinity(group, point)) {
169 if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx))
235 int ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point, argument
270 return EC_POINT_set_to_infinity(group, point);
305 if (!EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx))
325 * the point is on the curve.
327 if (!EC_POINT_set_affine_coordinates(group, point,
33 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.c17 EC_POINT *point,
143 if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
154 size_t ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, argument
171 if (EC_POINT_is_at_infinity(group, point)) {
209 if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx))
269 int ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point, argument
303 return EC_POINT_set_to_infinity(group, point);
336 if (!EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx))
354 * the point is on the curve.
356 if (!EC_POINT_set_affine_coordinates(group, point,
16 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-13-stable/contrib/bmake/unit-tests/
H A Dexport-variants.mk12 . warning At this point, no variable should be exported.
16 . warning At this point, no variable should be exported.
20 . warning At this point, no variable should be exported.
28 . warning At this point, a single variable should be exported.
32 . warning At this point, a single variable should be exported.
36 . warning At this point, a single variable should be exported.
H A Dvarname-dot-parsedir.exp1 make: "varname-dot-parsedir.mk" line 28: At this point, .PARSEDIR is undefined.
H A Dvarname-dot-parsefile.exp1 make: "varname-dot-parsefile.mk" line 23: At this point, .PARSEFILE is undefined.
H A Dunexport.mk12 # was not reachable though. At that point, backslash-newline has already
H A Dvarname-dollar.mk14 # At this point, the variable '$' is not defined. Therefore the second line
23 # At this point, the variable '$' is defined, therefore its value is printed
H A Dvarname-dot-alltargets.mk24 # this point.
/freebsd-13-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=15
/freebsd-13-stable/crypto/openssl/crypto/x509v3/
H A Dv3_crld.c208 DIST_POINT *point = DIST_POINT_new(); local
210 if (point == NULL)
215 ret = set_dist_point_name(&point->distpoint, ctx, cnf);
221 if (!set_reasons(&point->reasons, cnf->value))
224 point->CRLissuer = gnames_from_sectname(ctx, cnf->value);
225 if (!point->CRLissuer)
230 return point;
233 DIST_POINT_free(point);
251 DIST_POINT *point; local
259 point
463 DIST_POINT *point; local
[all...]
/freebsd-13-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-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_arm.S9 @ Word-aligned function entry point
15 @ Assume that "q" part of the floating-point registers is not used
22 @ Save floating-point parameters of the instrumented function
36 @ Restore floating-point parameters of the instrumented function
40 @ Word-aligned function entry point
46 @ Assume that "q" part of the floating-point registers is not used for the
53 @ Save the floating-point return value of the instrumented function
68 @ Restore the floating-point return value of the instrumented function
72 @ Word-aligned function entry point
78 @ Assume that "q" part of the floating-point register
[all...]
/freebsd-13-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-13-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...]

Completed in 255 milliseconds

1234567