Searched refs:curve (Results 51 - 75 of 97) sorted by relevance

1234

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
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);
H A DBCECPrivateKey.java78 ECCurve curve = spec.getParams().getCurve();
81 ellipticCurve = EC5Util.convertCurve(curve, spec.getParams().getSeed());
303 ECCurve curve = EC5Util.convertCurve(ecSpec.getCurve());
306 curve,
307 EC5Util.convertPoint(curve, ecSpec.getGenerator(), withCompression),
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DScrollAnimatorNoneTest.cpp328 double ScrollAnimatorNoneTest::attackArea(ScrollAnimatorNone::Curve curve, double startT, double endT) argument
330 return ScrollAnimatorNone::PerAxisData::attackArea(curve, startT, endT);
333 double ScrollAnimatorNoneTest::releaseArea(ScrollAnimatorNone::Curve curve, double startT, double endT) argument
335 return ScrollAnimatorNone::PerAxisData::releaseArea(curve, startT, endT);
338 double ScrollAnimatorNoneTest::attackCurve(ScrollAnimatorNone::Curve curve, double deltaT, double curveT, double startPosition, double attackPosition) argument
340 return ScrollAnimatorNone::PerAxisData::attackCurve(curve, deltaT, curveT, startPosition, attackPosition);
343 double ScrollAnimatorNoneTest::releaseCurve(ScrollAnimatorNone::Curve curve, double deltaT, double curveT, double releasePosition, double desiredPosition) argument
345 return ScrollAnimatorNone::PerAxisData::releaseCurve(curve, deltaT, curveT, releasePosition, desiredPosition);
348 double ScrollAnimatorNoneTest::coastCurve(ScrollAnimatorNone::Curve curve, double factor) argument
350 return ScrollAnimatorNone::PerAxisData::coastCurve(curve, facto
353 curveTestInner(ScrollAnimatorNone::Curve curve, double step, double time) argument
403 curveTest(ScrollAnimatorNone::Curve curve) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioParam.h92 void setValueCurveAtTime(Float32Array* curve, double time, double duration) { m_timeline.setValueCurveAtTime(curve, time, duration); } argument
/external/libvorbis/lib/
H A Dlsp.c44 /* three possible LSP to f curve functions; the exact computation
65 void vorbis_lsp_to_curve(float *curve,int *map,int n,int ln,float *lsp,int m, argument
109 curve[i++]*=q;
140 void vorbis_lsp_to_curve(float *curve,int *map,int n,int ln,float *lsp,int m, argument
236 curve[i]*=amp;
237 while(map[++i]==k)curve[i]*=amp;
248 void vorbis_lsp_to_curve(float *curve,int *map,int n,int ln,float *lsp,int m, argument
278 curve[i]*=q;
279 while(map[++i]==k)curve[i]*=q;
/external/chromium_org/content/renderer/compositor_bindings/
H A Dweb_compositor_support_impl.h46 const blink::WebAnimationCurve& curve,
/external/tremolo/Tremolo/
H A Dfloor0.c145 void vorbis_lsp_to_curve(ogg_int32_t *curve,int n,int ln, argument
189 memset(curve,0,sizeof(*curve)*n);
315 curve[i]= MULT31_SHIFT15(curve[i],amp);
329 curve[i]= MULT31_SHIFT15(curve[i],amp);
439 /* take the coefficients back to a spectral envelope curve */
/external/chromium_org/third_party/WebKit/Source/web/
H A DLinkHighlight.cpp284 OwnPtr<WebFloatAnimationCurve> curve = adoptPtr(compositorSupport->createFloatAnimationCurve()); local
286 curve->add(WebFloatKeyframe(0, startOpacity));
290 curve->add(WebFloatKeyframe(extraDurationRequired, startOpacity));
292 curve->add(WebFloatKeyframe(fadeDuration + extraDurationRequired, blink::layoutTestMode() ? startOpacity : 0));
294 OwnPtr<WebAnimation> animation = adoptPtr(compositorSupport->createAnimation(*curve, WebAnimation::TargetPropertyOpacity));
/external/chromium_org/net/third_party/nss/ssl/
H A Dssl3ecc.c125 ECName curve; member in struct:Bits2CurveStr
167 ssl3_ECName2Params(PLArenaPool * arena, ECName curve, SECKEYECParams * params) argument
171 if ((curve <= ec_noName) || (curve >= ec_pastLastName) ||
172 ((oidData = SECOID_FindOIDByTag(ecName2OIDTag[curve])) == NULL)) {
180 * representing the named curve. The actual OID is in
199 * representing a named curve. Here, we strip away everything
200 * before the actual OID and use the OID to look up a named curve.
428 for ( i = 0; bits2curve[i].curve != ec_noName; i++) {
431 if (SSL_IS_CURVE_NEGOTIATED(curvemsk, bits2curve[i].curve)) {
760 ECName curve; local
[all...]
/external/chromium_org/cc/animation/
H A Dlayer_animation_controller.cc155 event.opacity = animation->curve()->ToFloatAnimationCurve()->GetValue(
169 animation->curve()->ToTransformAnimationCurve()->GetValue(trimmed);
181 event.filters = animation->curve()->ToFilterAnimationCurve()->GetValue(
411 ->curve()
449 animations_[i]->curve()->ToTransformAnimationCurve();
468 animations_[i]->curve()->ToTransformAnimationCurve();
483 animations_[i]->curve()->ToTransformAnimationCurve();
499 animations_[i]->curve()->ToTransformAnimationCurve();
540 animations_[i]->curve()->ToScrollOffsetAnimationCurve()->SetInitialValue(
806 animations_[i]->curve()
[all...]
H A Dlayer_animation_controller_unittest.cc36 scoped_ptr<Animation> CreateAnimation(scoped_ptr<AnimationCurve> curve, argument
39 return Animation::Create(curve.Pass(), 0, id, property);
508 scoped_ptr<KeyframedTransformAnimationCurve> curve(
513 curve->AddKeyframe(
516 curve->AddKeyframe(
520 curve.PassAs<AnimationCurve>(), 1, 0, Animation::Transform));
559 scoped_ptr<KeyframedFilterAnimationCurve> curve(
564 curve->AddKeyframe(
568 curve->AddKeyframe(
572 curve
[all...]
H A Dkeyframed_animation_curve.cc46 scoped_ptr<AnimationCurve> curve(timing_function->Clone());
48 static_cast<TimingFunction*>(curve.release()));
/external/libvorbis/doc/
H A D07-floor1.tex9 encode a spectral envelope curve. The representation plots this curve
20 Floor type one represents a spectral curve as a series of
21 line segments. Synthesis constructs a floor curve using iterative
177 indicating this floor curve (and thus this channel) is unused this
226 An end-of-packet condition during curve decode should be considered a
237 \paragraph{curve computation} \label{vorbis:spec:floor1-synth}
241 values taken from the bitstream. The second step plots the curve
336 \item[step 2: curve synthesis]
340 calling to floor decode). Floor 1 curve synthesi
[all...]
H A D06-floor0.tex10 smooth spectral envelope curve as the frequency response of the LSP
50 Extracting a floor0 curve from an audio packet consists of first
51 decoding the curve amplitude and \varname{[floor0_order]} LSP
53 curve, which is defined as the frequency response of the decoded LSP
91 required for curve computation. For example, if the VQ codebook used
104 \subsubsection{curve computation} \label{vorbis:spec:floor0-synth}
145 The above is used to synthesize the LSP curve on a Bark-scale frequency
147 Similarly, the below calculation synthesizes the output LSP curve \varname{[output]} on a log
H A D01-introduction.tex210 Floor 1 represents the curve as a piecewise linear interpolated
232 once the floor curve has been subtracted out. In simplest terms, it
300 \item generate floor curve from decoded floor data
432 \paragraph{generate floor curve}
434 The decoder may choose to generate the floor curve at any appropriate
435 time. It is reasonable to generate the output curve when the floor
450 multiplies the floor curve and residue vectors element by element,
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEECPrivateKey.java77 ECCurve curve = spec.getParams().getCurve();
80 ellipticCurve = EC5Util.convertCurve(curve, spec.getParams().getSeed());
312 ECCurve curve = EC5Util.convertCurve(ecSpec.getCurve());
315 curve,
316 EC5Util.convertPoint(curve, ecSpec.getGenerator(), withCompression),
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_unittest_animation.cc518 const FloatAnimationCurve* curve = variable
519 animation->curve()->ToFloatAnimationCurve();
520 float start_opacity = curve->GetValue(0.0);
521 float end_opacity = curve->GetValue(curve->Duration());
524 double time = curve->Duration() * 0.25;
528 EXPECT_FLOAT_EQ(linearly_interpolated_opacity, curve->GetValue(time));
702 scoped_ptr<AnimationCurve> curve(EaseTimingFunction::Create());
704 Animation::Create(curve.Pass(), 1, 1,
1100 scoped_ptr<ScrollOffsetAnimationCurve> curve(
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DEdgeWalker.cpp411 // the curve is deferred and not added right away because the
412 // following edge may extend the first curve.
424 SkPoint* curve[4]; local
426 curve[0] = &ptArray[verb];
428 curve[1] = &ptArray[2];
429 curve[2] = &ptArray[1];
431 curve[verb] = &ptArray[0];
433 curve[0] = &ptArray[0];
435 curve[1] = &ptArray[1];
436 curve[
1806 SkPoint curve[4]; local
1813 QuadSubDivide(lastPoints(), fTAbove, fTBelow, curve); local
1816 CubicSubDivide(lastPoints(), fTAbove, fTBelow, curve); local
[all...]
/external/skia/experimental/Intersection/
H A DEdgeWalker.cpp411 // the curve is deferred and not added right away because the
412 // following edge may extend the first curve.
424 SkPoint* curve[4]; local
426 curve[0] = &ptArray[verb];
428 curve[1] = &ptArray[2];
429 curve[2] = &ptArray[1];
431 curve[verb] = &ptArray[0];
433 curve[0] = &ptArray[0];
435 curve[1] = &ptArray[1];
436 curve[
1806 SkPoint curve[4]; local
1813 QuadSubDivide(lastPoints(), fTAbove, fTBelow, curve); local
1816 CubicSubDivide(lastPoints(), fTAbove, fTBelow, curve); local
[all...]
/external/speex/libspeex/
H A Dnb_celp.h70 float *curve; member in struct:EncState
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DCompositorAnimationsTestHelper.h122 MOCK_METHOD3(createAnimation, blink::WebAnimation*(const blink::WebAnimationCurve& curve, blink::WebAnimation::TargetProperty target, int animationId));
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_icc.cpp205 cmsToneCurve* curve = cmsBuildGamma(NULL, gamma); local
206 if (curve == NULL) {
209 FX_LPVOID profile = cmsCreateGrayProfile(D50, curve);
210 cmsFreeToneCurve(curve);
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpAngle.cpp174 // given a line, see if the opposite curve's convex hull is all on one side
471 // If this point is on the curve, it should have been detected earlier by ordinary
472 // curve intersection. This may be hard to determine in general, but for lines,
499 const SkDCubic& curve = index ? rh.fCurvePart : fCurvePart;
502 minX = SkTMin(minX, curve[idx2].fX);
503 minY = SkTMin(minY, curve[idx2].fY);
504 maxX = SkTMax(maxX, curve[idx2].fX);
505 maxY = SkTMax(maxY, curve[idx2].fY);
517 const SkDCubic& curve = sIndex ? rh.fCurvePart : fCurvePart;
520 SkDVector mid = segment.dPtAtT(tStart + (sCeptT - tStart) / 2) - curve[
[all...]
/external/skia/src/pathops/
H A DSkOpAngle.cpp174 // given a line, see if the opposite curve's convex hull is all on one side
471 // If this point is on the curve, it should have been detected earlier by ordinary
472 // curve intersection. This may be hard to determine in general, but for lines,
499 const SkDCubic& curve = index ? rh.fCurvePart : fCurvePart;
502 minX = SkTMin(minX, curve[idx2].fX);
503 minY = SkTMin(minY, curve[idx2].fY);
504 maxX = SkTMax(maxX, curve[idx2].fX);
505 maxY = SkTMax(maxY, curve[idx2].fY);
517 const SkDCubic& curve = sIndex ? rh.fCurvePart : fCurvePart;
520 SkDVector mid = segment.dPtAtT(tStart + (sCeptT - tStart) / 2) - curve[
[all...]
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_win.cpp1439 const TTPOLYCURVE* curve = fCurveIter.next(); local
1440 if (NULL == curve) {
1443 fPointIter.set(curve);
1449 const TTPOLYCURVE* curve = fCurveIter.next(); local
1450 if (NULL == curve) {
1454 fPointIter.set(curve);
1517 size_t size_of_TTPOLYCURVE(const TTPOLYCURVE& curve) { argument
1518 return 2*sizeof(WORD) + curve.cpfx*sizeof(POINTFX);
1524 /** Iterates over all of the polygon points in a polygon curve. */

Completed in 2245 milliseconds

1234