/third_party/ffmpeg/libavfilter/ |
D | vf_curves.c | 113 AVFILTER_DEFINE_CLASS(curves); 357 CurvesContext *curves = ctx->priv; in parse_psfile() local 393 char **pts = &curves->comp_points_str[comp_ids[i]]; in parse_psfile() 475 CurvesContext *curves = ctx->priv; in curves_init() local 476 char **pts = curves->comp_points_str; in curves_init() 477 const char *allp = curves->comp_points_str_all; in curves_init() 491 if (curves->psfile && !curves->parsed_psfile) { in curves_init() 492 ret = parse_psfile(ctx, curves->psfile); in curves_init() 495 curves->parsed_psfile = 1; in curves_init() 498 if (curves->preset != PRESET_NONE) { in curves_init() [all …]
|
D | vf_pseudocolor.c | 101 const Curve *curves; member 116 static const Curve curves[] = variable 152 [PRESET_MAGMA] = { 1, &full_range, &curves[MAGMA], NULL }, 153 [PRESET_INFERNO] = { 1, &full_range, &curves[INFERNO], NULL }, 154 [PRESET_PLASMA] = { 1, &full_range, &curves[PLASMA], NULL }, 155 [PRESET_VIRIDIS] = { 1, &full_range, &curves[VIRIDIS], NULL }, 156 [PRESET_TURBO] = { 1, &full_range, &curves[TURBO], NULL }, 157 [PRESET_CIVIDIS] = { 1, &full_range, &curves[CIVIDIS], NULL }, 626 if (!presets[s->preset].curves) { in config_input() 659 const Curve curve = presets[s->preset].curves[seg]; in config_input()
|
/third_party/skia/samplecode/ |
D | SampleHairCurves.cpp | 29 SkPath curves; in onDrawContent() local 39 curves.moveTo(pts[0], pts[1]); in onDrawContent() 40 curves.cubicTo(pts[2], pts[3], in onDrawContent() 60 curves.moveTo(pts[0], pts[1]); in onDrawContent() 61 curves.quadTo(pts[2], pts[3], in onDrawContent() 80 curves.moveTo(pts[0], pts[1]); in onDrawContent() 81 curves.conicTo(pts[2], pts[3], in onDrawContent() 98 curves.moveTo(pts[0], pts[1]); in onDrawContent() 99 curves.lineTo(pts[2], pts[3]); in onDrawContent() 106 canvas->drawPath(curves, paint); in onDrawContent()
|
/third_party/curl/docs/cmdline-opts/ |
D | curves.d | 3 Long: curves 9 Example: --curves X25519 $URL 13 Tells curl to request specific curves to use during SSL session establishment 18 --curves allows a OpenSSL powered curl to make SSL-connections with exactly 22 If this option is set, the default curves list built into OpenSSL are ignored.
|
/third_party/node/deps/openssl/openssl/apps/ |
D | ecparam.c | 71 EC_builtin_curve *curves = NULL; in list_builtin_curves() local 74 curves = app_malloc((int)sizeof(*curves) * crv_len, "list curves"); in list_builtin_curves() 75 if (!EC_get_builtin_curves(curves, crv_len)) in list_builtin_curves() 79 const char *comment = curves[n].comment; in list_builtin_curves() 80 const char *sname = OBJ_nid2sn(curves[n].nid); in list_builtin_curves() 92 OPENSSL_free(curves); in list_builtin_curves()
|
/third_party/openssl/apps/ |
D | ecparam.c | 71 EC_builtin_curve *curves = NULL; in list_builtin_curves() local 74 curves = app_malloc((int)sizeof(*curves) * crv_len, "list curves"); in list_builtin_curves() 75 if (!EC_get_builtin_curves(curves, crv_len)) in list_builtin_curves() 79 const char *comment = curves[n].comment; in list_builtin_curves() 80 const char *sname = OBJ_nid2sn(curves[n].nid); in list_builtin_curves() 92 OPENSSL_free(curves); in list_builtin_curves()
|
/third_party/mbedtls/scripts/ |
D | ecc-heap.sh | 64 // NIST curves >= 256 bits 70 // Brainpool curves (no specialised "mod p" routine) 74 // Montgomery curves
|
/third_party/openssl/doc/man3/ |
D | EC_GFp_simple_method.pod | 38 For F2^m curves there is only one implementation choice, i.e. EC_GF2_simple_method. 40 For Fp curves the lowest common denominator implementation is the EC_GFp_simple_method implementati… 43 offers an implementation optimised for use with NIST recommended curves (NIST curves are available … 47 optimised implementations for the NIST P224, P256 and P521 curves respectively. Note, however, that…
|
D | EC_GROUP_new.pod | 90 B<irreducible polynomial>. All such curves with OpenSSL use a trinomial or a 138 above, there are also a number of predefined curves that are available. In order 139 to obtain a list of all of the predefined curves, call the function 142 I<r> array with information about the built-in curves. If I<nitems> is less than 143 the total number of curves available, then the first I<nitems> curves will be 144 returned. Otherwise the total number of curves will be provided. The return 145 value is the total number of curves available (whether that number has been 147 do nothing other than return the total number of curves available. 185 EC_get_builtin_curves() returns the number of built-in curves that are
|
D | EC_GROUP_copy.pod | 147 built-in curves within the library provide seed values that can be obtained. It is also possible to… 159 … the discriminant is given by the formula 4*a^3 + 27*b^2 whilst for F2^m curves the discriminant is 167 …() determines if the group's domain parameters match one of the built-in curves supported by the l… 170 … lookup the name of the curve that matches the group domain parameters. The built-in curves contain 171 aliases, so that multiple NID's can map to the same domain parameters. For such curves it is unspec… 173 …nist_only> is 1 it will only look for NIST approved curves, otherwise it searches all built-in cur… 179 …C_GROUP_get_trinomial_basis() and EC_GROUP_get_pentanomial_basis() should only be called for curves 218 EC_GROUP_get_field_type() returns either B<NID_X9_62_prime_field> for prime curves 219 or B<NID_X9_62_characteristic_two_field> for binary curves; 227 …eturns an internal pointer to the group field. For curves over GF(p), this is the modulus; for cur… [all …]
|
D | EVP_PKEY_get_field_type.pod | 20 for prime curves or B<NID_X9_62_characteristic_two_field> for binary curves;
|
/third_party/openssl/test/ |
D | ec_internal_test.c | 22 static EC_builtin_curve *curves = NULL; variable 172 int nid = curves[n].nid; in field_tests_default() 400 int nid = curves[n].nid; in ecpkparams_i2d2i_test() 439 if (!TEST_ptr(curves = OPENSSL_malloc(sizeof(*curves) * crv_len)) in setup_tests() 440 || !TEST_true(EC_get_builtin_curves(curves, crv_len))) in setup_tests() 461 OPENSSL_free(curves); in cleanup_tests()
|
D | ecdsatest.c | 32 static EC_builtin_curve *curves = NULL; variable 199 nid = curves[n].nid; in test_builtin() 378 if (!TEST_ptr(curves = OPENSSL_malloc(sizeof(*curves) * crv_len)) in setup_tests() 379 || !TEST_true(EC_get_builtin_curves(curves, crv_len))) { in setup_tests() 397 OPENSSL_free(curves); in cleanup_tests()
|
/third_party/openssl/test/ssl-tests/ |
D | 14-curves.cnf.in | 15 my @curves = ("prime256v1", "secp384r1", "secp521r1", "X25519", 33 foreach (0..$#curves) { 34 my $curve = $curves[$_];
|
/third_party/node/test/fixtures/crypto/ |
D | ecdsa.js | 94 const curves = ['P-384', 'P-521']; 98 curves.forEach((namedCurve) => {
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/ |
D | SGIX_nurbs_eval.txt | 29 The current evaluators interface supports only Bezier curves, which suffer 106 NURBS polynomials for curves are defined as follows: 133 the same N_i^d basis functions as NURBS curves: 148 <vknotcount> implicitly define the degree of the NURBS curves or surfaces 149 defined. For curves, the degree is defined as: 164 EvalMesh1 all evaluate Bezier curves for the given map as usual. When 166 curves. Similarly, the new MAP2_XXX_NURBS tokens are used to enable NURBS
|
/third_party/openGLES/extensions/SGIX/ |
D | SGIX_nurbs_eval.txt | 29 The current evaluators interface supports only Bezier curves, which suffer 106 NURBS polynomials for curves are defined as follows: 133 the same N_i^d basis functions as NURBS curves: 148 <vknotcount> implicitly define the degree of the NURBS curves or surfaces 149 defined. For curves, the degree is defined as: 164 EvalMesh1 all evaluate Bezier curves for the given map as usual. When 166 curves. Similarly, the new MAP2_XXX_NURBS tokens are used to enable NURBS
|
/third_party/curl/lib/vtls/ |
D | wolfssl.c | 358 char *ciphers, *curves; in wolfssl_connect_step1() local 495 curves = conn_config->curves; in wolfssl_connect_step1() 496 if(curves) { in wolfssl_connect_step1() 500 if(strncmp(curves, gnm[idx].name, strlen(gnm[idx].name)) == 0) { in wolfssl_connect_step1() 509 if(!SSL_CTX_set1_curves_list(backend->ctx, curves)) { in wolfssl_connect_step1() 510 failf(data, "failed setting curves list: '%s'", curves); in wolfssl_connect_step1()
|
/third_party/skia/experimental/docs/ |
D | animationCommon.js | 116 var curves = display.draw[i]; 117 var curve = Object.keys(curves)[0]; 119 copy[i][curve] = curves[curve].slice(0); // clone the array of curves
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/util/ |
D | helpers.js | 177 var curves = ["P-256", "P-384", "P-521"]; 202 curves.forEach(function(curveName) {
|
/third_party/openssl/demos/bio/ |
D | connect.cnf | 11 # Only support 3 curves
|
D | accept.cnf | 11 # Only support 3 curves
|
D | cmod.cnf | 21 # Only support 3 curves
|
/third_party/mbedtls/tests/scripts/ |
D | basic-in-docker.sh | 47 run_in_docker tests/scripts/depends.py curves
|
/third_party/openssl/doc/man1/ |
D | openssl-ecparam.pod.in | 34 this command can only create EC parameters from known (named) curves. 82 match any built-in curves. 100 by default for binary curves and can be enabled by defining
|