HomeSort by relevance Sort by last modified time
    Searched defs:param (Results 301 - 325 of 1450) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/
LzmaCompress.c 253 int param; local
268 for (param = 1; param < numArgs; param++) {
269 if (strcmp(args[param], "-e") == 0 || strcmp(args[param], "-d") == 0) {
270 encodeMode = (args[param][1] == 'e');
272 } else if (strcmp(args[param], "--f86") == 0) {
274 } else if (strcmp(args[param], "-o") == 0 ||
275 strcmp(args[param], "--output") == 0) {
    [all...]
  /external/adhd/cras/src/dsp/
drc.c 93 float *param = drc->parameters[i]; local
94 param[PARAM_THRESHOLD] = -24; /* dB */
95 param[PARAM_KNEE] = 30; /* dB */
96 param[PARAM_RATIO] = 12; /* unit-less */
97 param[PARAM_ATTACK] = 0.003f; /* seconds */
98 param[PARAM_RELEASE] = 0.250f; /* seconds */
99 param[PARAM_PRE_DELAY] = DRC_DEFAULT_PRE_DELAY; /* seconds */
102 param[PARAM_RELEASE_ZONE1] = 0.09f;
103 param[PARAM_RELEASE_ZONE2] = 0.16f;
104 param[PARAM_RELEASE_ZONE3] = 0.42f
    [all...]
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
Criteria.java 42 * @param c the criterion to add
52 * @param path the tree path to check against
53 * @param leaf the tree at the leaf of the path; only relevant when the path
77 * @param path the tree path to check against
365 * @param kind the program element's kind
366 * @param name the program element's name
377 * @param kind the kind of enclosing program element
388 * @param name the name of the enclosing package
399 * @param name the name of the enclosing class
400 * @param exact whether to match only in the class itself, not in its inner classe
474 public final static Criterion param(String methodName, Integer pos) { method in class:Criteria
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 123 * @param header the challenge header
214 * @param credentials A set of credentials to be used for athentication
215 * @param request The request being authenticated
381 * @param credentials User credentials
382 * @param digest The response tag's value as String.
427 BasicNameValuePair param = params.get(i); local
431 boolean noQuotes = "nc".equals(param.getName()) ||
432 "qop".equals(param.getName());
434 .formatNameValuePair(buffer, param, !noQuotes);
453 * @param binaryData array containing the diges
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965Spec.java 138 NameValuePair param = attribs[j]; local
139 attribmap.put(param.getName().toLowerCase(Locale.ENGLISH), param); local
220 * @param origin origin where cookie is received from or being sent to.
  /external/boringssl/src/crypto/pkcs8/
pkcs8.c 249 size_t pass_len, CBS *param) {
252 if (!CBS_get_asn1(param, &pbe_param, CBS_ASN1_SEQUENCE) ||
256 CBS_len(param) != 0) {
331 CBB algorithm, oid, param, salt_cbb; local
335 !CBB_add_asn1(&algorithm, &param, CBS_ASN1_SEQUENCE) ||
336 !CBB_add_asn1(&param, &salt_cbb, CBS_ASN1_OCTETSTRING) ||
338 !CBB_add_asn1_uint64(&param, iterations) ||
  /external/boringssl/src/crypto/rsa_extra/
rsa_test.cc 394 const auto &param = GetParam(); local
396 RSA_private_key_from_bytes(param.der, param.der_len));
433 sizeof(plaintext), param.oaep_ciphertext,
434 param.oaep_ciphertext_len, RSA_PKCS1_OAEP_PADDING));
438 OPENSSL_memcpy(ciphertext, param.oaep_ciphertext, param.oaep_ciphertext_len);
439 for (size_t i = 0; i < param.oaep_ciphertext_len; i++) {
444 param.oaep_ciphertext_len, RSA_PKCS1_OAEP_PADDING));
450 for (size_t len = 0; len < param.oaep_ciphertext_len; len++)
    [all...]
  /external/boringssl/src/crypto/x509/
