Searched defs:param (Results 1 - 25 of 789) 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/chromium_org/third_party/WebKit/Source/web/
H A DWebWorkerBase.cpp45 static void invokeTaskMethod(void* param) argument
48 static_cast<ScriptExecutionContext::Task*>(param);
/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
/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/skia/bench/
H A DWriterBench.cpp15 WriterBench(void* param) : INHERITED(param) { argument
/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/base/threading/
H A Dworker_pool_win.cc14 DWORD CALLBACK WorkItemCallback(void* param) { argument
15 Task* task = static_cast<Task*>(param);
/external/chromium_org/third_party/angle_dx11/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
/external/ipsec-tools/src/racoon/
H A Dprsa_par.y285 params param
286 | param
289 param: label
/external/lzma/CPP/7zip/UI/Common/
H A DSortUtils.cpp8 static int CompareStrings(const int *p1, const int *p2, void *param) argument
10 const UStringVector &strings = *(const UStringVector *)param;
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_limits.h75 gallivm_get_shader_param(enum pipe_shader_cap param) argument
77 switch(param) {

Completed in 827 milliseconds

1234567891011>>