/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
WaveShaperDSPKernel.cpp | 82 Float32Array* curve = waveShaperProcessor()->curve(); local 83 if (!curve) { 84 // Act as "straight wire" pass-through if no curve is set. 89 float* curveData = curve->data(); 90 int curveLength = curve->length(); 99 // Apply waveshaping curve. 103 // Calculate a virtual index based on input -1 -> +1 with 0 being at the center of the curve data. 104 // Then linearly interpolate between the two points in the curve. 110 // Clip index to the input range of the curve [all...] |
AudioParamTimeline.cpp | 61 void AudioParamTimeline::setValueCurveAtTime(Float32Array* curve, double time, double duration) 63 insertEvent(ParamEvent(ParamEvent::SetValueCurve, 0, time, 0, duration, curve)); 298 Float32Array* curve = event.curve(); local 299 float* curveData = curve ? curve->data() : 0; 300 unsigned numberOfCurvePoints = curve ? curve->length() : 0; 302 // Curve events have duration, so don't just use next event time. 307 if (!curve || !curveData || !numberOfCurvePoints || duration <= 0 || sampleRate <= 0) [all...] |
WaveShaperNode.cpp | 48 void WaveShaperNode::setCurve(Float32Array* curve) 51 waveShaperProcessor()->setCurve(curve); 54 Float32Array* WaveShaperNode::curve() function in class:WebCore::WaveShaperNode 56 return waveShaperProcessor()->curve();
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
PathTraversalState.cpp | 117 static float curveLength(PathTraversalState& traversalState, CurveType curve) 122 curveStack.append(curve); 126 float length = curve.approximateDistance(); 127 if ((length - distanceLine(curve.start, curve.end)) > kPathSegmentLengthTolerance && curveStack.size() <= curveStackDepthLimit) { 130 curve.split(leftCurve, rightCurve); 131 curve = leftCurve; 136 traversalState.m_previous = curve.start; 137 traversalState.m_current = curve.end; 141 curve = curveStack.last() [all...] |
/external/chromium_org/webkit/child/ |
touch_fling_gesture_curve.cc | 46 // This curve implementation is based on the notion of a single, absolute 47 // curve, which starts at a large velocity and smoothly decreases to 48 // zero. For a given input velocity, we find where on the curve this 54 // earlier on the curve and thus take longer to reach the end. No 65 // The curve is modelled as a 4th order polynomial, starting at t = 0, 93 // Curve ends when velocity reaches zero. 101 // and assume that the curve parameters define a monotonically decreasing 117 // Compute curve position at offset time 119 TRACE_EVENT_ASYNC_BEGIN1("input", "GestureAnimation", this, "curve", 154 // scrollBy() could delete this curve if the animation is over, so don' [all...] |
/libcore/luni/src/main/java/java/security/spec/ |
ECPoint.java | 23 * A Point on an Elliptic Curve in barycentric (or affine) coordinates. 28 * The point on an Elliptic Curve at infinity. 80 * Returns whether the specified object and this elliptic curve point are 85 * @return {@code true} if the specified object and this elliptic curve 106 * Returns the hashcode of this elliptic curve point. 108 * @return the hashcode of this elliptic curve point.
|
package.html | 14 The parameters for the Elliptic Curve (EC) encryption algorithm are only specified as
|
/external/chromium_org/crypto/ |
p224.h | 16 // P224 implements an elliptic curve group, commonly known as P224 and defined 27 // point on the curve. Each field element is represented as a big-endian 47 // curve and scalar is a 28-byte, big-endian number.
|
/development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/ |
AnimatorPath.java | 25 * (which creates a line segment from the previous location) and a curve 26 * location (which creates a B?zier curve from the previous location). 53 * Create a quadratic B?zier curve from the current path point to the new one 54 * specified by x and y. The curve uses the current path location as the first anchor
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/nist/ |
NISTNamedCurves.java | 59 * return the X9ECParameters object for the named curve represented by 60 * the passed in object identifier. Null if the curve isn't present. 62 * @param oid an object identifier representing a named curve, if present. 83 * return the named curve name represented by the given object identifier.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/ |
ECPointEncoder.java | 4 * All BC elliptic curve keys implement this interface. You need to
|
/external/chromium_org/third_party/openssl/openssl/crypto/ecdh/ |
ecdhtest.c | 5 * The Elliptic Curve Public-Key Crypto Library (ECC Code) included 326 if (!test_ecdh_curve(NID_X9_62_prime192v1, "NIST Prime-Curve P-192", ctx, out)) goto err; 327 if (!test_ecdh_curve(NID_secp224r1, "NIST Prime-Curve P-224", ctx, out)) goto err; 328 if (!test_ecdh_curve(NID_X9_62_prime256v1, "NIST Prime-Curve P-256", ctx, out)) goto err; 329 if (!test_ecdh_curve(NID_secp384r1, "NIST Prime-Curve P-384", ctx, out)) goto err; 330 if (!test_ecdh_curve(NID_secp521r1, "NIST Prime-Curve P-521", ctx, out)) goto err; 333 if (!test_ecdh_curve(NID_sect163k1, "NIST Binary-Curve K-163", ctx, out)) goto err; 334 if (!test_ecdh_curve(NID_sect163r2, "NIST Binary-Curve B-163", ctx, out)) goto err; 335 if (!test_ecdh_curve(NID_sect233k1, "NIST Binary-Curve K-233", ctx, out)) goto err; 336 if (!test_ecdh_curve(NID_sect233r1, "NIST Binary-Curve B-233", ctx, out)) goto err [all...] |
/external/openssl/crypto/ecdh/ |
ecdhtest.c | 5 * The Elliptic Curve Public-Key Crypto Library (ECC Code) included 326 if (!test_ecdh_curve(NID_X9_62_prime192v1, "NIST Prime-Curve P-192", ctx, out)) goto err; 327 if (!test_ecdh_curve(NID_secp224r1, "NIST Prime-Curve P-224", ctx, out)) goto err; 328 if (!test_ecdh_curve(NID_X9_62_prime256v1, "NIST Prime-Curve P-256", ctx, out)) goto err; 329 if (!test_ecdh_curve(NID_secp384r1, "NIST Prime-Curve P-384", ctx, out)) goto err; 330 if (!test_ecdh_curve(NID_secp521r1, "NIST Prime-Curve P-521", ctx, out)) goto err; 333 if (!test_ecdh_curve(NID_sect163k1, "NIST Binary-Curve K-163", ctx, out)) goto err; 334 if (!test_ecdh_curve(NID_sect163r2, "NIST Binary-Curve B-163", ctx, out)) goto err; 335 if (!test_ecdh_curve(NID_sect233k1, "NIST Binary-Curve K-233", ctx, out)) goto err; 336 if (!test_ecdh_curve(NID_sect233r1, "NIST Binary-Curve B-233", ctx, out)) goto err [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
BCECPublicKey.java | 82 ECCurve curve = spec.getParams().getCurve(); local 83 EllipticCurve ellipticCurve = EC5Util.convertCurve(curve, spec.getParams().getSeed()); 200 ECCurve curve; local 208 curve = ecP.getCurve(); 209 ellipticCurve = EC5Util.convertCurve(curve, ecP.getSeed()); 223 curve = configuration.getEcImplicitlyCa().getCurve(); 229 curve = ecP.getCurve(); 230 ellipticCurve = EC5Util.convertCurve(curve, ecP.getSeed()); 251 int qLength = new X9IntegerConverter().getByteLength(curve); 265 X9ECPoint derQ = new X9ECPoint(curve, key) 300 ECCurve curve = EC5Util.convertCurve(ecSpec.getCurve()); local 312 ECCurve curve = this.engineGetQ().getCurve(); local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
JCEECPublicKey.java | 90 ECCurve curve = spec.getParams().getCurve(); local 91 EllipticCurve ellipticCurve = EC5Util.convertCurve(curve, spec.getParams().getSeed()); 226 // ECCurve curve = spec.getCurve(); 227 // EllipticCurve ellipticCurve = EC5Util.convertCurve(curve, spec.getSeed()); 229 // this.q = curve.createPoint(new BigInteger(1, x), new BigInteger(1, y), false); 244 ECCurve curve; local 252 curve = ecP.getCurve(); 253 ellipticCurve = EC5Util.convertCurve(curve, ecP.getSeed()); 267 curve = BouncyCastleProvider.CONFIGURATION.getEcImplicitlyCa().getCurve(); 273 curve = ecP.getCurve() 394 ECCurve curve = EC5Util.convertCurve(ecSpec.getCurve()); local 406 ECCurve curve = this.engineGetQ().getCurve(); local [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
OpenSSLECGroupContext.java | 38 // (aka ANSI X9.62 prime192v1 and prime256v1) curve names. 120 final EllipticCurve curve = params.getCurve(); local 121 final ECField field = curve.getField(); 137 return OpenSSLECGroupContext.getInstance(type, p, curve.getA(), curve.getB(), 157 throw new RuntimeException("unknown curve type " + type); 160 final EllipticCurve curve = new EllipticCurve(field, a, b); local 169 return new ECParameterSpec(curve, generator, order, cofactor.intValue(), curveName);
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
DynamicsCompressorKernel.h | 99 // Static compression curve. 108 // This applies to the portion of the curve above m_kneeThresholdDb (see below). 116 // m_dbKnee is the number of dB above the threshold before we enter the "ratio" portion of the curve. 118 // The portion between m_dbThreshold and m_kneeThresholdDb is the "soft knee" portion of the curve 125 // Internal parameter for the knee portion of the curve.
|
/external/chromium_org/third_party/mesa/src/src/mesa/math/ |
m_eval.h | 41 * Since stability is not important for displaying curve 44 * A cubic Bezier curve with control points b0, b1, b2, b3 can be 68 * TP Bezier surface. First a control polygon for a curve 70 * then the point on the curve for the other parameter 73 * To store the curve control polygon additional storage
|
/external/eigen/unsupported/Eigen/src/Splines/ |
SplineFwd.h | 28 typedef _Scalar Scalar; /*!< The spline curve's scalar type. */ 29 enum { Dimension = _Dim /*!< The spline curve's dimension. */ }; 30 enum { Degree = _Degree /*!< The spline curve's degree. */ }; 32 enum { OrderAtCompileTime = _Degree==Dynamic ? Dynamic : _Degree+1 /*!< The spline curve's order at compile-time. */ }; 63 enum { OrderAtCompileTime = _Degree==Dynamic ? Dynamic : _Degree+1 /*!< The spline curve's order at compile-time. */ };
|
/external/mesa3d/src/mesa/math/ |
m_eval.h | 41 * Since stability is not important for displaying curve 44 * A cubic Bezier curve with control points b0, b1, b2, b3 can be 68 * TP Bezier surface. First a control polygon for a curve 70 * then the point on the curve for the other parameter 73 * To store the curve control polygon additional storage
|
/external/iproute2/man/man7/ |
tc-hfsc.7 | 3 tc-hfcs \- Hierarchical Fair Service Curve 7 HFSC \- \fBHierarchical Fair Service Curve\fR was first presented at 26 minimize any discrepancy between the service curve and the actual amount of 59 SC \- service curve 64 To understand how HFSC works, we must first introduce a service curve. 68 allowed to transfer not less than the amount specified by its service curve \- 69 then service curve is not violated. 79 ability to "look back", so if during current active period service curve is violated, maybe it 108 than the service curve, then it might compensate for smaller service during 117 when should we start transferring packets, so a service curve of a class is no [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Spline.java | 44 * If the type of the curve is Bezier curve the control points should be provided 47 * for the border points of the curve, who should have only one handle point. 73 * If the type of the curve is Bezier curve the control points should be provided 76 * for the border points of the curve, who should have only one handle point. 183 * This method computes the total length of the curve. 212 * This method computes the Catmull Rom curve length. 227 * This method calculates the Bezier curve length. 242 * This method calculates the NURB curve length [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/ec/ |
ec_asn1.c | 174 X9_62_CURVE *curve; member in struct:ec_parameters_st 245 ASN1_SIMPLE(ECPARAMETERS, curve, X9_62_CURVE), 436 static int ec_asn1_group2curve(const EC_GROUP *group, X9_62_CURVE *curve) 445 if (!group || !curve || !curve->a || !curve->b) 523 if (!M_ASN1_OCTET_STRING_set(curve->a, a_buf, len_1) || 524 !M_ASN1_OCTET_STRING_set(curve->b, b_buf, len_2)) 533 if (!curve->seed) 534 if ((curve->seed = ASN1_BIT_STRING_new()) == NULL [all...] |
/external/openssl/crypto/ec/ |
ec_asn1.c | 174 X9_62_CURVE *curve; member in struct:ec_parameters_st 245 ASN1_SIMPLE(ECPARAMETERS, curve, X9_62_CURVE), 436 static int ec_asn1_group2curve(const EC_GROUP *group, X9_62_CURVE *curve) 445 if (!group || !curve || !curve->a || !curve->b) 523 if (!M_ASN1_OCTET_STRING_set(curve->a, a_buf, len_1) || 524 !M_ASN1_OCTET_STRING_set(curve->b, b_buf, len_2)) 533 if (!curve->seed) 534 if ((curve->seed = ASN1_BIT_STRING_new()) == NULL [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
Curve.java | 42 * A <code>Curve</code> is a visual, line-based representation of a {@link Spline}. 49 public class Curve extends Mesh { 57 public Curve(){ 61 * Create a curve mesh. 64 * @param controlPoints the control points to use to create this curve 67 public Curve(Vector3f[] controlPoints, int nbSubSegments) { 72 * Create a curve mesh from a Spline 77 public Curve(Spline spline, int nbSubSegments) { 143 * This method creates the Bezier path for this curve. 195 * This method creates the Nurb path for this curve [all...] |