HomeSort by relevance Sort by last modified time
    Searched refs:curves (Results 1 - 25 of 29) sorted by null

1 2

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
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 local
55 if (curves.size() > 0) {
56 BezierCurve[] bezierCurves = new BezierCurve[curves.size()];
58 for (Structure curve : curves) {
64 curves.clear();
86 List<Structure> curves = ((Structure) actionStructure.getFieldValue("curves")).evaluateListBase(blenderContext);\/\/ FCurve local
    [all...]
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 amount.
    [all...]
ArmatureHelper.java 47 import com.jme3.scene.plugins.blender.curves.BezierCurve;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.h 64 struct bezier *curves,
bezier.c 519 struct bezier *curves,
536 o = curves;
541 if ((stack_segments == 10) || (o - curves == max_curves - stack_segments)) {
554 } else if (res == Circle && max_curves - (o - curves) >= 2) {
576 debug_assert(o - curves <= max_curves);
577 return o - curves;
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.h 64 struct bezier *curves,
bezier.c 519 struct bezier *curves,
536 o = curves;
541 if ((stack_segments == 10) || (o - curves == max_curves - stack_segments)) {
554 } else if (res == Circle && max_curves - (o - curves) >= 2) {
576 debug_assert(o - curves <= max_curves);
577 return o - curves;
  /external/chromium_org/third_party/openssl/openssl/apps/
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/apps/
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/chromium_org/third_party/openssl/openssl/crypto/ecdsa/
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/openssl/crypto/ecdsa/
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...]
  /pdk/apps/CameraITS/tests/
test_capture_result.py 141 curves = [cap_res["android.tonemap.curveRed"],
155 print "Tonemap:", curves[0][1::16]
179 for c in curves:
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X962NamedCurves.java 14 * table of the current named curves defined in X.962 EC-DSA.
152 * F2m Curves
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
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCurves.java 147 private ImageFilterCurves curves() { method in class:ImageCurves
189 if (curves() == null) {
202 // We only display the other channels curves when showing the RGB curve
247 return "Curves";
294 if (curves() == null) {
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/
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
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/
ObjectHelper.java 59 import com.jme3.scene.plugins.blender.curves.CurvesHelper;
186 List<Geometry> curves = curvesHelper.toCurve(curveData, blenderContext); local
188 for(Geometry curve : curves) {
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ectest.c 84 int main(int argc, char * argv[]) { puts("Elliptic curves are disabled."); return 0; }
1219 EC_builtin_curve *curves = NULL; local
    [all...]
  /external/openssl/crypto/ec/
ectest.c 84 int main(int argc, char * argv[]) { puts("Elliptic curves are disabled."); return 0; }
1219 EC_builtin_curve *curves = NULL; local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
BlenderLoader.java 48 import com.jme3.scene.plugins.blender.curves.CurvesHelper;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
SECNamedCurves.java 920 static final Hashtable curves = new Hashtable(); field in class:SECNamedCurves
    [all...]
  /external/libvorbis/lib/
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[choice]
    [all...]
  /hardware/qcom/camera/QCamera2/stack/common/
cam_types.h 1118 cam_tonemap_curve_t curves[3]; member in struct:__anon33154
    [all...]
  /hardware/qcom/camera/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]
  /external/dropbear/libtomcrypt/
crypt.tex     [all...]

Completed in 1425 milliseconds

1 2