Searched refs:curve (Results 26 - 50 of 100) sorted by relevance

1234

/external/chromium_org/cc/test/
H A Danimation_test_common.cc32 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());
64 curve->AddKeyframe(TransformKeyframe::Create(
68 curve->AddKeyframe(TransformKeyframe::Create(
74 curve.PassAs<AnimationCurve>(),
105 curve(KeyframedFilterAnimationCurve::Create());
111 curve
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPathTraversalState.cpp127 static float curveLength(PathTraversalState& traversalState, CurveType curve) argument
132 double curveScaleForToleranceSquared = curve.magnitudeSquared();
137 curveStack.append(curve);
141 float length = curve.approximateDistance();
142 double lengthDiscrepancy = length - distanceLine(curve.start, curve.end);
143 if ((lengthDiscrepancy * lengthDiscrepancy) / curveScaleForToleranceSquared > pathSegmentLengthToleranceSquared && curve.splitDepth < curveSplitDepthLimit) {
146 curve.split(leftCurve, rightCurve);
147 curve = leftCurve;
152 traversalState.m_previous = curve
[all...]
H A DGraphicsLayerTest.cpp101 OwnPtr<WebFloatAnimationCurve> curve = adoptPtr(Platform::current()->compositorSupport()->createFloatAnimationCurve()); local
102 curve->add(WebFloatKeyframe(0.0, 0.0));
103 OwnPtr<WebCompositorAnimation> floatAnimation(adoptPtr(Platform::current()->compositorSupport()->createAnimation(*curve, WebCompositorAnimation::TargetPropertyOpacity)));
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DMiniSimplify_Test.cpp7 struct curve { struct
12 struct curve test1[] = {
21 struct curve test2[] = {
28 struct curve* testSet[] = {
37 const curve* test = testSet[idx];
/external/skia/experimental/Intersection/
H A DMiniSimplify_Test.cpp7 struct curve { struct
12 struct curve test1[] = {
21 struct curve test2[] = {
28 struct curve* testSet[] = {
37 const curve* test = testSet[idx];
/external/chromium_org/cc/blink/
H A Dweb_animation_impl.cc35 scoped_ptr<cc::AnimationCurve> curve; local
40 curve = float_curve_impl->CloneToAnimationCurve();
46 curve = transform_curve_impl->CloneToAnimationCurve();
52 curve = filter_curve_impl->CloneToAnimationCurve();
58 curve = scroll_curve_impl->CloneToAnimationCurve();
63 curve.Pass(),
H A Dweb_compositor_support_impl.cc95 const blink::WebCompositorAnimationCurve& curve,
98 return new WebCompositorAnimationImpl(curve, target, animation_id, 0);
94 createAnimation( const blink::WebCompositorAnimationCurve& curve, blink::WebCompositorAnimation::TargetProperty target, int animation_id) argument
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLECGroupContext.java38 // (aka ANSI X9.62 prime192v1 and prime256v1) curve names.
120 final EllipticCurve curve = params.getCurve();
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);
169 ECParameterSpec spec = new ECParameterSpec(curve, generator, order, cofactor.intValue());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DBCECPublicKey.java82 ECCurve curve = spec.getParams().getCurve();
83 EllipticCurve ellipticCurve = EC5Util.convertCurve(curve, spec.getParams().getSeed());
200 ECCurve curve;
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, ke
[all...]
H A DKeyPairGeneratorSpi.java138 ECCurve curve = EC5Util.convertCurve(p.getCurve());
139 ECPoint g = EC5Util.convertPoint(curve, p.getGenerator(), false);
141 param = new ECKeyGenerationParameters(new ECDomainParameters(curve, g, p.getOrder(), BigInteger.valueOf(p.getCofactor())), random);
169 throw new InvalidAlgorithmParameterException("unknown curve OID: " + curveName);
174 throw new InvalidAlgorithmParameterException("unknown curve name: " + curveName);
188 ECCurve curve = EC5Util.convertCurve(p.getCurve());
189 ECPoint g = EC5Util.convertPoint(curve, p.getGenerator(), false);
191 param = new ECKeyGenerationParameters(new ECDomainParameters(curve, g, p.getOrder(), BigInteger.valueOf(p.getCofactor())), random);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DCompositorAnimations.cpp303 void addKeyframeWithTimingFunction(PlatformAnimationCurveType& curve, const PlatformAnimationKeyframeType& keyframe, const TimingFunction* timingFunction) argument
306 curve.add(keyframe);
312 curve.add(keyframe, WebCompositorAnimationCurve::TimingFunctionTypeLinear);
319 curve.add(keyframe, cubic->x1(), cubic->y1(), cubic->x2(), cubic->y2());
344 curve.add(keyframe, easeType);
358 void CompositorAnimationsImpl::addKeyframesToCurve(WebCompositorAnimationCurve& curve, const PropertySpecificKeyframeVector& keyframes, const Timing& timing) argument
375 switch (curve.type()) {
381 WebFilterAnimationCurve* filterCurve = static_cast<WebFilterAnimationCurve*>(&curve);
387 WebFloatAnimationCurve* floatCurve = static_cast<WebFloatAnimationCurve*>(&curve);
396 WebTransformAnimationCurve* transformCurve = static_cast<WebTransformAnimationCurve*>(&curve);
421 OwnPtr<WebCompositorAnimationCurve> curve; local
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DWaveShaperProcessor.h56 Float32Array* curve() { return m_curve.get(); } function in class:blink::FINAL
62 // m_curve represents the non-linear shaping curve.
H A DWaveShaperProcessor.cpp52 void WaveShaperProcessor::setCurve(Float32Array* curve) argument
57 m_curve = curve;
H A DWaveShaperDSPKernel.cpp80 Float32Array* curve = waveShaperProcessor()->curve(); local
81 if (!curve) {
82 // Act as "straight wire" pass-through if no curve is set.
87 float* curveData = curve->data();
88 int curveLength = curve->length();
97 // Apply waveshaping curve.
101 // Calculate a virtual index based on input -1 -> +1 with -1 being curve[0], +1 being
102 // curve[curveLength - 1], and 0 being at the center of the curve dat
[all...]
H A DAudioParam.h98 void setValueCurveAtTime(Float32Array* curve, double time, double duration, ExceptionState& exceptionState) argument
100 m_timeline.setValueCurveAtTime(curve, time, duration, exceptionState);
H A DAudioParamTimeline.cpp135 void AudioParamTimeline::setValueCurveAtTime(Float32Array* curve, double time, double duration, ExceptionState& exceptionState) argument
143 insertEvent(ParamEvent(ParamEvent::SetValueCurve, 0, time, 0, duration, curve));
382 Float32Array* curve = event.curve(); local
383 float* curveData = curve ? curve->data() : 0;
384 unsigned numberOfCurvePoints = curve ? curve->length() : 0;
391 if (!curve || !curveData || !numberOfCurvePoints || duration <= 0 || sampleRate <= 0) {
399 // Save old values and recalculate information based on the curve'
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollAnimatorNone.cpp73 double ScrollAnimatorNone::PerAxisData::curveAt(Curve curve, double t) argument
75 switch (curve) {
112 double ScrollAnimatorNone::PerAxisData::attackCurve(Curve curve, double deltaTime, double curveT, double startPosition, double attackPosition) argument
115 double positionFactor = curveAt(curve, t);
119 double ScrollAnimatorNone::PerAxisData::releaseCurve(Curve curve, double deltaTime, double curveT, double releasePosition, double desiredPosition) argument
122 double positionFactor = 1 - curveAt(curve, 1 - t);
126 double ScrollAnimatorNone::PerAxisData::coastCurve(Curve curve, double factor) argument
128 return 1 - curveAt(curve, 1 - factor);
131 double ScrollAnimatorNone::PerAxisData::curveIntegralAt(Curve curve, double t) argument
133 switch (curve) {
179 attackArea(Curve curve, double startT, double endT) argument
186 releaseArea(Curve curve, double startT, double endT) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEECPublicKey.java90 ECCurve curve = spec.getParams().getCurve();
91 EllipticCurve ellipticCurve = EC5Util.convertCurve(curve, spec.getParams().getSeed());
225 // ECCurve curve = spec.getCurve();
226 // EllipticCurve ellipticCurve = EC5Util.convertCurve(curve, spec.getSeed());
228 // this.q = curve.createPoint(new BigInteger(1, x), new BigInteger(1, y), false);
243 ECCurve curve;
251 curve = ecP.getCurve();
252 ellipticCurve = EC5Util.convertCurve(curve, ecP.getSeed());
266 curve = BouncyCastleProvider.CONFIGURATION.getEcImplicitlyCa().getCurve();
272 curve
[all...]
/external/speex/libspeex/
H A Dvorbis_psy.h93 void compute_curve(VorbisPsy *psy, float *audio, float *curve);
94 void curve_to_lpc(VorbisPsy *psy, float *curve, float *awk1, float *awk2, int ord);
H A Dscal.c65 float *curve; member in struct:SpeexDecorrState_
92 st->curve = speex_alloc(frame_size*sizeof(float));
232 compute_curve(st->psy, buff, st->curve);
241 gain = coef*sqrt(.1+st->curve[i]);
245 frame[0] = coef*uni_rand(&st->seed)*sqrt(.1+st->curve[0]);
246 frame[2*st->frame_size-1] = coef*uni_rand(&st->seed)*sqrt(.1+st->curve[st->frame_size-1]);
279 speex_free(st->curve);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DTnaf.java77 * @param mu The parameter <code>&mu;</code> of the elliptic curve.
116 * @param mu The parameter <code>&mu;</code> of the elliptic curve.
160 * @param mu The parameter <code>&mu;</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>&mu;</code> of the elliptic curve.
399 * Returns the parameter <code>&mu;</code> of the elliptic curve.
400 * @param curve The elliptic curve from which to obtain <code>&mu;</code>.
401 * The curve mus
408 getMu(ECCurve.F2m curve) argument
528 getSi(ECCurve.F2m curve) argument
[all...]
H A DECAlgorithms.java59 throw new IllegalArgumentException("Point must be on the same curve");
98 ECCurve curve = P.getCurve();
99 ECPoint infinity = curve.getInfinity();
106 curve.normalizeAll(points);
/external/chromium_org/cc/animation/
H A Danimation.h61 static scoped_ptr<Animation> Create(scoped_ptr<AnimationCurve> curve,
121 AnimationCurve* curve() { return curve_.get(); } function in class:cc::Animation
122 const AnimationCurve* curve() const { return curve_.get(); } function in class:cc::Animation
167 Animation(scoped_ptr<AnimationCurve> curve,
/external/openssl/crypto/ec/
H A Dec_asn1.c176 X9_62_CURVE *curve; member in struct:ec_parameters_st
247 ASN1_SIMPLE(ECPARAMETERS, curve, X9_62_CURVE),
438 static int ec_asn1_group2curve(const EC_GROUP *group, X9_62_CURVE *curve) argument
447 if (!group || !curve || !curve->a || !curve->b)
525 if (!M_ASN1_OCTET_STRING_set(curve->a, a_buf, len_1) ||
526 !M_ASN1_OCTET_STRING_set(curve->b, b_buf, len_2))
535 if (!curve->seed)
536 if ((curve
[all...]
/external/chromium_org/third_party/qcms/src/
H A Diccread.c457 struct curveType *curve = NULL; local
472 invalid_source(src, "curve size too large");
475 curve = malloc(sizeof(struct curveType) + sizeof(uInt16Number)*count);
476 if (!curve)
479 curve->count = count;
480 curve->type = type;
483 curve->data[i] = read_u16(src, offset + 12 + i*2);
494 curve = malloc(sizeof(struct curveType));
495 if (!curve)
498 curve
520 struct curveType *curve = NULL; local
874 struct curveType *curve; local
899 struct curveType *curve; local
[all...]

Completed in 668 milliseconds

1234