Searched defs:param (Results 1 - 25 of 755) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_attr_getschedparam.c43 struct sched_param *param)
45 if (ptw32_is_attr (attr) != 0 || param == NULL)
50 memcpy (param, &(*attr)->param, sizeof (*param));
42 pthread_attr_getschedparam(const pthread_attr_t * attr, struct sched_param *param) argument
H A Dpthread_attr_setschedparam.c43 const struct sched_param *param)
47 if (ptw32_is_attr (attr) != 0 || param == NULL)
52 priority = param->sched_priority;
61 memcpy (&(*attr)->param, param, sizeof (*param));
42 pthread_attr_setschedparam(pthread_attr_t * attr, const struct sched_param *param) argument
H A Dpthread_getschedparam.c43 struct sched_param *param)
55 * Validate the policy and param args.
58 if (policy <= (int *) SCHED_MAX || param == NULL)
72 param->sched_priority = ((ptw32_thread_t *)thread.p)->sched_priority;
42 pthread_getschedparam(pthread_t thread, int *policy, struct sched_param *param) argument
H A Dpthread_setschedparam.c43 const struct sched_param *param)
66 return (ptw32_setthreadpriority (thread, policy, param->sched_priority));
42 pthread_setschedparam(pthread_t thread, int policy, const struct sched_param *param) argument
/external/clang/test/CodeGen/
H A Dblocksignature.c23 void foo(int param) { argument
26 while (param--)
27 rand_r(^(char x, float y){ return x + (int)y + param + rand(); }); // generate a local block binding param
/external/pdfium/fpdfsdk/src/
H A Dfpdfoom.cpp10 void OOM_Handler(FXMEM_FoxitMgr* pFoxitMgr, void* param) argument
12 if (!param) return;
13 ((OOM_INFO*)param)->FSDK_OOM_Handler((OOM_INFO*)param);
/external/qemu/android/utils/
H A Dwin32_cmdline_quote.c19 char* win32_cmdline_quote(const char* param) { argument
20 // If |param| doesn't contain any problematic character, just return it as-is.
21 size_t n = strcspn(param, " \t\v\n\"");
22 if (param[n] == '\0')
23 return ASTRDUP(param);
32 while (param[n]) {
34 while (param[n] == '\\') {
39 if (!param[n]) {
46 if (param[n] == '"') {
54 stralloc_add_c(&out, param[
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DAsymmetricCipherKeyPairGenerator.java11 * @param param the parameters the key pair is to be initialised with.
13 public void init(KeyGenerationParameters param); argument
H A DBasicAgreement.java14 void init(CipherParameters param); argument
H A DCipherKeyGenerator.java16 * @param param the parameters to be used for key generation
19 KeyGenerationParameters param)
21 this.random = param.getRandom();
22 this.strength = (param.getStrength() + 7) / 8;
18 init( KeyGenerationParameters param) argument
H A DDerivationFunction.java8 public void init(DerivationParameters param); argument
/external/chromium_org/net/base/
H A Dload_states.h27 base::string16 param; member in struct:net::LoadStateWithParam
29 LoadStateWithParam(LoadState state, const base::string16& param) argument
30 : state(state), param(param) {}
/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest3-expected.cc11 void ExpectsScopedRefptr(const scoped_refptr<Foo>& param) { argument
12 Foo* foo = param.get();
H A Dtest3-original.cc11 void ExpectsScopedRefptr(const scoped_refptr<Foo>& param) { argument
12 Foo* foo = param;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DDESKeyGenerator.java15 * @param param the parameters to be used for key generation
18 KeyGenerationParameters param)
20 super.init(param);
17 init( KeyGenerationParameters param) argument
H A DDESedeKeyGenerator.java16 * @param param the parameters to be used for key generation
19 KeyGenerationParameters param)
21 this.random = param.getRandom();
22 this.strength = (param.getStrength() + 7) / 8;
18 init( KeyGenerationParameters param) argument
H A DDHBasicKeyPairGenerator.java22 private DHKeyGenerationParameters param; field in class:DHBasicKeyPairGenerator
25 KeyGenerationParameters param)
27 this.param = (DHKeyGenerationParameters)param;
33 DHParameters dhp = param.getParameters();
35 BigInteger x = helper.calculatePrivate(dhp, param.getRandom());
24 init( KeyGenerationParameters param) argument
H A DECKeyPairGenerator.java23 KeyGenerationParameters param)
25 ECKeyGenerationParameters ecP = (ECKeyGenerationParameters)param;
22 init( KeyGenerationParameters param) argument
H A DRSAKeyPairGenerator.java20 private RSAKeyGenerationParameters param; field in class:RSAKeyPairGenerator
23 KeyGenerationParameters param)
25 this.param = (RSAKeyGenerationParameters)param;
35 int strength = param.getStrength();
40 e = param.getPublicExponent();
50 p = new BigInteger(pbitlength, 1, param.getRandom());
57 if (!p.isProbablePrime(param.getCertainty()))
78 q = new BigInteger(qbitlength, 1, param.getRandom());
90 if (!q.isProbablePrime(param
22 init( KeyGenerationParameters param) argument
[all...]
/external/chromium_org/pdf/pdfium/
H A Dpdfium_mem_buffer_file_read.cc22 int PDFiumMemBufferFileRead::GetBlock(void* param, argument
27 reinterpret_cast<const PDFiumMemBufferFileRead*>(param);
/external/chromium_org/third_party/angle/tests/preprocessor_tests/
H A Dextension_test.cpp83 ExtensionTestParam param = GetParam(); local
90 EXPECT_CALL(mDiagnostics, print(param.id, pp::SourceLocation(0, 1), _));
92 preprocess(param.str, expected);
H A Doperator_test.cpp23 OperatorTestParam param = GetParam(); local
25 ASSERT_TRUE(mPreprocessor.init(1, &param.str, 0));
29 EXPECT_EQ(param.op, token.type);
30 EXPECT_EQ(param.str, token.text);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_limits.h75 gallivm_get_shader_param(enum pipe_shader_cap param) argument
77 switch(param) {
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_rvalue_visitor.cpp120 ir_rvalue *param = (ir_rvalue *)iter.get(); local
121 ir_rvalue *new_param = param;
124 if (new_param != param) {
125 param->replace_with(new_param);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dpixel.h47 _mesa_PixelTransferf(GLenum pname, GLfloat param);
58 _mesa_PixelTransferf(GLenum pname, GLfloat param) argument

Completed in 3580 milliseconds

1234567891011>>