x509_test.cc 523 X509_VERIFY_PARAM *param = X509_VERIFY_PARAM_new(); local
524 if (param == nullptr) {
527 X509_VERIFY_PARAM_set_time(param, 1474934400 /* Sep 27th, 2016 */);
528 X509_VERIFY_PARAM_set_depth(param, 16);
530 X509_VERIFY_PARAM_set_flags(param, flags);
532 X509_STORE_CTX_set0_param(ctx.get(), param);
    [all...]
x509_vpm.c 128 static void x509_verify_param_zero(X509_VERIFY_PARAM *param)
131 if (!param)
133 param->name = NULL;
134 param->purpose = 0;
135 param->trust = 0;
137 * param->inh_flags = X509_VP_FLAG_DEFAULT;
139 param->inh_flags = 0;
140 param->flags = 0;
141 param->depth = -1;
142 if (param->policies)
170 X509_VERIFY_PARAM *param; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
DSASigner.java 55 CipherParameters param = DSAUtil.generatePublicKeyParameter(publicKey); local
58 signer.init(false, param);
74 CipherParameters param = DSAUtil.generatePrivateKeyParameter(privateKey); local
77 DSAParameters dsaParam = ((DSAKeyParameters) param).getParameters();
82 param = new ParametersWithRandom(param, random);
86 signer.init(true, param);
178 String param,
188 String param)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyPairGeneratorSpi.java 43 ECKeyGenerationParameters param; field in class:KeyPairGeneratorSpi.EC
134 this.param = createKeyGenParamsBC(implicitCA, random);
139 this.param = createKeyGenParamsBC((ECParameterSpec)params, random);
144 this.param = createKeyGenParamsJCE((java.security.spec.ECParameterSpec)params, random);
159 engine.init(param);
253 this.param = createKeyGenParamsJCE(namedCurve, random);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
CipherSpi.java 276 CipherParameters param; local
288 param = RSAUtil.generatePublicKeyParameter((RSAPublicKey)key);
298 param = RSAUtil.generatePrivateKeyParameter((RSAPrivateKey)key);
348 param = new ParametersWithRandom(param, random);
352 param = new ParametersWithRandom(param, new SecureRandom());
362 cipher.init(true, param);
366 cipher.init(false, param);
DigestSignatureSpi.java 78 CipherParameters param = RSAUtil.generatePublicKeyParameter((RSAPublicKey)publicKey); local
81 cipher.init(false, param);
93 CipherParameters param = RSAUtil.generatePrivateKeyParameter((RSAPrivateKey)privateKey); local
97 cipher.init(true, param);
216 String param,
226 String param)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DES.java 328 CipherParameters param; local
337 param = PBE.Util.makePBEParameters(pbeSpec, scheme, digest, keySize, ivSize);
341 param = PBE.Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize);
345 if (param instanceof ParametersWithIV)
347 kParam = (KeyParameter)((ParametersWithIV)param).getParameters();
351 kParam = (KeyParameter)param;
356 return new BCPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, param);
PBEPBKDF2.java 212 CipherParameters param = PBE.Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize); local
214 return new BCPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, param);
221 CipherParameters param = PBE.Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize); local
223 return new BCPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, param);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseWrapCipher.java 148 CipherParameters param; local
156 param = PBE.Util.makePBEParameters(k, params, wrapEngine.getAlgorithmName());
160 param = k.getParam();
169 param = new KeyParameter(key.getEncoded());
175 param = new ParametersWithIV(param, iv.getIV());
178 if (param instanceof KeyParameter && ivSize != 0)
182 param = new ParametersWithIV(param, iv);
187 param = new ParametersWithRandom(param, random)
    [all...]
