Home
last modified time | relevance | path

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

12345678910>>...42

/freebsd/crypto/openssl/crypto/ec/
H A Dec_oct.c32 if (!ec_point_is_compat(point, group)) { in EC_POINT_set_compressed_coordinates()
51 return group->meth->point_set_compressed_coordinates(group, point, x, in EC_POINT_set_compressed_coordinates()
73 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, in EC_POINT_point2oct() argument
82 if (!ec_point_is_compat(point, group)) { in EC_POINT_point2oct()
97 return ossl_ec_GF2m_simple_point2oct(group, point, in EC_POINT_point2oct()
102 return group->meth->point2oct(group, point, form, buf, len, ctx); in EC_POINT_point2oct()
105 int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, in EC_POINT_oct2point() argument
113 if (!ec_point_is_compat(point, group)) { in EC_POINT_oct2point()
130 return group->meth->oct2point(group, point, buf, len, ctx); in EC_POINT_oct2point()
140 len = EC_POINT_point2oct(group, point, form, NULL, 0, NULL); in EC_POINT_point2buf()
[all …]
H A Dec2_smpl.c224 point->X = BN_new(); in ossl_ec_GF2m_simple_point_init()
225 point->Y = BN_new(); in ossl_ec_GF2m_simple_point_init()
226 point->Z = BN_new(); in ossl_ec_GF2m_simple_point_init()
228 if (point->X == NULL || point->Y == NULL || point->Z == NULL) { in ossl_ec_GF2m_simple_point_init()
240 BN_free(point->X); in ossl_ec_GF2m_simple_point_finish()
241 BN_free(point->Y); in ossl_ec_GF2m_simple_point_finish()
242 BN_free(point->Z); in ossl_ec_GF2m_simple_point_finish()
280 BN_zero(point->Z); in ossl_ec_GF2m_simple_point_set_to_infinity()
486 if (EC_POINT_is_at_infinity(group, point) || BN_is_zero(point->Y)) in ossl_ec_GF2m_simple_invert()
493 return BN_GF2m_add(point->Y, point->X, point->Y); in ossl_ec_GF2m_simple_invert()
[all …]
H A Dec_lib.c747 if (point == NULL) in EC_POINT_free()
751 point->meth->point_finish(point); in EC_POINT_free()
752 OPENSSL_free(point); in EC_POINT_free()
757 if (point == NULL) in EC_POINT_clear_free()
761 point->meth->point_clear_finish(point); in EC_POINT_clear_free()
763 point->meth->point_finish(point); in EC_POINT_clear_free()
764 OPENSSL_clear_free(point, sizeof(*point)); in EC_POINT_clear_free()
807 return point->meth; in EC_POINT_method_of()
1124 || (point != NULL && !ec_point_is_compat(point, group))) { in EC_POINT_mul()
1548 EC_POINT *point = NULL; in EC_GROUP_new_from_params() local
[all …]
H A Decp_smpl.c329 if (point->X == NULL || point->Y == NULL || point->Z == NULL) { in ossl_ec_GFp_simple_point_init()
340 BN_free(point->X); in ossl_ec_GFp_simple_point_finish()
341 BN_free(point->Y); in ossl_ec_GFp_simple_point_finish()
342 BN_free(point->Z); in ossl_ec_GFp_simple_point_finish()
371 BN_zero(point->Z); in ossl_ec_GFp_simple_point_set_to_infinity()
395 if (!group->meth->field_encode(group, point->X, point->X, ctx)) in ossl_ec_GFp_simple_set_Jprojective_coordinates_GFp()
421 meth->field_encode(group, point->Z, point->Z, ctx)) in ossl_ec_GFp_simple_set_Jprojective_coordinates_GFp()
537 Z_ = point->Z; in ossl_ec_GFp_simple_point_get_affine_coordinates()
943 if (EC_POINT_is_at_infinity(group, point) || BN_is_zero(point->Y)) in ossl_ec_GFp_simple_invert()
947 return BN_usub(point->Y, group->field, point->Y); in ossl_ec_GFp_simple_invert()
[all …]
H A Dec_deprecated.c22 const EC_POINT *point, in EC_POINT_point2bn() argument
29 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx); in EC_POINT_point2bn()
42 const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx) in EC_POINT_bn2point() argument
60 if (point == NULL) { in EC_POINT_bn2point()
66 ret = point; in EC_POINT_bn2point()
69 if (ret != point) in EC_POINT_bn2point()
H A Dec_print.c18 const EC_POINT *point, in EC_POINT_point2hex() argument
25 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx); in EC_POINT_point2hex()
50 const char *hex, EC_POINT *point, BN_CTX *ctx) in EC_POINT_hex2point() argument
60 if (point == NULL) { in EC_POINT_hex2point()
65 pt = point; in EC_POINT_hex2point()
80 if (pt != point) in EC_POINT_hex2point()
H A Dec_check.c58 EC_POINT *point = NULL; in EC_GROUP_check()
94 if ((point = EC_POINT_new(group)) == NULL) in EC_GROUP_check()
104 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx)) in EC_GROUP_check()
106 if (!EC_POINT_is_at_infinity(group, point)) { in EC_GROUP_check()
115 EC_POINT_free(point); in EC_GROUP_check()
H A Dec2_oct.c40 EC_POINT *point, in ossl_ec_GF2m_simple_set_compressed_coordinates() argument
107 if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx)) in ossl_ec_GF2m_simple_set_compressed_coordinates()
126 const EC_POINT *point, in ossl_ec_GF2m_simple_point2oct() argument
145 if (EC_POINT_is_at_infinity(group, point)) { in ossl_ec_GF2m_simple_point2oct()
186 if (!EC_POINT_get_affine_coordinates(group, point, x, y, ctx)) in ossl_ec_GF2m_simple_point2oct()
256 int ossl_ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point, in ossl_ec_GF2m_simple_oct2point() argument
306 return EC_POINT_set_to_infinity(group, point); in ossl_ec_GF2m_simple_oct2point()
343 if (!EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx)) in ossl_ec_GF2m_simple_oct2point()
377 if (!EC_POINT_set_affine_coordinates(group, point, x, y, ctx)) in ossl_ec_GF2m_simple_oct2point()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVSchedule.td51 def WriteFSqrt16 : SchedWrite; // 16-bit floating point sqrt
52 def WriteFSqrt32 : SchedWrite; // 32-bit floating point sqrt
53 def WriteFSqrt64 : SchedWrite; // 64-bit floating point sqrt
108 def WriteFLD16 : SchedWrite; // Floating point sp load
109 def WriteFLD32 : SchedWrite; // Floating point sp load
110 def WriteFLD64 : SchedWrite; // Floating point dp load
111 def WriteFST16 : SchedWrite; // Floating point sp store
112 def WriteFST32 : SchedWrite; // Floating point sp store
113 def WriteFST64 : SchedWrite; // Floating point dp store
161 def ReadFSqrt16 : SchedRead; // 16-bit floating point sqrt
[all …]
/freebsd/crypto/openssl/test/
H A Decstresstest.c42 static BIGNUM *walk_curve(const EC_GROUP *group, EC_POINT *point, in walk_curve() argument
49 || !TEST_true(EC_POINT_get_affine_coordinates(group, point, scalar, in walk_curve()
54 if (!TEST_true(EC_POINT_mul(group, point, NULL, point, scalar, NULL)) in walk_curve()
55 || !TEST_true(EC_POINT_get_affine_coordinates(group, point, in walk_curve()
70 EC_POINT *point = NULL; in test_curve() local
79 || !TEST_ptr(point = EC_POINT_dup(EC_GROUP_get0_generator(group), in test_curve()
81 || !TEST_ptr(result = walk_curve(group, point, num_repeats))) in test_curve()
98 EC_POINT_free(point); in test_curve()
/freebsd/crypto/openssl/crypto/x509/
H A Dv3_crld.c212 DIST_POINT *point = DIST_POINT_new(); in crldp_from_section() local
214 if (point == NULL) in crldp_from_section()
234 return point; in crldp_from_section()
237 DIST_POINT_free(point); in crldp_from_section()
255 DIST_POINT *point; in v2i_crld() local
265 if (point == NULL) in v2i_crld()
282 point->distpoint->type = 0; in v2i_crld()
468 DIST_POINT *point; in i2r_crldp() local
474 if (point->distpoint) in i2r_crldp()
476 if (point->reasons) in i2r_crldp()
[all …]
/freebsd/contrib/ntp/scripts/build/
H A DUpdatePoint117 case "$point" in
131 case "$betapoint::$rcpoint::$point" in
229 case "$repo::$bp::$point" in
231 newpoint=$point
234 newpoint=`expr $point + 1`
237 newpoint=`expr $point + 1`
248 *) echo "Unexpected value for 'point' <$point>! (repo::bp::point is $repo::$bp::$point)"
309 printf "point $point"
311 $point)
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>)"
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86Schedule.td23 // integer unit to the floating point unit.
218 // Floating point. This covers both scalar and vector operations.
244 defm WriteFAdd : X86SchedWritePair<ReadAfterVecLd>; // Floating point add/sub.
245 defm WriteFAddX : X86SchedWritePair<ReadAfterVecXLd>; // Floating point add/sub (XMM).
246 defm WriteFAddY : X86SchedWritePair<ReadAfterVecYLd>; // Floating point add/sub (YMM).
247 defm WriteFAddZ : X86SchedWritePair<ReadAfterVecYLd>; // Floating point add/sub (ZMM).
252 defm WriteFCmp : X86SchedWritePair<ReadAfterVecLd>; // Floating point compare.
270 defm WriteFDiv : X86SchedWritePair<ReadAfterVecLd>; // Floating point division.
278 defm WriteFSqrt : X86SchedWritePair<ReadAfterVecLd>; // Floating point square root.
302 defm WriteFSign : X86SchedWritePair<ReadAfterVecLd>; // Floating point fabs/fchs.
[all …]
H A DX86ScheduleZnver3.td27 // outstanding operations (integer, load/store, and floating-point) and is
185 // The processor uses <...> two decoupled independent floating point schedulers
194 // Agner, 22.10 Floating point execution pipes
195 // There are six floating point/vector execution pipes,
270 // Stores and floating point to general purpose register transfer
294 // Stores and floating point to general purpose register transfer
336 // The floating point register file has 160 vector registers
344 // The floating-point scheduler has a 2*32 entry macro op capacity.
356 // even if floating-point scheduler is full.
840 // Floating point. This covers both scalar and vector operations.
[all …]
/freebsd/contrib/ee/
H A Dee.c722 point++; in insert()
729 point++; in insert()
1397 point++; in prevline()
1412 point--; in left()
3947 if ((*point == ' ') || (*point == '\t')) in Format()
4006 if ((*point == ' ') || (*point == '\t')) in Format()
4020 if ((*point == ' ') && (*(point + 1) == ' ')) in Format()
4033 if ((*point == '.') && (*(point + 1) == ' ')) in Format()
4543 if ((*point == ' ') || (*point == '\t')) in Auto_Format()
4611 if ((*point == ' ') || (*point == '\t')) in Auto_Format()
[all …]
/freebsd/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.
/freebsd/contrib/llvm-project/libcxx/include/
H A Datomic282 floating-point-type operator=(floating-point-type) volatile noexcept;
283 floating-point-type operator=(floating-point-type) noexcept;
289 floating-point-type exchange(floating-point-type,
291 floating-point-type exchange(floating-point-type,
293 bool compare_exchange_weak(floating-point-type&, floating-point-type,
310 floating-point-type fetch_add(floating-point-type,
312 floating-point-type fetch_add(floating-point-type,
314 floating-point-type fetch_sub(floating-point-type,
316 floating-point-type fetch_sub(floating-point-type,
320 floating-point-type operator+=(floating-point-type) noexcept;
[all …]
/freebsd/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
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 registers is not used
85 @ Save floating-point parameters of the instrumented function
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DEC_POINT_new.pod37 void EC_POINT_free(EC_POINT *point);
38 void EC_POINT_clear_free(EC_POINT *point);
41 int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point);
67 const EC_METHOD *EC_POINT_method_of(const EC_POINT *point);
104 An B<EC_POINT> structure represents a point on a curve. A new point is
106 B<group> object that the point relates to.
109 if B<point> is NULL nothing is done.
112 then frees its memory. If B<point> is NULL nothing is done.
124 A valid point on a curve is the special point at infinity. A point is set to
127 The affine coordinates for a point describe a point in terms of its x and y
[all …]
H A DEC_POINT_add.pod16 int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx);
25 int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx);
35 …nd B<b> and places the result in B<r>. Similarly EC_POINT_dbl doubles the point B<a> and places the
38 EC_POINT_invert calculates the inverse of the supplied point B<a>. The result is placed back in B<a…
40 The function EC_POINT_is_at_infinity tests whether the supplied point is at infinity or not.
42 EC_POINT_is_on_curve tests whether the supplied point is on the curve or not.
52point multiplication). Alternatively, both B<q> and B<m> may be NULL, and B<n> non-NULL, in which…
57 When performing a fixed point multiplication (B<n> is non-NULL and B<num> is 0) or a variable point
60 The function EC_GROUP_precompute_mult stores multiples of the generator for faster point multiplica…
71 EC_POINT_is_at_infinity returns 1 if the point is at infinity, or 0 otherwise.
[all …]
/freebsd/contrib/tcsh/
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 …]
/freebsd/lib/libc/softfloat/templates/
H A Dsoftfloat-specialize5 This C source fragment is part of the SoftFloat IEC/IEEE Floating-point
12 of this code was written as part of a project to build a fixed-point vector
42 Raises the exceptions specified by `flags'. Floating-point traps can be
74 Returns 1 if the single-precision floating-point value `a' is a NaN;
100 Returns the result of converting the single-precision floating-point NaN
120 precision floating-point format.
166 Returns 1 if the double-precision floating-point value `a' is a NaN;
214 precision floating-point format.
319 double-precision floating-point format.
389 Returns 1 if the quadruple-precision floating-point value `a' is a
[all …]
/freebsd/lib/libc/softfloat/
H A Dsoftfloat-specialize8 This C source fragment is part of the SoftFloat IEC/IEEE Floating-point
15 of this code was written as part of a project to build a fixed-point vector
56 Raises the exceptions specified by `flags'. Floating-point traps can be
115 Returns 1 if the single-precision floating-point value `a' is a NaN;
148 Returns the result of converting the single-precision floating-point NaN
168 precision floating-point format.
214 Returns 1 if the double-precision floating-point value `a' is a NaN;
270 precision floating-point format.
375 double-precision floating-point format.
445 Returns 1 if the quadruple-precision floating-point value `a' is a
[all …]
/freebsd/contrib/libfido2/src/
H A Dtpm.c143 tpm_es256_point_t point;
210 x->point.x.size = htobe16(x->point.x.size); in bswap_es256_pubarea()
211 x->point.y.size = htobe16(x->point.y.size); in bswap_es256_pubarea()
285 expected.point.x.size = sizeof(expected.point.x.body); in check_es256_pubarea()
286 expected.point.y.size = sizeof(expected.point.y.body); in check_es256_pubarea()
287 memcpy(&expected.point.x.body, &pk->x, sizeof(expected.point.x.body)); in check_es256_pubarea()
288 memcpy(&expected.point.y.body, &pk->y, sizeof(expected.point.y.body)); in check_es256_pubarea()

12345678910>>...42