Home
last modified time | relevance | path

Searched refs:curves (Results 1 – 25 of 49) sorted by relevance

12

/external/boringssl/src/crypto/fipsmodule/ec/
Dec.c221 out->curves[0].nid = NID_secp521r1; in DEFINE_METHOD_FUNCTION()
222 out->curves[0].oid = kOIDP521; in DEFINE_METHOD_FUNCTION()
223 out->curves[0].oid_len = sizeof(kOIDP521); in DEFINE_METHOD_FUNCTION()
224 out->curves[0].comment = "NIST P-521"; in DEFINE_METHOD_FUNCTION()
225 out->curves[0].param_len = 66; in DEFINE_METHOD_FUNCTION()
226 out->curves[0].params = kP521Params; in DEFINE_METHOD_FUNCTION()
227 out->curves[0].method = EC_GFp_mont_method(); in DEFINE_METHOD_FUNCTION()
231 out->curves[1].nid = NID_secp384r1; in DEFINE_METHOD_FUNCTION()
232 out->curves[1].oid = kOIDP384; in DEFINE_METHOD_FUNCTION()
233 out->curves[1].oid_len = sizeof(kOIDP384); in DEFINE_METHOD_FUNCTION()
[all …]
Dec_test.cc641 std::vector<EC_builtin_curve> curves(num_curves); in AllCurves() local
642 EC_get_builtin_curves(curves.data(), num_curves); in AllCurves()
643 return curves; in AllCurves()
Dinternal.h307 struct built_in_curve curves[OPENSSL_NUM_BUILT_IN_CURVES]; member
/external/skia/samplecode/
DSampleHairCurves.cpp38 SkPath curves; in onDrawContent() local
48 curves.moveTo(pts[0], pts[1]); in onDrawContent()
49 curves.cubicTo(pts[2], pts[3], in onDrawContent()
69 curves.moveTo(pts[0], pts[1]); in onDrawContent()
70 curves.quadTo(pts[2], pts[3], in onDrawContent()
89 curves.moveTo(pts[0], pts[1]); in onDrawContent()
90 curves.conicTo(pts[2], pts[3], in onDrawContent()
107 curves.moveTo(pts[0], pts[1]); in onDrawContent()
108 curves.lineTo(pts[2], pts[3]); in onDrawContent()
115 canvas->drawPath(curves, paint); in onDrawContent()
/external/skqp/samplecode/
DSampleHairCurves.cpp38 SkPath curves; in onDrawContent() local
48 curves.moveTo(pts[0], pts[1]); in onDrawContent()
49 curves.cubicTo(pts[2], pts[3], in onDrawContent()
69 curves.moveTo(pts[0], pts[1]); in onDrawContent()
70 curves.quadTo(pts[2], pts[3], in onDrawContent()
89 curves.moveTo(pts[0], pts[1]); in onDrawContent()
90 curves.conicTo(pts[2], pts[3], in onDrawContent()
107 curves.moveTo(pts[0], pts[1]); in onDrawContent()
108 curves.lineTo(pts[2], pts[3]); in onDrawContent()
115 canvas->drawPath(curves, paint); in onDrawContent()
/external/boringssl/src/crypto/ec_extra/
Dec_asn1.c336 const struct built_in_curves *const curves = OPENSSL_built_in_curves(); in EC_KEY_parse_curve_name() local
338 const struct built_in_curve *curve = &curves->curves[i]; in EC_KEY_parse_curve_name()
357 const struct built_in_curves *const curves = OPENSSL_built_in_curves(); in EC_KEY_marshal_curve_name() local
359 const struct built_in_curve *curve = &curves->curves[i]; in EC_KEY_marshal_curve_name()
388 const struct built_in_curves *const curves = OPENSSL_built_in_curves(); in EC_KEY_parse_parameters() local
390 const struct built_in_curve *curve = &curves->curves[i]; in EC_KEY_parse_parameters()
/external/boringssl/src/crypto/ecdh/
Decdh_test.cc179 std::vector<EC_builtin_curve> curves(num_curves); in TEST() local
180 EC_get_builtin_curves(curves.data(), num_curves); in TEST()
184 for (const auto &curve : curves) { in TEST()
/external/skqp/experimental/docs/
DanimationCommon.js116 var curves = display.draw[i];
117 var curve = Object.keys(curves)[0];
119 copy[i][curve] = curves[curve].slice(0); // clone the array of curves
/external/skia/experimental/docs/
DanimationCommon.js116 var curves = display.draw[i];
117 var curve = Object.keys(curves)[0];
119 copy[i][curve] = curves[curve].slice(0); // clone the array of curves
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
DX962NamedCurves.java544 static final Hashtable curves = new Hashtable(); field in X962NamedCurves
551 curves.put(oid, holder); in defineCurve()
603 X9ECParametersHolder holder = (X9ECParametersHolder)curves.get(oid); in getByOID()
/external/freetype/docs/
Draster.txt34 Meanwhile it has been extended to render third-order Bézier curves
108 Finally, for second-order curves only, two successive `off'
136 In the following, only second-order curves are discussed since
137 rasterization of third-order curves is completely identical.
139 Here some samples for second-order curves.
451 extremum on each Bézier arc (for second-degree curves; similar
578 As each glyph is made of closed curves, a simple geometric
/external/boringssl/src/ssl/test/runner/
Dcommon.go1644 curves := c.DefaultCurves
1646 curves = c.curvePreferences()
1648 for _, curveID := range curves {
Dhandshake_messages.go721 var curves byteReader
722 if !body.readU16LengthPrefixed(&curves) || len(body) != 0 {
725 m.supportedCurves = make([]CurveID, 0, len(curves)/2)
726 for len(curves) > 0 {
728 if !curves.readU16(&v) {
/external/jemalloc/include/jemalloc/internal/
Dsmoothstep.sh66 * sigmoidal curves (https://en.wikipedia.org/wiki/Smoothstep) that grow from 0
/external/boringssl/src/ssl/
Dssl_lib.cc1779 int SSL_CTX_set1_curves(SSL_CTX *ctx, const int *curves, size_t curves_len) { in SSL_CTX_set1_curves() argument
1781 &ctx->supported_group_list_len, curves, in SSL_CTX_set1_curves()
1785 int SSL_set1_curves(SSL *ssl, const int *curves, size_t curves_len) { in SSL_set1_curves() argument
1787 &ssl->supported_group_list_len, curves, in SSL_set1_curves()
1791 int SSL_CTX_set1_curves_list(SSL_CTX *ctx, const char *curves) { in SSL_CTX_set1_curves_list() argument
1793 &ctx->supported_group_list_len, curves); in SSL_CTX_set1_curves_list()
1796 int SSL_set1_curves_list(SSL *ssl, const char *curves) { in SSL_set1_curves_list() argument
1798 &ssl->supported_group_list_len, curves); in SSL_set1_curves_list()
/external/skqp/site/user/api/
Dindex.md13 * [SkPath](/user/api/SkPath_Reference) - series of connected lines and curves
/external/wycheproof/doc/
Decdh.md48 * restrict the protocol to named curves
/external/skia/site/user/api/
Dindex.md18 * [SkPath](/user/api/SkPath_Reference) - sequence of connected lines and curves
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
DSECNamedCurves.java985 static final Hashtable curves = new Hashtable(); field in SECNamedCurves
992 curves.put(oid, holder); in defineCurve()
1049 X9ECParametersHolder holder = (X9ECParametersHolder)curves.get(oid); in getByOID()
/external/conscrypt/libcore-stub/src/main/java/libcore/java/security/
DStandardNames.java1030 public static void assertDefaultEllipticCurves(String[] curves) { in assertDefaultEllipticCurves() argument
1031 assertEquals(ELLIPTIC_CURVES_DEFAULT, Arrays.asList(curves)); in assertDefaultEllipticCurves()
/external/skqp/docs/
DSkPath_Reference.bmh86 #Line # loop of lines and curves ##
179 and may be followed by additional verbs that add lines or curves.
1688 #Line # end points and control points for lines and curves ##
2018 Returns minimum and maximum x and y values of the lines and curves in Path.
2027 only lines. If Path contains curves, computed bounds includes
2031 #Return tight bounds of curves in Path ##
2357 of a parabola. Quad begins at a start Point, curves towards a control Point,
2358 and then curves to an end Point.
2529 curves towards a control Point, and then curves to an end Point. The influence
2679 The bottom two curves are elliptical; the next is parabolic; the
[all …]
/external/skia/docs/
DSkPath_Reference.bmh86 #Line # loop of lines and curves ##
179 and may be followed by additional verbs that add lines or curves.
1639 #Line # end points and control points for lines and curves ##
1973 Returns minimum and maximum x and y values of the lines and curves in Path.
1982 only lines. If Path contains curves, computed bounds includes
1986 #Return tight bounds of curves in Path ##
2316 of a parabola. Quad begins at a start Point, curves towards a control Point,
2317 and then curves to an end Point.
2488 curves towards a control Point, and then curves to an end Point. The influence
2639 The bottom two curves are elliptical; the next is parabolic; the
[all …]
/external/fio/tools/plot/
Dfio2gnuplot.manpage19 Bezier's curves makes much more filtered plots
/external/ImageMagick/
DREADME.txt8 effects, or draw text, lines, polygons, ellipses and Bézier curves.
/external/boringssl/src/include/openssl/
Dssl.h2141 OPENSSL_EXPORT int SSL_CTX_set1_curves(SSL_CTX *ctx, const int *curves,
2150 OPENSSL_EXPORT int SSL_set1_curves(SSL *ssl, const int *curves,
2157 OPENSSL_EXPORT int SSL_CTX_set1_curves_list(SSL_CTX *ctx, const char *curves);
2163 OPENSSL_EXPORT int SSL_set1_curves_list(SSL *ssl, const char *curves);

12