/external/skia/samplecode/ |
H A D | SampleHairCurves.cpp | 38 SkPath curves; local 48 curves.moveTo(pts[0], pts[1]); 49 curves.cubicTo(pts[2], pts[3], 69 curves.moveTo(pts[0], pts[1]); 70 curves.quadTo(pts[2], pts[3], 86 curves.moveTo(pts[0], pts[1]); 87 curves.lineTo(pts[2], pts[3]); 94 canvas->drawPath(curves, paint);
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/ |
H A D | IpoHelper.java | 8 import com.jme3.scene.plugins.blender.curves.BezierCurve;
16 * This class helps to compute values from interpolation curves for features
17 * like animation or constraint influence. The curves are 3rd degree bezier
18 * curves.
52 // preparing bezier curves
54 List<Structure> curves = curvebase.evaluateListBase(blenderContext);// IpoCurve
55 if (curves.size() > 0) {
56 BezierCurve[] bezierCurves = new BezierCurve[curves.size()];
58 for (Structure curve : curves) {
64 curves [all...] |
H A D | Ipo.java | 9 import com.jme3.scene.plugins.blender.curves.BezierCurve;
12 * This class is used to calculate bezier curves value for the given frames. The
13 * Ipo (interpolation object) consists of several b-spline curves (connected 3rd
14 * degree bezier curves) of a different type.
34 /** A list of bezier curves for this interpolation object. */
42 * Constructor. Stores the bezier curves.
45 * a table of bezier curves
65 * index. Make sure you do not exceed the curves amount. Alway chech the
66 * amount of curves before calling this method.
79 * This method returns the curves amoun [all...] |
H A D | ArmatureHelper.java | 47 import com.jme3.scene.plugins.blender.curves.BezierCurve;
|
/external/openssl/apps/ |
H A D | ecparam.c | 345 EC_builtin_curve *curves = NULL; local 351 curves = OPENSSL_malloc((int)(sizeof(EC_builtin_curve) * crv_len)); 353 if (curves == NULL) 356 if (!EC_get_builtin_curves(curves, crv_len)) 358 OPENSSL_free(curves); 367 comment = curves[n].comment; 368 sname = OBJ_nid2sn(curves[n].nid); 378 OPENSSL_free(curves); 388 * and secp256r1 (which are the same as the curves
|
/external/openssl/crypto/ecdsa/ |
H A D | ecdsatest.c | 81 puts("Elliptic curves are disabled."); 286 EC_builtin_curve *curves = NULL; local 310 "with some internal curves:\n"); 312 /* get a list of all internal curves */ 315 curves = OPENSSL_malloc(sizeof(EC_builtin_curve) * crv_len); 317 if (curves == NULL) 323 if (!EC_get_builtin_curves(curves, crv_len)) 325 BIO_printf(out, "unable to get internal curves\n"); 334 nid = curves[n].nid; 520 if (curves) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/ |
H A D | X962NamedCurves.java | 14 * table of the current named curves defined in X.962 EC-DSA. 523 static final Hashtable curves = new Hashtable(); field in class:X962NamedCurves 530 curves.put(oid, holder); 582 X9ECParametersHolder holder = (X9ECParametersHolder)curves.get(oid); 614 * returns an enumeration containing the name strings for curves
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/ |
H A D | BezierCurve.java | 1 package com.jme3.scene.plugins.blender.curves;
10 * A class that helps to calculate the bezier curves calues. It uses doubles for performing calculations to minimize
|
H A D | CurvesHelper.java | 1 package com.jme3.scene.plugins.blender.curves;
36 /** Minimum basis U function degree for NURBS curves and surfaces. */
38 /** Minimum basis V function degree for NURBS curves and surfaces. */
55 * can have several separate curves.
169 //creating the result curves
213 * @return a list of geometries representing the curves
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/ |
H A D | ObjectHelper.java | 59 import com.jme3.scene.plugins.blender.curves.CurvesHelper;
186 List<Geometry> curves = curvesHelper.toCurve(curveData, blenderContext);
188 for(Geometry curve : curves) {
|
/external/openssl/crypto/ec/ |
H A D | ectest.c | 84 int main(int argc, char * argv[]) { puts("Elliptic curves are disabled."); return 0; } 1219 EC_builtin_curve *curves = NULL; local 1225 curves = OPENSSL_malloc(sizeof(EC_builtin_curve) * crv_len); 1227 if (curves == NULL) 1230 if (!EC_get_builtin_curves(curves, crv_len)) 1232 OPENSSL_free(curves); 1236 fprintf(stdout, "testing internal curves: "); 1241 int nid = curves[n].nid; 1270 OPENSSL_free(curves); 1276 * implementations of several NIST curves wit [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/ |
H A D | BlenderLoader.java | 48 import com.jme3.scene.plugins.blender.curves.CurvesHelper;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/ |
H A D | SECNamedCurves.java | 920 static final Hashtable curves = new Hashtable(); field in class:SECNamedCurves 927 curves.put(oid, holder); 990 X9ECParametersHolder holder = (X9ECParametersHolder)curves.get(oid); 1022 * returns an enumeration containing the name strings for curves
|
/external/libvorbis/lib/ |
H A D | psy.c | 99 /* we add back in the ATH to avoid low level curves falling off to 100 -infinity and unnecessarily cutting off high level curves in the 117 /* copy curves into working space, replicate the 50dB curve to 30 134 /* normalize curves so the driving amplitude is 0dB */ 135 /* make temp curves with the ATH overlayed */ 143 /* Now limit the louder curves. 163 /* low frequency curves are measured with greater resolution than 172 /* which octave curves will we be compositing? */ 388 const float **curves, 399 posts=curves[choic 387 seed_curve(float *seed, const float **curves, float amp, int oc, int n, int linesper,float dBoffset) argument 414 seed_loop(vorbis_look_psy *p, const float ***curves, const float *f, const float *flr, float *seed, float specmax) argument [all...] |
/external/dropbear/libtomcrypt/ |
H A D | crypt.tex | 3603 Diffie-Hellman routines in the previous chapter. Elliptic curves (of certain forms) have the benefit that they are harder 3608 The curves in this library are taken from the following website: 3613 As of v1.15 three new curves from the SECG standards are also included they are the secp112r1, secp128r1, and secp160r1 curves. These curves were added to 3616 They are all curves over the integers modulo a prime. The curves have the basic equation that is: 3622 provided are very close to $p$ that is $\vert \vert \phi(\beta) \vert \vert \approx \vert \vert p \vert \vert$. The curves 3664 In the case of LibTomCrypt, it is meant \textbf{solely} for NIST and SECG $GF(p)$ curves. The format of the keys is as follows: 3694 extended ECC functions which allow the user to specify their own curves [all...] |
/external/libvorbis/doc/ |
H A D | 04-codec.tex | 384 Floor curves are decoded one-by-one in channel order.
|