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

  /dalvik/libcore/security/src/main/java/java/security/spec/
ECParameterSpec.java 25 * The parameter specification used with Elliptic Curve Cryptography (ECC).
28 // Elliptic curve for which this is parameter
29 private final EllipticCurve curve; field in class:ECParameterSpec
30 // Distinguished point on the elliptic curve called generator or base point
38 * Creates a new {@code ECParameterSpec} with the specified elliptic curve,
42 * @param curve
43 * the elliptic curve.
53 public ECParameterSpec(EllipticCurve curve, ECPoint generator,
55 this.curve = curve;
    [all...]
  /dalvik/libcore/security/src/test/java/tests/security/spec/
ECParameterSpecTest.java 35 EllipticCurve curve; field in class:ECParameterSpecTest
43 curve = new EllipticCurve(new ECFieldF2m(2), BigInteger.valueOf(1),
46 ecps = new ECParameterSpec(curve, ecpoint, BigInteger.valueOf(1), 1);
50 curve = null;
60 * case 2: NullPointerException - if curve is null
76 assertEquals("wrong elliptic curve", curve, ecps.getCurve());
82 // case 2: NullPointerException - if curve is null.
92 new ECParameterSpec(curve, null, BigInteger.valueOf(1), 1);
100 new ECParameterSpec(curve, ecpoint, null, 1)
    [all...]
ECPrivateKeySpecTest.java 47 EllipticCurve curve = new EllipticCurve(new ECFieldF2m(2), BigInteger local
51 ecparams = new ECParameterSpec(curve, ecpoint, BigInteger.valueOf(1), 1);
ECPublicKeySpecTest.java 45 EllipticCurve curve = new EllipticCurve(new ECFieldF2m(2), BigInteger local
49 params = new ECParameterSpec(curve, ecpoint, BigInteger.valueOf(1), 1);
  /external/webkit/WebCore/platform/graphics/
PathTraversalState.cpp 120 static float curveLength(PathTraversalState& traversalState, CurveType curve)
123 curveStack.append(curve);
127 float length = curve.approximateDistance();
128 if ((length - distanceLine(curve.start, curve.end)) > kPathSegmentLengthTolerance) {
130 curve.split(left, right);
131 curve = left;
137 traversalState.m_previous = curve.start;
138 traversalState.m_current = curve.end;
142 curve = curveStack.last()
    [all...]
  /external/speex/libspeex/
vorbis_psy.h 93 void compute_curve(VorbisPsy *psy, float *audio, float *curve);
94 void curve_to_lpc(VorbisPsy *psy, float *curve, float *awk1, float *awk2, int ord);
scal.c 65 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);
nb_celp.h 70 float *curve; member in struct:EncState
nb_celp.c 151 st->curve = (float*)speex_alloc(128*sizeof(float));
243 speex_free (st->curve);
416 compute_curve(st->psy, st->psy_window, st->curve);
417 /*print_vec(st->curve, 128, "curve");*/
419 SPEEX_COPY(st->old_curve, st->curve, 128);
691 curr_curve[i] = (1.0f-fact)*st->old_curve[i] + fact*st->curve[i];
899 SPEEX_COPY(st->old_curve, st->curve, 128);
    [all...]
  /external/openssl/crypto/ec/
ec_asn1.c 175 X9_62_CURVE *curve; member in struct:ec_parameters_st
246 ASN1_SIMPLE(ECPARAMETERS, curve, X9_62_CURVE),
430 static int ec_asn1_group2curve(const EC_GROUP *group, X9_62_CURVE *curve)
439 if (!group || !curve || !curve->a || !curve->b)
516 if (!M_ASN1_OCTET_STRING_set(curve->a, a_buf, len_1) ||
517 !M_ASN1_OCTET_STRING_set(curve->b, b_buf, len_2))
526 if (!curve->seed)
527 if ((curve->seed = ASN1_BIT_STRING_new()) == NULL
    [all...]
  /external/tremolo/Tremolo/
floor0.c 145 void vorbis_lsp_to_curve(ogg_int32_t *curve,int n,int ln,
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 */
  /frameworks/base/awt/java/awt/geom/
QuadCurve2D.java 33 * (Bezier) curve. The curved segment is determined by three points: a start
35 * the starting point gives the tangent to the curve at the starting point, and
37 * curve at the end point.
167 * Sets the data values of the curve.
338 * The PathIterator for a Quad2D curve.
358 * Constructs a new QuadCurve2D.Iterator for given curve and
439 * Instantiates a new quadratic curve.
508 * Sets the data of the curve.
527 * Sets the data of the curve.
543 * Sets the data of the curve by reading the data from an array of values
    [all...]
CubicCurve2D.java 33 * (Bezier) curve. The curved segment is determined by four points: a start
199 * Sets the data values of the curve.
508 * Instantiates a new 2-D cubic curve.
598 * Sets the data of the curve.
621 * Sets the data of the curve as point objects.
640 * Sets the data of the curve by reading the data from an array of values.
660 * Sets the data of the curve by reading the data from an array of points.
680 * Sets the data of the curve by copying it from another CubicCurve2D.
682 * @param curve
683 * the curve to copy the data points from
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex     [all...]
  /prebuilt/darwin-x86/swt/
swt.jar 
  /external/webkit/SunSpider/tests/sunspider-0.9/
string-unpack-code.js     [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
string-unpack-code.js     [all...]
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 926 milliseconds