Home
last modified time | relevance | path

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

12

/external/skia/samplecode/
DSampleHairCurves.cpp39 SkPath curves; in onDrawContent() local
49 curves.moveTo(pts[0], pts[1]); in onDrawContent()
50 curves.cubicTo(pts[2], pts[3], in onDrawContent()
70 curves.moveTo(pts[0], pts[1]); in onDrawContent()
71 curves.quadTo(pts[2], pts[3], in onDrawContent()
90 curves.moveTo(pts[0], pts[1]); in onDrawContent()
91 curves.conicTo(pts[2], pts[3], in onDrawContent()
108 curves.moveTo(pts[0], pts[1]); in onDrawContent()
109 curves.lineTo(pts[2], pts[3]); in onDrawContent()
116 canvas->drawPath(curves, paint); in onDrawContent()
/external/boringssl/src/ssl/
Ds3_lib.c389 int SSL_CTX_set1_curves(SSL_CTX *ctx, const int *curves, size_t curves_len) { in SSL_CTX_set1_curves() argument
391 &ctx->tlsext_ellipticcurvelist_length, curves, in SSL_CTX_set1_curves()
395 int SSL_set1_curves(SSL *ssl, const int *curves, size_t curves_len) { in SSL_set1_curves() argument
397 &ssl->tlsext_ellipticcurvelist_length, curves, in SSL_set1_curves()
Dt1_lib.c370 const uint16_t *curves, *peer_curves, *pref, *supp; in tls1_get_shared_curve() local
378 tls1_get_curvelist(ssl, 0 /* local curves */, &curves, &curves_len); in tls1_get_shared_curve()
393 pref = curves; in tls1_get_shared_curve()
400 supp = curves; in tls1_get_shared_curve()
417 const int *curves, size_t ncurves) { in tls1_set_curves() argument
427 if (!ssl_nid_to_curve_id(&curve_ids[i], curves[i])) { in tls1_set_curves()
485 const uint16_t *curves; in tls1_check_curve_id() local
496 tls1_get_curvelist(ssl, get_peer_curves, &curves, &curves_len); in tls1_check_curve_id()
504 if (curves[i] == curve_id) { in tls1_check_curve_id()
1914 const uint16_t *curves; in ext_ec_curves_add_clienthello() local
[all …]
Dinternal.h1203 const int *curves, size_t ncurves);
/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/mesa3d/src/gallium/state_trackers/vega/
Dbezier.h64 struct bezier *curves,
Dbezier.c519 struct bezier *curves, in bezier_translate_by_normal() argument
536 o = curves; in bezier_translate_by_normal()
541 if ((stack_segments == 10) || (o - curves == max_curves - stack_segments)) { in bezier_translate_by_normal()
554 } else if (res == Circle && max_curves - (o - curves) >= 2) { in bezier_translate_by_normal()
576 debug_assert(o - curves <= max_curves); in bezier_translate_by_normal()
577 return o - curves; in bezier_translate_by_normal()
/external/opencv3/doc/tutorials/imgproc/imgtrans/hough_lines/
Dhough_lines.markdown55 -# We can do the same operation above for all the points in an image. If the curves of two
67 finding the number of intersections between curves.The more curves intersecting means that the
70 -# This is what the Hough Line Transform does. It keeps track of the intersection between curves of
/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()
597 X9ECParametersHolder holder = (X9ECParametersHolder)curves.get(oid); in getByOID()
/external/ceres-solver/data/nist/
DRat42.dat12 sigmoidal growth curves taken from Ratkowsky (1983).
DRat43.dat12 sigmoidal growth curves taken from Ratkowsky (1983).
/external/jemalloc/include/jemalloc/internal/
Dsmoothstep.sh66 * sigmoidal curves (https://en.wikipedia.org/wiki/Smoothstep) that grow from 0
/external/ceres-solver/docs/source/
Dindex.rst43 .. _fitting curves: http://en.wikipedia.org/wiki/Nonlinear_regression
Dtutorial.rst20 science and engineering - from `fitting curves`_ in statistics, to
23 .. _fitting curves: http://en.wikipedia.org/wiki/Nonlinear_regression
455 least squares analysis was fitting curves to data. It is only
/external/libvorbis/lib/
Dpsy.c388 const float **curves, in seed_curve() argument
399 posts=curves[choice]; in seed_curve()
415 const float ***curves, in seed_loop() argument
441 curves[oc], in seed_loop()
/external/opencv3/doc/py_tutorials/py_imgproc/py_contours/py_contour_features/
Dpy_contour_features.markdown85 corrects it. Generally speaking, convex curves are the curves which are always bulged out, or
/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/opencv3/doc/py_tutorials/py_gui/py_drawing_functions/
Dpy_drawing_functions.markdown22 8-connected.* cv2.LINE_AA gives anti-aliased line which looks great for curves.
/external/fio/tools/plot/
Dfio2gnuplot.manpage19 Bezier's curves makes much more filtered plots
/external/boringssl/src/include/openssl/
Dssl.h1790 OPENSSL_EXPORT int SSL_CTX_set1_curves(SSL_CTX *ctx, const int *curves,
1796 OPENSSL_EXPORT int SSL_set1_curves(SSL *ssl, const int *curves,
/external/boringssl/src/crypto/obj/
Dobjects.txt92 # SECG prime curves OIDs
110 # SECG characteristic two curves OIDs
/external/opencv3/doc/
Dopencv.bib705 title = {On the detection of dominant points on digital curves},
/external/libvorbis/doc/
D04-codec.tex384 Floor curves are decoded one-by-one in channel order.
/external/chromium-trace/catapult/third_party/flot/
DNEWS.md777 - Fixed two corner-case bugs when drawing filled curves. (report and analysis
/external/tpm2/generator/
Draw_structures.txt3168 The TCG maintains a registry of all curves that have an assigned curve identifier. That registry is…
3169 definitive list of curves that may be supported by a TPM.
6786 the number of loaded ECC curves
11691 number of curves
13898 The ECC curves implemented by the TPM.
13910 the list of implemented curves

12