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

1 2

  /external/chromium_org/third_party/skia/samplecode/
SampleHairCurves.cpp 39 SkPath curves; local
49 curves.moveTo(pts[0], pts[1]);
50 curves.cubicTo(pts[2], pts[3],
70 curves.moveTo(pts[0], pts[1]);
71 curves.quadTo(pts[2], pts[3],
90 curves.moveTo(pts[0], pts[1]);
91 curves.conicTo(pts[2], pts[3],
108 curves.moveTo(pts[0], pts[1]);
109 curves.lineTo(pts[2], pts[3]);
116 canvas->drawPath(curves, paint)
    [all...]
  /external/skia/samplecode/
SampleHairCurves.cpp 39 SkPath curves; local
49 curves.moveTo(pts[0], pts[1]);
50 curves.cubicTo(pts[2], pts[3],
70 curves.moveTo(pts[0], pts[1]);
71 curves.quadTo(pts[2], pts[3],
90 curves.moveTo(pts[0], pts[1]);
91 curves.conicTo(pts[2], pts[3],
108 curves.moveTo(pts[0], pts[1]);
109 curves.lineTo(pts[2], pts[3]);
116 canvas->drawPath(curves, paint)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.h 64 struct bezier *curves,
bezier.c 519 struct bezier *curves,
536 o = curves;
541 if ((stack_segments == 10) || (o - curves == max_curves - stack_segments)) {
554 } else if (res == Circle && max_curves - (o - curves) >= 2) {
576 debug_assert(o - curves <= max_curves);
577 return o - curves;
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.h 64 struct bezier *curves,
bezier.c 519 struct bezier *curves,
536 o = curves;
541 if ((stack_segments == 10) || (o - curves == max_curves - stack_segments)) {
554 } else if (res == Circle && max_curves - (o - curves) >= 2) {
576 debug_assert(o - curves <= max_curves);
577 return o - curves;
  /external/openssl/apps/
ecparam.c 345 EC_builtin_curve *curves = NULL; local
351 curves = OPENSSL_malloc((int)(sizeof(EC_builtin_curve) * crv_len));
353 if (curves == NULL)
356 if (!EC_get_builtin_curves(curves, crv_len))
358 OPENSSL_free(curves);
367 comment = curves[n].comment;
368 sname = OBJ_nid2sn(curves[n].nid);
378 OPENSSL_free(curves);
388 * and secp256r1 (which are the same as the curves
  /external/openssl/crypto/ecdsa/
ecdsatest.c 81 puts("Elliptic curves are disabled.");
286 EC_builtin_curve *curves = NULL; local
310 "with some internal curves:\n");
312 /* get a list of all internal curves */
315 curves = OPENSSL_malloc(sizeof(EC_builtin_curve) * crv_len);
317 if (curves == NULL)
323 if (!EC_get_builtin_curves(curves, crv_len))
325 BIO_printf(out, "unable to get internal curves\n");
334 nid = curves[n].nid;
520 if (curves)
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_capture_result.py 162 curves = [cap_res["android.tonemap.curveRed"],
173 print "Tonemap:", curves[0][1::16]
197 for c in curves:
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X962NamedCurves.java 14 * table of the current named curves defined in X.962 EC-DSA.
152 * F2m Curves
523 static final Hashtable curves = new Hashtable(); field in class:X962NamedCurves
530 curves.put(oid, holder);
582 X9ECParametersHolder holder = (X9ECParametersHolder)curves.get(oid);
614 * returns an enumeration containing the name strings for curves
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCurves.java 147 private ImageFilterCurves curves() { method in class:ImageCurves
189 if (curves() == null) {
202 // We only display the other channels curves when showing the RGB curve
247 return "Curves";
294 if (curves() == null) {
  /external/chromium_org/third_party/boringssl/src/ssl/
t1_lib.c 415 /* ECC curves from draft-ietf-tls-ecc-12.txt (Oct. 17, 2005) */
461 const uint16_t *curves; local
464 /* Only support named curves. */
470 tls1_get_curvelist(s, 0, &curves, &curves_len);
473 if (curve_id == curves[i])
519 const int *curves, size_t ncurves)
523 /* Bitmap of curves included to detect duplicates: only works
534 id = tls1_ec_nid2curve_id(curves[i]);
572 /* Set the named curve ID. Arbitrary explicit curves are not
592 const uint16_t *curves; local
1115 const uint16_t *curves; local
    [all...]
ssl_locl.h 511 * supported signature algorithms or curves.
    [all...]
  /external/openssl/crypto/ec/
ectest.c 84 int main(int argc, char * argv[]) { puts("Elliptic curves are disabled."); return 0; }
1255 EC_builtin_curve *curves = NULL; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
SECNamedCurves.java 936 static final Hashtable curves = new Hashtable(); field in class:SECNamedCurves
    [all...]
  /external/libvorbis/lib/
psy.c 99 /* we add back in the ATH to avoid low level curves falling off to
100 -infinity and unnecessarily cutting off high level curves in the
117 /* copy curves into working space, replicate the 50dB curve to 30
134 /* normalize curves so the driving amplitude is 0dB */
135 /* make temp curves with the ATH overlayed */
143 /* Now limit the louder curves.
163 /* low frequency curves are measured with greater resolution than
172 /* which octave curves will we be compositing? */
388 const float **curves,
399 posts=curves[choice]
    [all...]
  /device/lge/hammerhead/camera/QCamera2/stack/common/
cam_types.h 1177 cam_tonemap_curve_t curves[3]; member in struct:__anon3232
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
thingsToDo.txt 19 when splitting curves at inflection pts, should I retain the original curve
172 T may be far enough that the curves diverge but don't cross.
  /external/skia/experimental/Intersection/
thingsToDo.txt 19 when splitting curves at inflection pts, should I retain the original curve
172 T may be far enough that the curves diverge but don't cross.
  /device/lge/hammerhead/camera/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]
  /device/moto/shamu/camera/QCamera2/stack/common/
cam_types.h 1465 cam_tonemap_curve_t curves[3]; member in struct:__anon4316
    [all...]
  /device/moto/shamu/camera/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]
  /external/libvorbis/doc/
04-codec.tex 384 Floor curves are decoded one-by-one in channel order.
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 498 milliseconds

1 2