/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/ |
SecP224R1Point.java | 14 * @param curve 15 * the curve to use 23 public SecP224R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y) 25 this(curve, x, y, false); 31 * @param curve 32 * the curve to use 43 public SecP224R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean withCompression) 45 super(curve, x, y); 55 SecP224R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) 57 super(curve, x, y, zs) 82 ECCurve curve = this.getCurve(); local 199 ECCurve curve = this.getCurve(); local [all...] |
SecP256K1Point.java | 14 * @param curve 15 * the curve to use 23 public SecP256K1Point(ECCurve curve, ECFieldElement x, ECFieldElement y) 25 this(curve, x, y, false); 31 * @param curve 32 * the curve to use 43 public SecP256K1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean withCompression) 45 super(curve, x, y); 55 SecP256K1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, 58 super(curve, x, y, zs) 84 ECCurve curve = this.getCurve(); local 202 ECCurve curve = this.getCurve(); local [all...] |
SecP256R1Point.java | 14 * @param curve 15 * the curve to use 23 public SecP256R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y) 25 this(curve, x, y, false); 31 * @param curve 32 * the curve to use 43 public SecP256R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean withCompression) 45 super(curve, x, y); 55 SecP256R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) 57 super(curve, x, y, zs) 82 ECCurve curve = this.getCurve(); local 199 ECCurve curve = this.getCurve(); local [all...] |
SecP384R1Point.java | 14 * @param curve 15 * the curve to use 23 public SecP384R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y) 25 this(curve, x, y, false); 31 * @param curve 32 * the curve to use 43 public SecP384R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean withCompression) 45 super(curve, x, y); 55 SecP384R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) 57 super(curve, x, y, zs) 82 ECCurve curve = this.getCurve(); local 200 ECCurve curve = this.getCurve(); local [all...] |
SecP521R1Point.java | 13 * @param curve 14 * the curve to use 22 public SecP521R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y) 24 this(curve, x, y, false); 30 * @param curve 31 * the curve to use 42 public SecP521R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean withCompression) 44 super(curve, x, y); 54 SecP521R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) 56 super(curve, x, y, zs) 81 ECCurve curve = this.getCurve(); local 195 ECCurve curve = this.getCurve(); local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/ |
ECNamedCurveTable.java | 16 * curve. The routine returns null if the curve is not present. 18 * @param name the name of the curve requested 19 * @return a parameter spec for the curve, null if it is not available.
|
/external/conscrypt/testing/src/main/java/libcore/tlswire/handshake/ |
EllipticCurve.java | 62 for (EllipticCurve curve : values()) { 63 if (curve.identifier == identifier) { 64 return curve; 67 throw new AssertionError("Unknown curve identifier " + identifier);
|
/frameworks/base/core/java/android/net/ |
RssiCurve.java | 27 * A curve defining the network score over a range of RSSI values. 33 * <p>For example, consider a curve starting at -110 dBm with a bucket width of 10 and the 35 * This represents a linear curve between -110 dBm and 30 dBm. It scores progressively higher at 57 /** The starting dBm of the curve. */ 78 * @param start the starting dBm of the curve. 89 * @param start the starting dBm of the curve. 130 * @param rssi The RSSI to lookup. If the RSSI falls below the start of the curve, the score at 131 * the start of the curve will be returned. If it falls after the end of the curve, the 132 * score at the end of the curve will be returned [all...] |
/libcore/support/src/test/java/libcore/tlswire/handshake/ |
EllipticCurve.java | 67 for (EllipticCurve curve : values()) { 68 if (curve.identifier == identifier) { 69 return curve; 72 throw new AssertionError("Unknown curve identifier " + identifier);
|
/external/skia/tools/ |
pathops_visualizer.htm | [all...] |
/external/skqp/tools/ |
pathops_visualizer.htm | [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/ |
X9IntegerConverter.java | 10 * to be done according the the filed size of the curve or field element involved. 15 * Return the curve's field size in bytes. 17 * @param c the curve of interest.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/ |
ConfigurableProvider.java | 15 * Elliptic Curve CA parameters - thread local version 20 * Elliptic Curve CA parameters - VM wide version 40 * A set of OBJECT IDENTIFIERs to EC Curves providing local curve name mapping.
|
/system/bt/stack/smp/ |
p_256_ecc_pp.h | 21 * This file contains simple pairing algorithms using Elliptic Curve 38 // curve's coefficients 56 extern elliptic_curve_t curve;
|
/system/keymaster/km_openssl/ |
ec_key_factory.cpp | 45 keymaster_ec_curve_t* curve, 47 if (!key_description.GetTagValue(TAG_EC_CURVE, curve)) { 48 // Curve not specified. Fall back to deducing curve from key size. 50 LOG_E("%s", "No curve or key size specified for EC key generation"); 53 keymaster_error_t error = EcKeySizeToCurve(*key_size_bits, curve); 58 keymaster_error_t error = EcCurveToKeySize(*curve, key_size_bits); 65 LOG_E("Curve key size %d and specified key size %d don't match", key_size_bits, 101 LOG_E("Unable to get EC group for curve %d", ec_curve); 183 keymaster_ec_curve_t curve; [all...] |
/external/adhd/cras/src/dsp/ |
drc_kernel.h | 25 * curve on them. compressor_gain is the gain applied to the current 43 * This applies to the portion of the curve above knee_threshold 54 * "ratio" portion of the curve. The portion between db_threshold and 55 * (db_threshold + db_knee) is the "soft knee" portion of the curve 63 /* Internal parameter for the knee portion of the curve. */
|
/external/skia/tests/ |
PathOpsBoundsTest.cpp | 65 SkDCurve curve; local 66 curve.fQuad.set(curvePts); 67 curve.setQuadBounds(curvePts, 1, 0, 1, &bounds); 70 curve.fCubic.set(curvePts); 71 curve.setCubicBounds(curvePts, 1, 0, 1, &bounds);
|
/external/skqp/tests/ |
PathOpsBoundsTest.cpp | 65 SkDCurve curve; local 66 curve.fQuad.set(curvePts); 67 curve.setQuadBounds(curvePts, 1, 0, 1, &bounds); 70 curve.fCubic.set(curvePts); 71 curve.setCubicBounds(curvePts, 1, 0, 1, &bounds);
|
/frameworks/base/core/java/android/hardware/camera2/params/ |
TonemapCurve.java | 31 * Immutable class for describing a {@code 2 x M x 3} tonemap curve of floats. 34 * use as the tonemapping/contrast/gamma curve when {@link CaptureRequest#TONEMAP_MODE} is 66 * Index of the red color channel curve. 70 * Index of the green color channel curve. 74 * Index of the blue color channel curve. 157 * Get the number of points stored in this tonemap curve for the specified color channel. 160 * @return number of points stored in this tonemap for that color's curve (>= 0) 194 final float[] curve = getCurve(colorChannel); local 196 final float pIn = curve[index * POINT_SIZE + OFFSET_POINT_IN]; 197 final float pOut = curve[index * POINT_SIZE + OFFSET_POINT_OUT] 241 float[] curve = getCurve(colorChannel); local 312 float[] curve = getCurve(colorChannel); local [all...] |
/frameworks/base/core/java/android/hardware/display/ |
BrightnessConfiguration.java | 46 * Gets the base brightness as curve. 48 * The curve is returned as a pair of float arrays, the first representing all of the lux 49 * points of the brightness curve and the second representing all of the nits values of the 50 * brightness curve. 52 * @return the control points for the brightness curve. 151 * Constructs the builder with the control points for the brightness curve. 166 * Sets the control points for the brightness curve. 201 * Set description of the brightness curve. 203 * @param description brief text describing the curve pushed. It maybe truncated 214 * A brightness curve <b>must</b> be set before calling this [all...] |
/external/boringssl/src/crypto/ec_extra/ |
ec_asn1.c | 268 CBS params, field_id, field_type, curve, base; local 280 !CBS_get_asn1(¶ms, &curve, CBS_ASN1_SEQUENCE) || 281 !CBS_get_asn1(&curve, out_a, CBS_ASN1_OCTETSTRING) || 282 !CBS_get_asn1(&curve, out_b, CBS_ASN1_OCTETSTRING) || 283 // |curve| has an optional BIT STRING seed which we ignore. 292 // in |curve|, a group already has arbitrarily many encodings. Parse enough to 293 // uniquely determine the curve. 335 // Look for a matching curve. 338 const struct built_in_curve *curve = &curves->curves[i]; local 339 if (CBS_len(&named_curve) == curve->oid_len & 359 const struct built_in_curve *curve = &curves->curves[i]; local 390 const struct built_in_curve *curve = &curves->curves[i]; local [all...] |
/external/fonttools/Lib/fontTools/pens/ |
basePen.py | 61 The last point specified is on-curve, all others are off-curve 71 one curve. See decomposeSuperBezierSegment(). 80 """Draw a whole string of quadratic curve segments. 82 The last point specified is on-curve, all others are off-curve 86 using 'implied points': between each two consequtive off-curve points, 90 The last argument (normally the on-curve point) may be None. 91 This is to support contours that have NO on-curve points (a rarely 176 """This method implements the basic quadratic curve type. Th [all...] |
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
dpp-qrcode.py | 75 def dpp_display(curve): 90 if curve: 91 cmd += " curve=" + curve 115 parser.add_argument('--curve', '-c', 116 help='set a specific curve (P-256, P-384, P-521, BP-256R1, BP-384R1, BP-512R1) for key generation') 127 dpp_display(args.curve)
|
/external/pdfium/third_party/lcms/src/ |
cmsgamma.c | 29 // The curve is stored in segments, where each segment can be sampled or specified by parameters. 30 // a 16.bit simplification of the *whole* curve is kept for optimization purposes. For float operation, 35 // be called with the type id as a negative value, and a sampled version of the reversed curve 61 9, // # of curve types 62 { 1, 2, 3, 4, 5, 6, 7, 8, 108 }, // Parametric curve ID 209 // no optimation curve is computed. nSegments may also be zero in the inverse case, where only the 210 // optimization curve is given. Both features simultaneously is an error 221 cmsSignalError(ContextID, cmsERROR_RANGE, "Couldn't create tone curve of more than 65530 entries"); 226 cmsSignalError(ContextID, cmsERROR_RANGE, "Couldn't create tone curve with zero segments and no table"); 249 // This 16-bit table contains a limited precision representation of the whole curve and is kept fo [all...] |
/external/vulkan-validation-layers/demos/smoke/ |
Simulation.cpp | 93 class Curve { 95 virtual ~Curve() {} 107 class RandomCurve : public Curve { 154 class CircleCurve : public Curve { 200 return current_.origin + current_.curve->evaluate(current_.now - current_.start); 207 if (current_.curve) { 208 current_.origin += current_.curve->evaluate(current_.end - current_.start); 219 Curve *curve; local 223 curve = new RandomCurve(rng_()) [all...] |