Searched defs:parameters (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DSimpleAttributeTableGenerator.java21 public AttributeTable getAttributes(Map parameters) argument
H A DCMSAttributeTableGenerator.java17 AttributeTable getAttributes(Map parameters) argument
H A DDefaultSignedAttributeTableGenerator.java51 * Create a standard attribute table from the passed in parameters - this will
56 * @param parameters source parameters for table generation.
61 Map parameters)
68 parameters.get(CMSAttributeTableGenerator.CONTENT_TYPE));
89 byte[] messageDigest = (byte[])parameters.get(
100 * @param parameters source parameters
103 public AttributeTable getAttributes(Map parameters) argument
105 return new AttributeTable(createStandardAttributeTable(parameters));
60 createStandardAttributeTable( Map parameters) argument
[all...]
/external/apache-http/src/org/apache/http/client/entity/
H A DUrlEncodedFormEntity.java53 * of parameters in the specified encoding.
55 * @param parameters list of name/value pairs
60 final List <? extends NameValuePair> parameters,
62 super(URLEncodedUtils.format(parameters, encoding),
69 * of parameters with the default encoding of {@link HTTP#DEFAULT_CONTENT_CHARSET}
71 * @param parameters list of name/value pairs
75 final List <? extends NameValuePair> parameters) throws UnsupportedEncodingException {
76 super(URLEncodedUtils.format(parameters, HTTP.DEFAULT_CONTENT_CHARSET),
59 UrlEncodedFormEntity( final List <? extends NameValuePair> parameters, final String encoding) argument
74 UrlEncodedFormEntity( final List <? extends NameValuePair> parameters) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DParametersWithRandom.java11 private CipherParameters parameters; field in class:ParametersWithRandom
14 CipherParameters parameters,
18 this.parameters = parameters;
22 CipherParameters parameters)
24 this(parameters, new SecureRandom());
34 return parameters;
13 ParametersWithRandom( CipherParameters parameters, SecureRandom random) argument
21 ParametersWithRandom( CipherParameters parameters) argument
H A DParametersWithIV.java9 private CipherParameters parameters; field in class:ParametersWithIV
12 CipherParameters parameters,
15 this(parameters, iv, 0, iv.length);
19 CipherParameters parameters,
25 this.parameters = parameters;
37 return parameters;
11 ParametersWithIV( CipherParameters parameters, byte[] iv) argument
18 ParametersWithIV( CipherParameters parameters, byte[] iv, int ivOff, int ivLen) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509StoreSpi.java9 public abstract void engineInit(X509StoreParameters parameters); argument
/external/ceres-solver/internal/ceres/
H A Dnormal_prior.cc51 bool NormalPrior::Evaluate(double const* const* parameters, argument
54 ConstVectorRef p(parameters[0], parameter_block_sizes()[0]);
H A Dnumeric_diff_cost_function_test.cc155 virtual bool Evaluate(double const* const* parameters, argument
H A Dnumeric_diff_test_utils.cc62 double *parameters[] = { &x1[0], &x2[0] }; local
70 ASSERT_TRUE(cost_function.Evaluate(&parameters[0],
132 double *parameters[] = { x1, x2 }; local
140 ASSERT_TRUE(cost_function.Evaluate(&parameters[0],
H A Dnumeric_diff_test_utils.h54 virtual bool Evaluate(double const* const* parameters, argument
57 return functor_(parameters[0], parameters[1], residuals);
79 virtual bool Evaluate(double const* const* parameters, argument
82 return functor_(parameters[0], parameters[1], residuals);
H A Dresidual_block_utils.cc65 double const* const* parameters,
80 "For each parameter block, the value of the parameters are printed in the first column \n" // NOLINT
98 AppendArrayToString(1, parameters[i] + j, &result);
116 double const* const* parameters,
64 EvaluationToString(const ResidualBlock& block, double const* const* parameters, double* cost, double* residuals, double** jacobians) argument
115 IsEvaluationValid(const ResidualBlock& block, double const* const* parameters, double* cost, double* residuals, double** jacobians) argument
/external/vogar/src/vogar/
H A DClassAnalyzer.java30 Class<?>... parameters) {
32 Method candidate = klass.getMethod(name, parameters);
29 hasMethod(boolean isStatic, Class<?> returnType, String name, Class<?>... parameters) argument
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-parser.rb100 :parameters, :parameter ].freeze
408 # 105:1: parameter_declaration returns [ list ] : ( '(' ( parameters )? ')' | parameters );
420 # at line 107:3: ( '(' ( parameters )? ')' | parameters )
433 # at line 107:5: '(' ( parameters )? ')'
435 # at line 107:9: ( parameters )?
444 # at line 107:11: parameters
446 parameters5 = parameters
456 # at line 108:5: parameters
485 def parameters method in class:ANTLR3.Template.GroupFile.Parser
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DSimpleEstimationProblem.java26 * <p>This class <em>only</em> handles parameters and measurements
27 * storage and unbound parameters filtering. It does not compute
30 * various parameters in order to compute the partial derivatives
36 * various parameters and their current estimate.</p>
47 /** Estimated parameters. */
48 private final List<EstimatedParameter> parameters; field in class:SimpleEstimationProblem
54 * Build an empty instance without parameters nor measurements.
57 parameters = new ArrayList<EstimatedParameter>();
62 * Get all the parameters of the problem.
63 * @return parameters
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
H A DGaussianDerivativeFunction.java57 * Constructs an instance with the specified parameters.
75 * Constructs an instance with the specified parameters.
77 * @param parameters <tt>b</tt>, <tt>c</tt>, and <tt>d</tt> parameter values
79 * @throws IllegalArgumentException if <code>parameters</code> is null,
80 * <code>parameters</code> length is not 3, or if
81 * <code>parameters[2]</code> is 0
83 public GaussianDerivativeFunction(double[] parameters) { argument
84 if (parameters == null) {
87 if (parameters.length != 3) {
88 throw new DimensionMismatchException(3, parameters
[all...]
H A DParametricGaussianFunction.java33 * The parameters have the following meaning:
69 * parameters <tt>a</tt>, <tt>b</tt>, <tt>c</tt>, and <tt>d</tt>.
72 * @param parameters values of <tt>a</tt>, <tt>b</tt>, <tt>c</tt>, and
76 * parameters
78 * @throws IllegalArgumentException if <code>parameters</code> is invalid as
80 * @throws ZeroException if <code>parameters</code> values are
83 public double value(double x, double[] parameters) throws ZeroException { argument
84 validateParameters(parameters);
85 final double a = parameters[0];
86 final double b = parameters[
124 gradient(double x, double[] parameters) argument
153 validateParameters(double[] parameters) argument
[all...]
H A DParametricRealFunction.java24 * variable plus some extra parameters.
33 * @param parameters function parameters
37 double value(double x, double[] parameters) argument
41 * Compute the gradient of the function with respect to its parameters.
43 * @param parameters function parameters
47 double[] gradient(double x, double[] parameters) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DEncryptionScheme.java17 ASN1Encodable parameters)
19 this.algId = new AlgorithmIdentifier(objectId, parameters);
15 EncryptionScheme( ASN1ObjectIdentifier objectId, ASN1Encodable parameters) argument
H A DKeyDerivationFunc.java17 ASN1Encodable parameters)
19 this.algId = new AlgorithmIdentifier(objectId, parameters);
15 KeyDerivationFunc( ASN1ObjectIdentifier objectId, ASN1Encodable parameters) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
H A DECPrivateKeyStructure.java50 ASN1Encodable parameters)
52 this(key, null, parameters);
58 ASN1Encodable parameters)
67 if (parameters != null)
69 v.add(new DERTaggedObject(true, 0, parameters));
121 * parameters [0] Parameters OPTIONAL,
48 ECPrivateKeyStructure( BigInteger key, ASN1Encodable parameters) argument
55 ECPrivateKeyStructure( BigInteger key, DERBitString publicKey, ASN1Encodable parameters) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DAlgorithmIdentifier.java17 private ASN1Encodable parameters; field in class:AlgorithmIdentifier
68 ASN1Encodable parameters)
72 this.parameters = parameters;
93 parameters = seq.getObjectAt(1);
97 parameters = null;
117 return parameters;
125 * parameters ANY DEFINED BY algorithm OPTIONAL }
136 if (parameters != null)
138 v.add(parameters);
66 AlgorithmIdentifier( ASN1ObjectIdentifier objectId, ASN1Encodable parameters) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/endo/
H A DGLVTypeBEndomorphism.java13 protected final GLVTypeBParameters parameters; field in class:GLVTypeBEndomorphism
16 public GLVTypeBEndomorphism(ECCurve curve, GLVTypeBParameters parameters) argument
19 this.parameters = parameters;
20 this.pointMap = new ScaleXPointMap(curve.fromBigInteger(parameters.getBeta()));
25 int bits = parameters.getBits();
26 BigInteger b1 = calculateB(k, parameters.getG1(), bits);
27 BigInteger b2 = calculateB(k, parameters.getG2(), bits);
29 BigInteger[] v1 = parameters.getV1(), v2 = parameters
[all...]
/external/ceres-solver/examples/
H A Dhelloworld_analytic_diff.cc53 virtual bool Evaluate(double const* const* parameters, argument
56 double x = parameters[0][0];
/external/ceres-solver/include/ceres/
H A Dautodiff_cost_function.h50 // two-dimensional column vector parameters, the prime sign indicates
76 // Note that in the declaration of operator() the input parameters x and y come
78 // input parameters, then the third input parameter would come after y. The
95 // In the instantiation above, the template parameters following
124 // set the template parameters to (dimension of residual, number of parameters)
127 // the last '2' argument. Please be careful when setting the size parameters.
141 // the parameters (a.k.a. the jacobian) using an autodifferentiation framework.
156 int N0, // Number of parameters in block 0.
157 int N1 = 0, // Number of parameters i
202 Evaluate(double const* const* parameters, double* residuals, double** jacobians) const argument
[all...]

Completed in 692 milliseconds

1234567891011>>