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

12345678

/freebsd-current/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-current/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-current/crypto/openssl/crypto/ec/
H A Dec_oct.c24 int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, argument
32 if (!ec_point_is_compat(point, group)) {
38 return ossl_ec_GFp_simple_set_compressed_coordinates(group, point, x,
47 return ossl_ec_GF2m_simple_set_compressed_coordinates(group, point,
51 return group->meth->point_set_compressed_coordinates(group, point, x,
57 EC_POINT *point, const BIGNUM *x,
60 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
65 EC_POINT *point, const BIGNUM *x,
68 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
73 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, argument
56 EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
64 EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
105 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
133 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_deprecated.c22 const EC_POINT *point,
29 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx);
42 const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx)
60 if (point == NULL) {
66 ret = point;
69 if (ret != point)
21 EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BIGNUM *ret, BN_CTX *ctx) argument
41 EC_POINT_bn2point(const EC_GROUP *group, const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx) argument
H A Dec_print.c18 const EC_POINT *point,
25 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx);
50 const char *hex, EC_POINT *point, BN_CTX *ctx)
60 if (point == NULL) {
65 pt = point;
80 if (pt != point)
17 EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BN_CTX *ctx) argument
49 EC_POINT_hex2point(const EC_GROUP *group, const char *hex, EC_POINT *point, BN_CTX *ctx) argument
H A Dec_check.c58 EC_POINT *point = NULL;
94 if ((point = EC_POINT_new(group)) == NULL)
104 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx))
106 if (!EC_POINT_is_at_infinity(group, point)) {
115 EC_POINT_free(point);
H A Dec2_smpl.c222 int ossl_ec_GF2m_simple_point_init(EC_POINT *point) argument
224 point->X = BN_new();
225 point->Y = BN_new();
226 point->Z = BN_new();
228 if (point->X == NULL || point->Y == NULL || point->Z == NULL) {
229 BN_free(point->X);
230 BN_free(point->Y);
231 BN_free(point
238 ossl_ec_GF2m_simple_point_finish(EC_POINT *point) argument
246 ossl_ec_GF2m_simple_point_clear_finish(EC_POINT *point) argument
276 ossl_ec_GF2m_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
288 ossl_ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
320 ossl_ec_GF2m_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
483 ossl_ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
497 ossl_ec_GF2m_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
508 ossl_ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
632 ossl_ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
[all...]
H A Decp_smpl.c322 int ossl_ec_GFp_simple_point_init(EC_POINT *point) argument
324 point->X = BN_new();
325 point->Y = BN_new();
326 point->Z = BN_new();
327 point->Z_is_one = 0;
329 if (point->X == NULL || point->Y == NULL || point->Z == NULL) {
330 BN_free(point->X);
331 BN_free(point
338 ossl_ec_GFp_simple_point_finish(EC_POINT *point) argument
345 ossl_ec_GFp_simple_point_clear_finish(EC_POINT *point) argument
367 ossl_ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
375 ossl_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
435 ossl_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
484 ossl_ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
501 ossl_ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
940 ossl_ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
950 ossl_ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
956 ossl_ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1167 ossl_ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
[all...]
H A Dec_lib.c745 void EC_POINT_free(EC_POINT *point) argument
747 if (point == NULL)
750 if (point->meth->point_finish != 0)
751 point->meth->point_finish(point);
752 OPENSSL_free(point);
755 void EC_POINT_clear_free(EC_POINT *point) argument
757 if (point == NULL)
760 if (point->meth->point_clear_finish != 0)
761 point
805 EC_POINT_method_of(const EC_POINT *point) argument
811 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
825 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
842 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
860 EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
883 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
891 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
900 EC_POINT_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
920 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
928 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
979 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
999 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1028 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1114 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
1409 const EC_POINT *point = EC_GROUP_get0_generator(group); local
1548 EC_POINT *point = NULL; local
[all...]
H A Dec2_oct.c40 EC_POINT *point,
107 if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx))
126 const EC_POINT *point,
145 if (EC_POINT_is_at_infinity(group, point)) {
186 if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx))
256 int ossl_ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point, argument
275 * The first octet is the point converison octet PC, see X9.62, page 4
277 * 0x00 for the point at infinity
299 /* The point at infinity is represented by a single zero octet. */
306 return EC_POINT_set_to_infinity(group, point);
39 ossl_ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
125 ossl_ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
/freebsd-current/crypto/openssl/test/
H A Decstresstest.c37 * Perform a deterministic walk on the curve, by starting from |point| and
38 * using the X-coordinate of the previous point as the next scalar for
39 * point multiplication.
42 static BIGNUM *walk_curve(const EC_GROUP *group, EC_POINT *point, argument
49 || !TEST_true(EC_POINT_get_affine_coordinates(group, point, scalar,
54 if (!TEST_true(EC_POINT_mul(group, point, NULL, point, scalar, NULL))
55 || !TEST_true(EC_POINT_get_affine_coordinates(group, point,
70 EC_POINT *point = NULL; local
79 || !TEST_ptr(point
[all...]
/freebsd-current/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-parsefile.exp1 make: "varname-dot-parsefile.mk" line 32: At this point, .PARSEFILE is undefined.
H A Dvarname-dot-parsedir.exp1 make: "varname-dot-parsedir.mk" line 37: At this point, .PARSEDIR is undefined.
H A Ddirective-elifndef.mk6 # At this point, VAR is not yet defined, and due to the 'n' in 'elifndef' the
16 # At this point, VAR is defined, and due to the 'n' in 'elifndef' the
H A Ddirective-elifdef.mk6 # At this point, VAR is not defined, so the condition evaluates to false.
14 # At this point, VAR is defined, so the condition evaluates to true.
H A Dunexport.mk12 # was not reachable though. At that point, backslash-newline has already
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dlimits.inc11 // [fp.style], floating-point type properties
/freebsd-current/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
38 # To skip all -stable prereleases and move from one primary or point
39 # release directly to the next point release, set rcpoint=GO.
88 point=18
/freebsd-current/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-current/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-current/crypto/openssl/crypto/x509/
H A Dv3_crld.c212 DIST_POINT *point = DIST_POINT_new(); local
214 if (point == NULL)
219 ret = set_dist_point_name(&point->distpoint, ctx, cnf);
225 if (!set_reasons(&point->reasons, cnf->value))
228 point->CRLissuer = gnames_from_sectname(ctx, cnf->value);
229 if (point->CRLissuer == NULL)
234 return point;
237 DIST_POINT_free(point);
255 DIST_POINT *point; local
263 point
468 DIST_POINT *point; local
[all...]
/freebsd-current/contrib/ee/
H A Dee.c189 unsigned char *point; /* points to current position in line */ variable
564 curr_line->line = point = malloc(10);
701 point = resiz_line(10, curr_line, position);
703 temp = point;
711 while (point < temp)
717 *point = character; /* insert new character */
722 point++;
729 point++;
755 midscreen(scr_vert, point);
763 draw_line(scr_vert, scr_horz, point, positio
3739 midscreen(min(scr_vert, last_line), point); local
[all...]
/freebsd-current/contrib/libfido2/src/
H A Dtpm.c143 tpm_es256_point_t point;
210 x->point.x.size = htobe16(x->point.x.size);
211 x->point.y.size = htobe16(x->point.y.size);
285 expected.point.x.size = sizeof(expected.point.x.body);
286 expected.point.y.size = sizeof(expected.point.y.body);
287 memcpy(&expected.point
[all...]

Completed in 149 milliseconds

12345678