PBE.java 235 CipherParameters param; local
246 param = generator.generateDerivedParameters(keySize, ivSize);
254 ParametersWithIV parametersWithIV = (ParametersWithIV) param;
257 param = new ParametersWithIV(
265 param = generator.generateDerivedParameters(keySize);
270 if (param instanceof ParametersWithIV)
272 KeyParameter kParam = (KeyParameter)((ParametersWithIV)param).getParameters();
278 KeyParameter kParam = (KeyParameter)param;
284 return param;
304 CipherParameters param; local
373 CipherParameters param; local
395 CipherParameters param; local
424 CipherParameters param; local
460 CipherParameters param; local
    [all...]
  /external/clang/test/CodeGen/
pragma-weak.c 32 #pragma weak param // expected-warning {{weak identifier 'param' never declared}} macro
34 void f(int param) {
  /external/curl/lib/
curl_ntlm_core.c 233 SECItem *param = NULL; local
258 param = PK11_ParamFromIV(mech, /* no IV in ECB mode */ NULL);
259 if(!param)
261 ctx = PK11_CreateContextBySymKey(mech, CKA_ENCRYPT, symkey, param);
277 if(param)
278 SECITEM_FreeItem(param, PR_TRUE);
  /external/deqp/external/openglcts/modules/gl/
gl4cShaderAtomicCounterOpsTests.cpp 617 * @param context Rendering context
630 glw::GLuint param = 4; local
632 addOperation(new AtomicOperationAdd(input, param));
633 addOperation(new AtomicOperationSubtract(input, param));
638 * @param context Rendering context
660 * @param context Rendering context
671 glw::GLuint param = 0x3A9; // 0b1110101001; local
673 addOperation(new AtomicOperationAnd(input, param));
674 addOperation(new AtomicOperationOr(input, param));
675 addOperation(new AtomicOperationXor(input, param));
692 glw::GLuint param = 10; local
    [all...]
  /external/deqp/external/openglcts/modules/glesext/texture_buffer/
esextcTextureBufferActiveUniformValidation.cpp 53 * @param textureBufferSize size of buffer object
54 * @param textureFormat texture format
55 * @param textureUniforType texture uniform type
56 * @param uniformName pointer to literal containing uniform name
69 * @param context Test context
70 * @param name Test case's name
71 * @param description Test case's description
83 * @param uniformType enum with type of uniform
84 * @param format enum with texture format
85 * @param size texture siz
265 const TextureParameters* param = getParamsForType(uniformType); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
inline_data.c 789 struct ext2_super_block param; local
795 memset(&param, 0, sizeof(param));
796 ext2fs_blocks_count_set(&param, 32768);
797 param.s_inodes_count = 100;
799 param.s_feature_incompat |= EXT4_FEATURE_INCOMPAT_INLINE_DATA;
800 param.s_rev_level = EXT2_DYNAMIC_REV;
801 param.s_inode_size = 256;
803 retval = ext2fs_initialize("test fs", EXT2_FLAG_64BITS, &param,
tst_bitmaps.c 156 struct ext2_super_block param; local
159 memset(&param, 0, sizeof(param));
160 ext2fs_blocks_count_set(&param, blocks);
161 param.s_inodes_count = inodes;
163 retval = ext2fs_initialize("test fs", flags, &param,
  /external/google-breakpad/src/testing/test/
gmock_stress_test.cc 179 void Helper1(Helper1Param param) {
181 const char ch = param.mock_foo->Baz("a", "b");
184 (*param.count)++;
191 EXPECT_EQ('\0', param.mock_foo->Baz("x", "y")) << "Expected failure.";
194 EXPECT_EQ(1, param.mock_foo->Bar(5));
212 const Helper1Param param = { &foo, &count1 }; local
214 new ThreadWithParam<Helper1Param>(Helper1, param, NULL);
  /external/googletest/googlemock/test/
gmock_stress_test.cc 179 void Helper1(Helper1Param param) {
181 const char ch = param.mock_foo->Baz("a", "b");
184 (*param.count)++;
191 EXPECT_EQ('\0', param.mock_foo->Baz("x", "y")) << "Expected failure.";
194 EXPECT_EQ(1, param.mock_foo->Bar(5));
212 const Helper1Param param = { &foo, &count1 }; local
214 new ThreadWithParam<Helper1Param>(Helper1, param, NULL);

Completed in 1556 milliseconds

<<11121314151617181920>>