Home
last modified time | relevance | path

Searched full:params (Results 51 - 75 of 8973) sorted by relevance

12345678910>>...359

/third_party/mbedtls/library/
H A Dlms.c80 * params The LMS parameter set, the underlying LMOTS
94 static int create_merkle_leaf_value(const mbedtls_lms_parameters_t *params, in create_merkle_leaf_value() argument
110 status = psa_hash_update(&op, params->I_key_identifier, in create_merkle_leaf_value()
128 MBEDTLS_LMOTS_N_HASH_LEN(params->otstype)); in create_merkle_leaf_value()
133 status = psa_hash_finish(&op, out, MBEDTLS_LMS_M_NODE_BYTES(params->type), in create_merkle_leaf_value()
149 * params The LMS parameter set, the underlying LMOTS
167 static int create_merkle_internal_value(const mbedtls_lms_parameters_t *params, in create_merkle_internal_value() argument
184 status = psa_hash_update(&op, params->I_key_identifier, in create_merkle_internal_value()
202 MBEDTLS_LMS_M_NODE_BYTES(params->type)); in create_merkle_internal_value()
208 MBEDTLS_LMS_M_NODE_BYTES(params in create_merkle_internal_value()
[all...]
H A Dlmots.c76 * params The LMOTS parameter set, I and q values which
83 static unsigned short lmots_checksum_calculate(const mbedtls_lmots_parameters_t *params, in lmots_checksum_calculate() argument
89 for (idx = 0; idx < MBEDTLS_LMOTS_N_HASH_LEN(params->type); idx++) { in lmots_checksum_calculate()
101 * params The LMOTS parameter set, I and q values which
119 static int create_digit_array_with_checksum(const mbedtls_lmots_parameters_t *params, in create_digit_array_with_checksum() argument
135 status = psa_hash_update(&op, params->I_key_identifier, in create_digit_array_with_checksum()
141 status = psa_hash_update(&op, params->q_leaf_identifier, in create_digit_array_with_checksum()
153 MBEDTLS_LMOTS_C_RANDOM_VALUE_LEN(params->type)); in create_digit_array_with_checksum()
164 MBEDTLS_LMOTS_N_HASH_LEN(params->type), in create_digit_array_with_checksum()
170 checksum = lmots_checksum_calculate(params, ou in create_digit_array_with_checksum()
208 hash_digit_array(const mbedtls_lmots_parameters_t *params, const unsigned char *x_digit_array, const unsigned char *hash_idx_min_values, const unsigned char *hash_idx_max_values, unsigned char *output) hash_digit_array() argument
313 public_key_from_hashed_digit_array(const mbedtls_lmots_parameters_t *params, const unsigned char *y_hashed_digits, unsigned char *pub_key) public_key_from_hashed_digit_array() argument
456 mbedtls_lmots_calculate_public_key_candidate(const mbedtls_lmots_parameters_t *params, const unsigned char *msg, size_t msg_size, const unsigned char *sig, size_t sig_size, unsigned char *out, size_t out_size, size_t *out_len) mbedtls_lmots_calculate_public_key_candidate() argument
[all...]
/foundation/ability/ability_runtime/test/unittest/cj_want_ffi_test/
H A Dcj_want_ffi_test.cpp76 CJWantParams params; in HWTEST_F() local
77 params.elementName = elementNameHandle; in HWTEST_F()
78 params.flags = 123; in HWTEST_F()
80 params.uri = new char[URI_SIZE]; in HWTEST_F()
81 strcpy_s(params.uri, URI_SIZE, "deviceId"); in HWTEST_F()
83 params.action = new char[ACTION_SIZE]; in HWTEST_F()
84 strcpy_s(params.action, ACTION_SIZE, "bundleName"); in HWTEST_F()
86 params.wantType = new char[WANT_TYPE_SIZE]; in HWTEST_F()
87 strcpy_s(params.wantType, WANT_TYPE_SIZE, "abilityName"); in HWTEST_F()
89 params in HWTEST_F()
109 CJWantParams params; HWTEST_F() local
142 CJWantParams params; HWTEST_F() local
178 CJWantParams params; HWTEST_F() local
[all...]
/third_party/typescript/tests/baselines/reference/
H A DassignmentCompatWithCallSignaturesWithOptionalParameters.js15 a = () => 1 // ok, same number of required params
16 a = (x?: number) => 1; // ok, same number of required params
17 a = (x: number) => 1; // error, too many required params
26 a2 = () => 1; // ok, same number of required params
27 a2 = (x?: number) => 1; // ok, same number of required params
28 a2 = (x: number) => 1; // ok, same number of params
31 a2 = b.a3; // ok, same number of params
32 a2 = b.a4; // ok, excess params are optional in b.a3
37 a3 = () => 1; // ok, fewer required params
38 a3 = (x?: number) => 1; // ok, fewer required params
[all...]
H A DgenericObjectSpreadResultInSwitch.symbols2 type Params = {
3 >Params : Symbol(Params, Decl(genericObjectSpreadResultInSwitch.ts, 0, 0))
14 const getType = <P extends Params>(params: P) => {
17 >Params : Symbol(Params, Decl(genericObjectSpreadResultInSwitch.ts, 0, 0))
18 >params : Symbol(params, Decl(genericObjectSpreadResultInSwitch.ts, 4, 35))
29 } = params;
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fDepthStencilTests.cpp119 tcu::TestLog& operator<< (tcu::TestLog& log, const StencilParams& params) in operator <<() argument
121 log << TestLog::Message << " func = " << glu::getCompareFuncStr(params.function) << "\n" in operator <<()
122 << " ref = " << params.reference << "\n" in operator <<()
123 << " compare mask = " << tcu::toHex(params.compareMask) << "\n" in operator <<()
124 << " stencil fail = " << glu::getStencilOpStr(params.stencilFailOp) << "\n" in operator <<()
125 << " depth fail = " << glu::getStencilOpStr(params.depthFailOp) << "\n" in operator <<()
126 << " depth pass = " << glu::getStencilOpStr(params.depthPassOp) << "\n" in operator <<()
127 << " write mask = " << tcu::toHex(params.writeMask) << "\n" in operator <<()
132 tcu::TestLog& operator<< (tcu::TestLog& log, const DepthStencilParams& params) in operator <<() argument
134 log << TestLog::Message << "Stencil test: " << (params in operator <<()
188 DepthStencilParams params; global() member
724 randomDepthStencilState(de::Random& rnd, DepthStencilParams& params) randomDepthStencilState() argument
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fDepthStencilTests.cpp119 tcu::TestLog& operator<< (tcu::TestLog& log, const StencilParams& params) in operator <<() argument
121 log << TestLog::Message << " func = " << glu::getCompareFuncStr(params.function) << "\n" in operator <<()
122 << " ref = " << params.reference << "\n" in operator <<()
123 << " compare mask = " << tcu::toHex(params.compareMask) << "\n" in operator <<()
124 << " stencil fail = " << glu::getStencilOpStr(params.stencilFailOp) << "\n" in operator <<()
125 << " depth fail = " << glu::getStencilOpStr(params.depthFailOp) << "\n" in operator <<()
126 << " depth pass = " << glu::getStencilOpStr(params.depthPassOp) << "\n" in operator <<()
127 << " write mask = " << tcu::toHex(params.writeMask) << "\n" in operator <<()
132 tcu::TestLog& operator<< (tcu::TestLog& log, const DepthStencilParams& params) in operator <<() argument
134 log << TestLog::Message << "Stencil test: " << (params in operator <<()
188 DepthStencilParams params; global() member
724 randomDepthStencilState(de::Random& rnd, DepthStencilParams& params) randomDepthStencilState() argument
[all...]
/third_party/glslang/Test/
H A Dhlsl.getdimensions.dx10.frag64 // 1D, float tx, uint params
68 // 1D, int, uint params
72 // 1D, uint, uint params
76 // 1DArray, float tx, uint params
80 // 1DArray, int, uint params
84 // 1DArray, uint, uint params
88 // 2D, float tx, uint params
92 // 2D, int, uint params
96 // 2D, uint, uint params
100 // 2Darray, float tx, uint params
[all...]
H A Dspv.debuginfo.glsl.comp60 } params;
69 return normalize(dist) * params.springStiffness * (length(dist) - restDist);
76 uint index = id.y * params.particleCount.x + id.x;
77 if (index > params.particleCount.x * params.particleCount.y)
88 vec3 force = params.gravity.xyz * params.particleMass;
96 force += springForce(particleIn[index-1].pos.xyz, pos, params.restDistH);
99 if (id.x < params.particleCount.x - 1) {
100 force += springForce(particleIn[index + 1].pos.xyz, pos, params
[all...]
H A Dspv.debuginfo.hlsl.comp56 UBO params;
77 return normalize(dist) * params.springStiffness * (length(dist) - restDist);
83 uint index = id.y * params.particleCount.x + id.x;
84 if (index > params.particleCount.x * params.particleCount.y)
95 float3 force = params.gravity.xyz * params.particleMass;
103 force += springForce(particleIn[index-1].pos.xyz, pos, params.restDistH);
106 if (id.x < params.particleCount.x - 1) {
107 force += springForce(particleIn[index + 1].pos.xyz, pos, params
[all...]
/third_party/node/src/crypto/
H A Dcrypto_aes.cc38 const AESCipherConfig& params, in AES_Cipher()
44 const int mode = EVP_CIPHER_mode(params.cipher); in AES_Cipher()
55 params.cipher, in AES_Cipher()
67 params.iv.size(), in AES_Cipher()
80 params.iv.data<unsigned char>(), in AES_Cipher()
90 // If in decrypt mode, the auth tag must be set in the params.tag. in AES_Cipher()
91 CHECK(params.tag); in AES_Cipher()
94 params.tag.size(), in AES_Cipher()
95 const_cast<char*>(params.tag.data<char>()))) { in AES_Cipher()
105 tag_len = params in AES_Cipher()
34 AES_Cipher( Environment* env, KeyObjectData* key_data, WebCryptoCipherMode cipher_mode, const AESCipherConfig& params, const ByteSource& in, ByteSource* out) AES_Cipher() argument
182 GetCounter(const AESCipherConfig& params) GetCounter() argument
205 BlockWithZeroedCounter( const AESCipherConfig& params) BlockWithZeroedCounter() argument
223 AES_CTR_Cipher2( KeyObjectData* key_data, WebCryptoCipherMode cipher_mode, const AESCipherConfig& params, const ByteSource& in, unsigned const char* counter, unsigned char* out) AES_CTR_Cipher2() argument
265 AES_CTR_Cipher( Environment* env, KeyObjectData* key_data, WebCryptoCipherMode cipher_mode, const AESCipherConfig& params, const ByteSource& in, ByteSource* out) AES_CTR_Cipher() argument
345 ValidateIV( Environment* env, CryptoJobMode mode, Local<Value> value, AESCipherConfig* params) ValidateIV() argument
361 ValidateCounter( Environment* env, Local<Value> value, AESCipherConfig* params) ValidateCounter() argument
376 ValidateAuthTag( Environment* env, CryptoJobMode mode, WebCryptoCipherMode cipher_mode, Local<Value> value, AESCipherConfig* params) ValidateAuthTag() argument
416 ValidateAdditionalData( Environment* env, CryptoJobMode mode, Local<Value> value, AESCipherConfig* params) ValidateAdditionalData() argument
435 UseDefaultIV(AESCipherConfig* params) UseDefaultIV() argument
465 AdditionalConfig( CryptoJobMode mode, const FunctionCallbackInfo<Value>& args, unsigned int offset, WebCryptoCipherMode cipher_mode, AESCipherConfig* params) AdditionalConfig() argument
573 DoCipher( Environment* env, std::shared_ptr<KeyObjectData> key_data, WebCryptoCipherMode cipher_mode, const AESCipherConfig& params, const ByteSource& in, ByteSource* out) DoCipher() argument
[all...]
/test/xts/acts/security/huks/huks_napi_BasicTest/src/
H A Dhuks_wrapped_test_common.cpp87 static OH_Huks_Result CheckParamsValid(const struct HksImportWrappedKeyTestParams *params) in CheckParamsValid() argument
91 if (params == nullptr) { in CheckParamsValid()
96 if (params->wrappingKeyAlias == nullptr || params->genWrappingKeyParamSet == nullptr || in CheckParamsValid()
97 params->agreeKeyAlgName == nullptr || params->callerKeyAlias == nullptr || in CheckParamsValid()
98 params->genCallerKeyParamSet == nullptr || params->callerKekAlias == nullptr || params->callerKek == nullptr || in CheckParamsValid()
99 params in CheckParamsValid()
108 GenerateAndExportHuksPublicKey(const struct HksImportWrappedKeyTestParams *params, struct OH_Huks_Blob *huksPublicKey) GenerateAndExportHuksPublicKey() argument
121 GenerateAndExportCallerPublicKey(const struct HksImportWrappedKeyTestParams *params, struct OH_Huks_Blob *callerSelfPublicKey) GenerateAndExportCallerPublicKey() argument
135 ImportKekAndAgreeSharedSecret(const struct HksImportWrappedKeyTestParams *params, const struct OH_Huks_Blob *huksPublicKey, struct OH_Huks_Blob *outSharedKey) ImportKekAndAgreeSharedSecret() argument
158 EncryptImportedPlainKeyAndKek(const struct HksImportWrappedKeyTestParams *params, struct OH_Huks_Blob *plainCipherText, struct OH_Huks_Blob *kekCipherText) EncryptImportedPlainKeyAndKek() argument
173 ImportWrappedKey(const struct HksImportWrappedKeyTestParams *params, struct OH_Huks_Blob *plainCipher, struct OH_Huks_Blob *kekCipherText, struct OH_Huks_Blob *peerPublicKey, struct OH_Huks_Blob *wrappedKeyData) ImportWrappedKey() argument
220 HksImportWrappedKeyTestCommonCase(const struct HksImportWrappedKeyTestParams *params) HksImportWrappedKeyTestCommonCase() argument
249 HksClearKeysForWrappedKeyTest(const struct HksImportWrappedKeyTestParams *params) HksClearKeysForWrappedKeyTest() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
H A DvktDrawScissorTests.cpp244 deUint32 countScissors (TestParams params) in countScissors() argument
246 if (params.dynamicScissor) in countScissors()
250 for (size_t commandIdx = 0; commandIdx < params.commands.size(); commandIdx++) in countScissors()
251 numScissors = de::max(numScissors, params.commands[commandIdx]->getMaxScissor()); in countScissors()
256 return (deUint32)params.staticScissors.size(); in countScissors()
262 ScissorTestInstance (Context& context, const TestParams& params);
279 ScissorTestInstance::ScissorTestInstance (Context& context, const TestParams& params) in ScissorTestInstance() argument
281 , m_params (params) in ScissorTestInstance()
292 ScissorTestCase (TestContext& context, const char* name, const TestParams params);
302 ScissorTestCase::ScissorTestCase (TestContext& context, const char* name, const TestParams params) in ScissorTestCase() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/
H A DvktDrawScissorTests.cpp244 deUint32 countScissors (TestParams params) in countScissors() argument
246 if (params.dynamicScissor) in countScissors()
250 for (size_t commandIdx = 0; commandIdx < params.commands.size(); commandIdx++) in countScissors()
251 numScissors = de::max(numScissors, params.commands[commandIdx]->getMaxScissor()); in countScissors()
256 return (deUint32)params.staticScissors.size(); in countScissors()
262 ScissorTestInstance (Context& context, const TestParams& params);
279 ScissorTestInstance::ScissorTestInstance (Context& context, const TestParams& params) in ScissorTestInstance() argument
281 , m_params (params) in ScissorTestInstance()
292 ScissorTestCase (TestContext& context, const char* name, const char* desc, const TestParams params);
302 ScissorTestCase::ScissorTestCase (TestContext& context, const char* name, const char* desc, const TestParams params) in ScissorTestCase() argument
[all...]
/foundation/resourceschedule/device_usage_statistics/frameworks/src/
H A Dbundle_active_app_group_napi.cpp50 napi_value GetQueryAppGroupBundleName(const napi_env &env, napi_value* argv, QueryAppGroupParamsInfo &params, in GetQueryAppGroupBundleName() argument
54 params.errorCode = ERR_PARAMETERS_EMPTY; in GetQueryAppGroupBundleName()
61 params.errorCode = ERR_BUNDLE_NAME_TYPE; in GetQueryAppGroupBundleName()
65 params.bundleName = BundleStateCommon::GetTypeStringValue(env, argv[ZERO_ARG], result); in GetQueryAppGroupBundleName()
66 if (params.bundleName.empty()) { in GetQueryAppGroupBundleName()
68 params.errorCode = ERR_PARAMETERS_EMPTY; in GetQueryAppGroupBundleName()
75 QueryAppGroupParamsInfo &params, AsyncQueryAppGroupCallbackInfo* &asyncCallbackInfo) in ParseQueryAppGroupParameters()
82 params.errorCode = ERR_PARAMETERS_NUMBER; in ParseQueryAppGroupParameters()
85 params.bundleName = ""; in ParseQueryAppGroupParameters()
90 napi_create_reference(env, argv[0], 1, &params in ParseQueryAppGroupParameters()
74 ParseQueryAppGroupParameters(const napi_env &env, const napi_callback_info &info, QueryAppGroupParamsInfo &params, AsyncQueryAppGroupCallbackInfo* &asyncCallbackInfo) ParseQueryAppGroupParameters() argument
139 QueryAppGroupParamsInfo params; QueryAppGroup() local
165 ParseQueryAppGroupSyncParameters(const napi_env &env, const napi_callback_info &info, QueryAppGroupParamsInfo &params) ParseQueryAppGroupSyncParameters() argument
192 QueryAppGroupParamsInfo params; QueryAppGroupSync() local
205 GetAppGroupParameters(const napi_env &env, napi_value* argv, ParamsBundleGroupInfo &params, size_t argvLen = 0) GetAppGroupParameters() argument
232 GetSetAppGroupBundleName(const napi_env &env, napi_value* argv, ParamsBundleGroupInfo &params, size_t argvLen = 0) GetSetAppGroupBundleName() argument
256 ParseSetAppGroupParameters(const napi_env &env, const napi_callback_info &info, ParamsBundleGroupInfo &params, AsyncCallbackInfoSetAppGroup* &asyncCallbackInfo) ParseSetAppGroupParameters() argument
313 ParamsBundleGroupInfo params; SetAppGroup() local
355 ParseRegisterAppGroupCallBackParameters(const napi_env &env, const napi_callback_info &info, RegisterCallbackInfo &params, AsyncRegisterCallbackInfo* &asyncCallbackInfo) ParseRegisterAppGroupCallBackParameters() argument
421 RegisterCallbackInfo params; RegisterAppGroupCallBack() local
446 ParseUnRegisterAppGroupCallBackParameters(const napi_env &env, const napi_callback_info &info, UnRegisterCallbackInfo &params, AsyncUnRegisterCallbackInfo* &asyncCallbackInfo) ParseUnRegisterAppGroupCallBackParameters() argument
503 UnRegisterCallbackInfo params; UnRegisterAppGroupCallBack() local
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dlight.c93 * For GL_POSITION and GL_SPOT_DIRECTION the params position/direction
98 do_light(struct gl_context *ctx, GLuint lnum, GLenum pname, const GLfloat *params) in do_light() argument
109 if (TEST_EQ_4V(lu->Ambient, params)) in do_light()
112 COPY_4V( lu->Ambient, params ); in do_light()
115 if (TEST_EQ_4V(lu->Diffuse, params)) in do_light()
118 COPY_4V( lu->Diffuse, params ); in do_light()
121 if (TEST_EQ_4V(lu->Specular, params)) in do_light()
124 COPY_4V( lu->Specular, params ); in do_light()
128 if (TEST_EQ_4V(lu->EyePosition, params)) in do_light()
133 bool positional = params[ in do_light()
[all...]
H A Dtexgen.c81 const GLfloat *params, const char* caller ) in texgenfv()
98 GLenum mode = (GLenum) (GLint) params[0]; in texgenfv()
147 if (TEST_EQ_4V(unit->ObjectPlane[index], params)) in texgenfv()
150 COPY_4FV(unit->ObjectPlane[index], params); in texgenfv()
167 _mesa_transform_vector(tmp, params, in texgenfv()
186 GLdouble *params, const char* caller) in gettexgendv()
202 params[0] = ENUM_TO_DOUBLE(texgen->Mode); in gettexgendv()
205 COPY_4V(params, unit->ObjectPlane[index]); in gettexgendv()
208 COPY_4V(params, unit->EyePlane[index]); in gettexgendv()
219 GLfloat *params, cons in gettexgenfv()
80 texgenfv( GLuint texunitIndex, GLenum coord, GLenum pname, const GLfloat *params, const char* caller ) texgenfv() argument
185 gettexgendv( GLuint texunitIndex, GLenum coord, GLenum pname, GLdouble *params, const char* caller) gettexgendv() argument
218 gettexgenfv( GLenum texunitIndex, GLenum coord, GLenum pname, GLfloat *params, const char* caller ) gettexgenfv() argument
259 gettexgeniv( GLenum texunitIndex, GLenum coord, GLenum pname, GLint *params, const char* caller) gettexgeniv() argument
[all...]
/third_party/node/test/fixtures/wpt/url/
H A Durlsearchparams-delete.any.js2 var params = new URLSearchParams('a=b&c=d');
3 params.delete('a');
4 assert_equals(params + '', 'c=d');
5 params = new URLSearchParams('a=a&b=b&a=a&c=c');
6 params.delete('a');
7 assert_equals(params + '', 'b=b&c=c');
8 params = new URLSearchParams('a=a&=&b=b&c=c');
9 params.delete('');
10 assert_equals(params + '', 'a=a&b=b&c=c');
11 params
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A Dqueryutils.h42 GLint *params);
43 void QueryBufferParameteriv(const Buffer *buffer, GLenum pname, GLint *params);
44 void QueryBufferParameteri64v(const Buffer *buffer, GLenum pname, GLint64 *params);
45 void QueryBufferPointerv(const Buffer *buffer, GLenum pname, void **params);
46 void QueryProgramiv(Context *context, const Program *program, GLenum pname, GLint *params);
50 GLint *params);
51 void QueryShaderiv(const Context *context, Shader *shader, GLenum pname, GLint *params);
56 GLfloat *params);
61 GLint *params);
65 GLfloat *params);
[all...]
/third_party/ltp/testcases/kernel/syscalls/cma/
H A Dprocess_vm01.c31 static void (*test_params)(struct process_vm_params *params);
61 static void free_params(struct process_vm_params *params) in free_params() argument
63 if (params) { in free_params()
64 free(params->ldummy); in free_params()
65 free(params->rdummy); in free_params()
66 free(params->lvec); in free_params()
67 free(params->rvec); in free_params()
68 free(params); in free_params()
72 static void test_readv(struct process_vm_params *params) in test_readv() argument
75 params in test_readv()
81 test_writev(struct process_vm_params *params) test_writev() argument
116 struct process_vm_params *params; test_flags() local
145 struct process_vm_params *params; test_iov_len_overflow() local
199 struct process_vm_params *params; test_invalid_pid() local
226 struct process_vm_params *params; test_invalid_perm() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiCopiesAndBlittingTests.cpp1250 TestParams params);
1265 CopyImageToImage::CopyImageToImage (Context& context, TestParams params) in CopyImageToImage() argument
1266 : CopiesAndBlittingTestInstance(context, params) in CopyImageToImage()
1272 if (params.queueSelection == QueueSelectionOptions::TransferOnly) in CopyImageToImage()
1606 const TestParams params) in CopyImageToImageTestCase()
1608 , m_params (params) in CopyImageToImageTestCase()
1706 TestParams params);
1721 CopyImageToImageMipmap::CopyImageToImageMipmap (Context& context, TestParams params) in CopyImageToImageMipmap() argument
1722 : CopiesAndBlittingTestInstance(context, params) in CopyImageToImageMipmap()
1728 if (params in CopyImageToImageMipmap()
1604 CopyImageToImageTestCase(tcu::TestContext& testCtx, const std::string& name, const TestParams params) CopyImageToImageTestCase() argument
2074 CopyImageToImageMipmapTestCase(tcu::TestContext& testCtx, const std::string& name, const TestParams params) CopyImageToImageMipmapTestCase() argument
2178 CopyBufferToBuffer(Context& context, TestParams params) CopyBufferToBuffer() argument
2334 BufferToBufferTestCase(tcu::TestContext& testCtx, const std::string& name, const TestParams params) BufferToBufferTestCase() argument
2547 CopyImageToBufferTestCase(tcu::TestContext& testCtx, const std::string& name, const TestParams params) CopyImageToBufferTestCase() argument
2818 CopyCompressedImageToBufferTestCase(tcu::TestContext& testCtx, const std::string& name, const TestParams params) CopyCompressedImageToBufferTestCase() argument
3035 CopyBufferToImageTestCase(tcu::TestContext& testCtx, const std::string& name, const TestParams params) CopyBufferToImageTestCase() argument
3453 CopyBufferToDepthStencilTestCase(tcu::TestContext& testCtx, const std::string& name, const TestParams params) CopyBufferToDepthStencilTestCase() argument
3637 BlittingImages(Context& context, TestParams params) BlittingImages() argument
16624 TestParams params; addResolveImageDiffImageSizeTests() local
[all...]
/third_party/alsa-lib/include/
H A Dpcm.h543 int snd_pcm_hw_params_current(snd_pcm_t *pcm, snd_pcm_hw_params_t *params);
544 int snd_pcm_hw_params(snd_pcm_t *pcm, snd_pcm_hw_params_t *params);
546 int snd_pcm_sw_params_current(snd_pcm_t *pcm, snd_pcm_sw_params_t *params);
547 int snd_pcm_sw_params(snd_pcm_t *pcm, snd_pcm_sw_params_t *params);
728 int snd_pcm_hw_params_any(snd_pcm_t *pcm, snd_pcm_hw_params_t *params);
730 int snd_pcm_hw_params_can_mmap_sample_resolution(const snd_pcm_hw_params_t *params);
731 int snd_pcm_hw_params_is_double(const snd_pcm_hw_params_t *params);
732 int snd_pcm_hw_params_is_batch(const snd_pcm_hw_params_t *params);
733 int snd_pcm_hw_params_is_block_transfer(const snd_pcm_hw_params_t *params);
734 int snd_pcm_hw_params_is_monotonic(const snd_pcm_hw_params_t *params);
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
H A Dpkcs5.c90 static int pkcs5_get_params_pbes2(struct pkcs5_params *params, const u8 *pos, in pkcs5_get_params_pbes2() argument
101 * PBES2-params ::= SEQUENCE { in pkcs5_get_params_pbes2()
106 * { {PBKDF2-params IDENTIFIED BY id-PBKDF2}, ... } in pkcs5_get_params_pbes2()
112 "PKCS #5: Expected SEQUENCE (PBES2-params)"); in pkcs5_get_params_pbes2()
147 * PBKDF2-params ::= SEQUENCE { in pkcs5_get_params_pbes2()
162 "PKCS #5: Expected SEQUENCE (PBKDF2-params)"); in pkcs5_get_params_pbes2()
172 hdr.length > sizeof(params->salt)) { in pkcs5_get_params_pbes2()
178 os_memcpy(params->salt, hdr.payload, hdr.length); in pkcs5_get_params_pbes2()
179 params->salt_len = hdr.length; in pkcs5_get_params_pbes2()
180 wpa_hexdump(MSG_DEBUG, "PKCS #5: salt", params in pkcs5_get_params_pbes2()
261 pkcs5_get_params(const u8 *enc_alg, size_t enc_alg_len, struct pkcs5_params *params) pkcs5_get_params() argument
362 pkcs5_crypto_init_pbes2(struct pkcs5_params *params, const char *passwd) pkcs5_crypto_init_pbes2() argument
489 pkcs12_crypto_init_sha1(struct pkcs5_params *params, const char *passwd) pkcs12_crypto_init_sha1() argument
529 pkcs5_crypto_init(struct pkcs5_params *params, const char *passwd) pkcs5_crypto_init() argument
572 struct pkcs5_params params; pkcs5_decrypt() local
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
H A DGenerateMipmapPerf.cpp50 std::ostream &operator<<(std::ostream &os, const GenerateMipmapParams &params) in operator <<() argument
52 return os << params.backendAndStory().substr(1); in operator <<()
143 const auto &params = GetParam(); in initializeBenchmark() local
157 mTextureData.resize(params.textureWidth * params.textureHeight * 4); in initializeBenchmark()
160 glTexImage2D(GL_TEXTURE_2D, 0, params.internalFormat, params.textureWidth, params.textureHeight, in initializeBenchmark()
161 0, params.internalFormat, GL_UNSIGNED_BYTE, mTextureData.data()); in initializeBenchmark()
213 const auto &params in drawBenchmark() local
239 const auto &params = GetParam(); drawBenchmark() local
277 GenerateMipmapParams params; D3D11Params() local
291 GenerateMipmapParams params; OpenGLOrGLESParams() local
305 GenerateMipmapParams params; VulkanParams() local
[all...]
/third_party/openssl/test/
H A Devp_kdf_test.c40 OSSL_PARAM *params = OPENSSL_malloc(sizeof(OSSL_PARAM) * 4); in construct_tls1_prf_params() local
41 OSSL_PARAM *p = params; in construct_tls1_prf_params()
43 if (params == NULL) in construct_tls1_prf_params()
56 return params; in construct_tls1_prf_params()
64 OSSL_PARAM *params; in test_kdf_tls1_prf() local
70 params = construct_tls1_prf_params("sha256", "secret", "seed"); in test_kdf_tls1_prf()
72 ret = TEST_ptr(params) in test_kdf_tls1_prf()
74 && TEST_int_gt(EVP_KDF_derive(kctx, out, sizeof(out), params), 0) in test_kdf_tls1_prf()
78 OPENSSL_free(params); in test_kdf_tls1_prf()
86 OSSL_PARAM *params; in test_kdf_tls1_prf_invalid_digest() local
104 OSSL_PARAM *params; test_kdf_tls1_prf_zero_output_size() local
124 OSSL_PARAM *params; test_kdf_tls1_prf_empty_secret() local
142 OSSL_PARAM *params; test_kdf_tls1_prf_1byte_secret() local
160 OSSL_PARAM *params; test_kdf_tls1_prf_empty_seed() local
180 OSSL_PARAM *params; test_kdf_tls1_prf_1byte_seed() local
196 OSSL_PARAM *params = OPENSSL_malloc(sizeof(OSSL_PARAM) * 5); construct_hkdf_params() local
225 OSSL_PARAM *params; test_kdf_hkdf() local
246 OSSL_PARAM *params; do_kdf_hkdf_gettables() local
306 OSSL_PARAM *params; test_kdf_hkdf_invalid_digest() local
323 OSSL_PARAM params[2]; test_kdf_hkdf_derive_set_params_fail() local
346 OSSL_PARAM params[2]; test_kdf_hkdf_set_invalid_mode() local
370 OSSL_PARAM params[2]; do_kdf_hkdf_set_invalid_param() local
407 OSSL_PARAM *params; test_kdf_hkdf_zero_output_size() local
427 OSSL_PARAM *params; test_kdf_hkdf_empty_key() local
445 OSSL_PARAM *params; test_kdf_hkdf_1byte_key() local
463 OSSL_PARAM *params; test_kdf_hkdf_empty_salt() local
479 OSSL_PARAM *params = OPENSSL_malloc(sizeof(OSSL_PARAM) * 5); construct_pbkdf1_params() local
504 OSSL_PARAM *params = NULL; test_kdf_pbkdf1() local
550 OSSL_PARAM *params = OPENSSL_malloc(sizeof(OSSL_PARAM) * 6); construct_pbkdf2_params() local
576 OSSL_PARAM *params; test_kdf_pbkdf2() local
608 OSSL_PARAM *params; test_kdf_pbkdf2_small_output() local
636 OSSL_PARAM *params; test_kdf_pbkdf2_large_output() local
665 OSSL_PARAM *params; test_kdf_pbkdf2_small_salt() local
690 OSSL_PARAM *params; test_kdf_pbkdf2_small_iterations() local
716 OSSL_PARAM *params; test_kdf_pbkdf2_small_salt_pkcs5() local
753 OSSL_PARAM *params; test_kdf_pbkdf2_small_iterations_pkcs5() local
789 OSSL_PARAM *params; test_kdf_pbkdf2_invalid_digest() local
813 OSSL_PARAM params[7], *p = params; test_kdf_scrypt() local
856 OSSL_PARAM params[4], *p = params; test_kdf_ss_hash() local
894 OSSL_PARAM params[4], *p = params; test_kdf_x963() local
952 OSSL_PARAM params[7]; test_kdf_kbkdf_6803_128() local
1007 OSSL_PARAM params[7]; test_kdf_kbkdf_6803_256() local
1073 OSSL_PARAM *params = OPENSSL_malloc(sizeof(OSSL_PARAM) * 7); construct_kbkdf_params() local
1100 OSSL_PARAM *params; test_kdf_kbkdf_invalid_digest() local
1122 OSSL_PARAM *params; test_kdf_kbkdf_invalid_mac() local
1144 OSSL_PARAM *params; test_kdf_kbkdf_empty_key() local
1168 OSSL_PARAM *params; test_kdf_kbkdf_1byte_key() local
1190 OSSL_PARAM *params; test_kdf_kbkdf_zero_output_size() local
1216 OSSL_PARAM params[6]; test_kdf_kbkdf_8009_prf1() local
1256 OSSL_PARAM params[6]; test_kdf_kbkdf_8009_prf2() local
1307 OSSL_PARAM params[8], *p = params; test_kdf_kbkdf_fixedinfo() local
1361 OSSL_PARAM params[6], *p = params; test_kdf_ss_hmac() local
1402 OSSL_PARAM params[7], *p = params; test_kdf_ss_kmac() local
1454 OSSL_PARAM params[6], *p = params; test_kdf_sshkdf() local
1563 OSSL_PARAM params[4], *p = params; test_kdf_x942_asn1() local
1599 OSSL_PARAM params[4], *p = params; test_kdf_krb5kdf() local
[all...]

Completed in 21 milliseconds

12345678910>>...359