/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/ |
ECPublicKey.java | 8 * interface for elliptic curve public keys.
|
/external/chromium_org/webkit/renderer/compositor_bindings/ |
web_animation_unittest.cc | 18 scoped_ptr<WebAnimationCurve> curve(new WebFloatAnimationCurveImpl()); 20 new WebAnimationImpl(*curve, WebAnimation::TargetPropertyOpacity, 1, 0)); 30 scoped_ptr<WebFloatAnimationCurve> curve(new WebFloatAnimationCurveImpl()); 32 new WebAnimationImpl(*curve, WebAnimation::TargetPropertyOpacity, 1, 0));
|
web_animation_impl.cc | 34 scoped_ptr<cc::AnimationCurve> curve; local 39 curve = float_curve_impl->CloneToAnimationCurve(); 45 curve = transform_curve_impl->CloneToAnimationCurve(); 51 curve = filter_curve_impl->CloneToAnimationCurve(); 56 curve.Pass(),
|
/development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/ |
PathPoint.java | 32 public static final int CURVE = 2; 40 * The first control point, if any, for a PathPoint of type CURVE 45 * The second control point, if any, for a PathPoint of type CURVE 51 * to the location of this PathPoint. This can be one of MOVE, LINE, or CURVE. 67 * Curve constructor 76 mOperation = CURVE; 87 * Constructs and returns a PathPoint object that describes a curve to the given xy location
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebActiveGestureAnimation.cpp | 34 PassOwnPtr<WebActiveGestureAnimation> WebActiveGestureAnimation::createAtAnimationStart(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target) 36 return adoptPtr(new WebActiveGestureAnimation(curve, target, 0, true)); 39 PassOwnPtr<WebActiveGestureAnimation> WebActiveGestureAnimation::createWithTimeOffset(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target, double startTime) 41 return adoptPtr(new WebActiveGestureAnimation(curve, target, startTime, false)); 48 WebActiveGestureAnimation::WebActiveGestureAnimation(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target, double startTime, bool waitingForFirstTick) 51 , m_curve(curve) 63 // the animation start time before passing to the curve.
|
/external/iproute2/man/man8/ |
tc-hfsc.8 | 4 HFSC \- Hierarchical Fair Service Curve's control under linux 12 \fBrt\fR : realtime service curve 13 \fBls\fR : linkshare service curve 14 \fBsc\fR : rt+ls service curve 15 \fBul\fR : upperlimit service curve 45 As you can see in \fBSYNOPSIS\fR, service curve (SC) can be specified in two 51 parameters, you will specify linear service curve.
|
/external/openssh/ |
bufec.c | 50 buffer_put_ecpoint_ret(Buffer *buffer, const EC_GROUP *curve, 61 len = EC_POINT_point2oct(curve, point, POINT_CONVERSION_UNCOMPRESSED, 70 if (EC_POINT_point2oct(curve, point, POINT_CONVERSION_UNCOMPRESSED, 88 buffer_put_ecpoint(Buffer *buffer, const EC_GROUP *curve, 91 if (buffer_put_ecpoint_ret(buffer, curve, point) == -1) 96 buffer_get_ecpoint_ret(Buffer *buffer, const EC_GROUP *curve, 125 if (EC_POINT_oct2point(curve, point, buf, len, bnctx) != 1) { 129 /* EC_POINT_oct2point verifies that the point is on the curve for us */ 139 buffer_get_ecpoint(Buffer *buffer, const EC_GROUP *curve, 142 if (buffer_get_ecpoint_ret(buffer, curve, point) == -1 [all...] |
/external/chromium_org/third_party/skia/src/pathops/ |
SkOpEdgeBuilder.cpp | 63 SkPoint curve[4]; local 72 closeContour(curve[0], curveStart); 76 curveStart = curve[0] = pts[0]; 80 if (SkDPoint::ApproximatelyEqual(curve[0], pts[1])) { 89 curve[1] = pts[1]; 90 curve[2] = pts[2]; 91 verb = SkReduceOrder::Quad(curve, pts); 104 curve[0] = quadPts[nQuads * 2 - 1]; 109 curve[1] = pts[1]; 110 curve[2] = pts[2] [all...] |
/external/skia/src/pathops/ |
SkOpEdgeBuilder.cpp | 63 SkPoint curve[4]; local 72 closeContour(curve[0], curveStart); 76 curveStart = curve[0] = pts[0]; 80 if (SkDPoint::ApproximatelyEqual(curve[0], pts[1])) { 89 curve[1] = pts[1]; 90 curve[2] = pts[2]; 91 verb = SkReduceOrder::Quad(curve, pts); 104 curve[0] = quadPts[nQuads * 2 - 1]; 109 curve[1] = pts[1]; 110 curve[2] = pts[2] [all...] |
/libcore/luni/src/main/java/java/security/spec/ |
ECPublicKeySpec.java | 21 * The parameters specifying an Elliptic Curve (EC) public key. 26 // The associated elliptic curve domain parameters 31 * curve point and parameter specification. 34 * the public elliptic curve point {@code W}. 66 * Returns the public elliptic curve point {@code W}. 68 * @return the public elliptic curve point {@code W}.
|
ECGenParameterSpec.java | 21 * The parameter specification used to generate elliptic curve domain parameters. 33 * the name of the elliptic curve domain parameter. 44 * curve domain parameter.
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/ |
IpoHelper.java | 50 Structure curvebase = (Structure) ipoStructure.getFieldValue("curve");
58 for (Structure curve : curves) {
59 Pointer pBezTriple = (Pointer) curve.getFieldValue("bezt");
61 int type = ((Number) curve.getFieldValue("adrcode")).intValue();
90 for (Structure curve : curves) {
91 Pointer pBezTriple = (Pointer) curve.getFieldValue("bezt");
93 int type = this.getCurveType(curve, blenderContext);
103 * This method returns the type of the ipo curve.
110 * @return the type of the curve
123 // determining the curve type [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/ |
CurvesHelper.java | 17 import com.jme3.scene.shape.Curve;
54 * This method converts given curve structure into a list of geometries representing the curve. The list is used here because on object
57 * the curve structure
60 * @return a list of geometries repreenting a single curve object
70 LOGGER.warning("No front face in curve implemented yet!");//TODO: implement front face
73 LOGGER.warning("No back face in curve implemented yet!");//TODO: implement back face
146 Curve bevelCurve = new Curve(bevelSpline, bevResol);
153 Curve bevelCurve = new Curve(bevelSpline, bevResol); 241 Curve curve = new Curve(spline, resolution); local [all...] |
BezierCurve.java | 20 * The type of the curve. Describes the data it modifies.
24 /** The dimension of the curve. */
32 throw new IllegalArgumentException("The dimension of the curve should be 2 or 3!");
60 * @return the value of the curve
80 * This method returns the frame where last bezier triple center point of the bezier curve is located.
81 * @return the frame number of the last defined bezier triple point for the curve
88 * This method returns the type of the bezier curve. The type describes the parameter that this curve modifies
90 * @return the type of the bezier curve
97 * This method returns a list of control points for this curve. [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/ |
ConfigurableProvider.java | 13 * Elliptic Curve CA parameters - thread local version 18 * Elliptic Curve CA parameters - thread local version
|
/external/chromium_org/content/test/ |
web_gesture_curve_mock.h | 13 // A simple class for mocking a WebGestureCurve. The curve flings at velocity 21 // Returns false if curve has finished and can no longer be applied.
|
/libcore/luni/src/main/java/java/security/interfaces/ |
package.html | 11 (3) Keys for a generic Elliptic Curve asymmetric encryption algorithm.
|
ECPublicKey.java | 24 * The interface for an Elliptic Curve (EC) public key. 34 * Returns the public point {@code W} on an elliptic curve (EC). 36 * @return the public point {@code W} on an elliptic curve (EC).
|
/external/chromium_org/cc/test/ |
animation_test_common.cc | 32 curve(KeyframedFloatAnimationCurve::Create()); 38 curve->AddKeyframe(FloatKeyframe::Create(0.0, start_opacity, func.Pass())); 39 curve->AddKeyframe(FloatKeyframe::Create( 45 curve.PassAs<AnimationCurve>(), 61 curve(KeyframedTransformAnimationCurve::Create()); 66 curve->AddKeyframe(TransformKeyframe::Create( 72 curve->AddKeyframe(TransformKeyframe::Create( 78 curve.PassAs<AnimationCurve>(), 94 curve(KeyframedFilterAnimationCurve::Create()); 100 curve->AddKeyframe(FilterKeyframe::Create [all...] |
/external/chromium_org/webkit/child/ |
fling_curve_configuration.h | 27 // Create a touchpad fling curve using the current parameters. 32 // Create a touchscreen fling curve using the current parameters. 37 // Set the curve parameters.
|
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
AnimationTranslationUtil.cpp | 131 template <class Value, class Keyframe, class Curve> 132 bool appendKeyframeWithStandardTimingFunction(Curve* curve, double keyTime, const Value* value, const Value* lastValue, blink::WebAnimationCurve::TimingFunctionType timingFunctionType, const FloatSize&) 134 curve->add(Keyframe(keyTime, value->value()), timingFunctionType); 138 template <class Value, class Keyframe, class Curve> 139 bool appendKeyframeWithCustomBezierTimingFunction(Curve* curve, double keyTime, const Value* value, const Value* lastValue, double x1, double y1, double x2, double y2, const FloatSize&) 141 curve->add(Keyframe(keyTime, value->value()), x1, y1, x2, y2); 146 bool appendKeyframeWithStandardTimingFunction<TransformAnimationValue, WebTransformKeyframe, WebTransformAnimationCurve>(WebTransformAnimationCurve* curve, double keyTime, const TransformAnimationValue* value, const TransformAnimationValue* lastValue, blink::WebAnimationCurve::TimingFunctionType timingFunctionType, const FloatSize& boxSize) 161 curve->add(WebTransformKeyframe(keyTime, operations.release()), timingFunctionType) 333 OwnPtr<WebTransformAnimationCurve> curve = adoptPtr(Platform::current()->compositorSupport()->createTransformAnimationCurve()); local 338 OwnPtr<WebFloatAnimationCurve> curve = adoptPtr(Platform::current()->compositorSupport()->createFloatAnimationCurve()); local 343 OwnPtr<WebFilterAnimationCurve> curve = adoptPtr(Platform::current()->compositorSupport()->createFilterAnimationCurve()); local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
WTauNafMultiplier.java | 29 ECCurve.F2m curve = (ECCurve.F2m) p.getCurve(); local 30 int m = curve.getM(); 31 byte a = curve.getA().toBigInteger().byteValue(); 32 byte mu = curve.getMu(); 33 BigInteger[] s = curve.getSi(); 84 ECCurve.F2m curve = (ECCurve.F2m)p.getCurve(); local 85 byte a = curve.getA().toBigInteger().byteValue();
|
Tnaf.java | 24 * e.g. "Guide to Elliptic Curve Cryptography", Darrel Hankerson, 77 * @param mu The parameter <code>μ</code> of the elliptic curve. 116 * @param mu The parameter <code>μ</code> of the elliptic curve. 160 * @param mu The parameter <code>μ</code> of the elliptic curve. Must 272 * @param s The curve parameter <code>s<sub>0</sub></code> or 275 * @param a The parameter <code>a</code> of the elliptic curve. 309 * @param mu The parameter <code>μ</code> of the elliptic curve. 407 * Returns the parameter <code>μ</code> of the elliptic curve. 408 * @param curve The elliptic curve from which to obtain <code>μ</code> 651 ECCurve.F2m curve = (ECCurve.F2m) p.getCurve(); local 672 ECCurve.F2m curve = (ECCurve.F2m)p.getCurve(); local 692 ECCurve.F2m curve = (ECCurve.F2m)p.getCurve(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
ScrollAnimatorNone.cpp | 62 ScrollAnimatorNone::Parameters::Parameters(bool isEnabled, double animationTime, double repeatMinimumSustainTime, Curve attackCurve, double attackTime, Curve releaseCurve, double releaseTime, Curve coastTimeCurve, double maximumCoastTime) 75 double ScrollAnimatorNone::PerAxisData::curveAt(Curve curve, double t) 77 switch (curve) { 114 double ScrollAnimatorNone::PerAxisData::attackCurve(Curve curve, double deltaTime, double curveT, double startPosition, double attackPosition) 117 double positionFactor = curveAt(curve, t); 121 double ScrollAnimatorNone::PerAxisData::releaseCurve(Curve curve, double deltaTime, double curveT, double releasePosition, double desiredPosition [all...] |
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
cadlisp.php | 81 'vlax-add-cmd','vlax-create-object','vlax-curve-getArea', 82 'vlax-curve-getClosestPointTo','vlax-curve-getClosestPointToProjection', 83 'vlax-curve-getDistAtParam','vlax-curve-getDistAtPoint', 84 'vlax-curve-getEndParam','vlax-curve-getEndPoint', 85 'vlax-curve-getFirstDeriv','vlax-curve-getParamAtDist', 86 'vlax-curve-getParamAtPoint','vlax-curve-getPointAtDist' [all...] |