Home
last modified time | relevance | path

Searched refs:params (Results 3226 - 3250 of 3842) sorted by relevance

1...<<121122123124125126127128129130>>...154

/third_party/node/deps/v8/src/heap/cppgc-js/
H A Dcpp-heap.cc113 const CppHeapCreateParams& params) { in Create()
114 return std::make_unique<internal::CppHeap>(platform, params.custom_spaces, in Create()
115 params.wrapper_descriptor); in Create()
112 Create(v8::Platform* platform, const CppHeapCreateParams& params) Create() argument
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Dcheck.rs406 if !efn.generics.params.is_empty() && !efn.trusted { in check_api_fn()
412 if !efn.generics.params.is_empty() && efn.unsafety.is_none() { in check_api_fn()
630 for generic_param in &generics.params { in check_generics()
/third_party/rust/crates/cxx/syntax/
H A Dcheck.rs406 if !efn.generics.params.is_empty() && !efn.trusted { in check_api_fn()
412 if !efn.generics.params.is_empty() && efn.unsafety.is_none() { in check_api_fn()
630 for generic_param in &generics.params { in check_generics()
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Dcheck.rs406 if !efn.generics.params.is_empty() && !efn.trusted { in check_api_fn()
412 if !efn.generics.params.is_empty() && efn.unsafety.is_none() { in check_api_fn()
630 for generic_param in &generics.params { in check_generics()
/third_party/rust/crates/cxx/macro/src/syntax/
H A Dcheck.rs406 if !efn.generics.params.is_empty() && !efn.trusted { in check_api_fn()
412 if !efn.generics.params.is_empty() && efn.unsafety.is_none() { in check_api_fn()
630 for generic_param in &generics.params { in check_generics()
/third_party/python/Lib/
H A Dsmtplib.py488 params = m.string[m.end("feature"):].strip()
491 + " " + params
493 self.esmtp_features[feature] = params
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DProgram.h599 void getUniformfv(const Context *context, UniformLocation location, GLfloat *params) const;
600 void getUniformiv(const Context *context, UniformLocation location, GLint *params) const;
601 void getUniformuiv(const Context *context, UniformLocation location, GLuint *params) const;
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DContext.h626 bool getFloatv(GLenum pname, GLfloat *params) const;
627 template<typename T> bool getIntegerv(GLenum pname, T *params) const;
628 bool getBooleanv(GLenum pname, GLboolean *params) const;
/third_party/skia/third_party/externals/freetype/src/truetype/
H A Dttobjs.c646 * params ::
661 FT_Parameter* params ) in FT_LOCAL_DEF()
687 error = sfnt->init_face( stream, face, face_index, num_params, params ); in FT_LOCAL_DEF()
717 error = sfnt->load_face( stream, face, face_index, num_params, params ); in FT_LOCAL_DEF()
/third_party/python/PC/
H A D_msi.c866 params as oparams: object
879 MSIHANDLE params = 0; in _msi_View_Execute() local
886 params = ((msiobj*)oparams)->h; in _msi_View_Execute()
889 status = MsiViewExecute(self->h, params); in _msi_View_Execute()
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dcheck.rs406 if !efn.generics.params.is_empty() && !efn.trusted { in check_api_fn()
412 if !efn.generics.params.is_empty() && efn.unsafety.is_none() { in check_api_fn()
630 for generic_param in &generics.params { in check_generics()
/base/security/device_auth/deps_adapter/key_management_adapter/impl/src/
H A Dhuks_adapter.c181 static void AddStorageExtParams(struct HksParam *params, bool isDeStorage, uint32_t *idx, int32_t osAccountId) in AddStorageExtParams() argument
185 params[*idx].tag = HKS_TAG_AUTH_STORAGE_LEVEL; in AddStorageExtParams()
186 params[(*idx)++].uint32Param = HKS_AUTH_STORAGE_LEVEL_DE; in AddStorageExtParams()
188 params[*idx].tag = HKS_TAG_AUTH_STORAGE_LEVEL; in AddStorageExtParams()
189 params[(*idx)++].uint32Param = HKS_AUTH_STORAGE_LEVEL_CE; in AddStorageExtParams()
190 params[*idx].tag = HKS_TAG_SPECIFIC_USER_ID; in AddStorageExtParams()
191 params[(*idx)++].uint32Param = osAccountId; in AddStorageExtParams()
194 (void)params; in AddStorageExtParams()
569 LOGE("Failed to init derive params!"); in ComputeHmacWithThreeStageInner()
580 LOGE("Failed to update derive params!"); in ComputeHmacWithThreeStageInner()
[all...]
/base/security/huks/test/unittest/huks_standard_test/three_stage_test/src/
H A Dhks_import_rsa_test.cpp515 static int32_t ImportKey(const struct HksBlob *keyAlias, const struct HksParam *params, uint32_t paramCount) in ImportKey() argument
518 int32_t ret = InitParamSet(&paramSet, params, paramCount); in ImportKey()
526 ret = ConstructImportedKey(params[TAG_KEY_SIZE_ID].uint32Param, params[TAG_IMPOT_TYPE_ID].uint32Param, &key); in ImportKey()
537 static int32_t ImportKeyNew(const struct HksBlob *keyAlias, const struct HksParam *params, uint32_t paramCount) in ImportKeyNew() argument
540 int32_t ret = InitParamSet(&paramSet, params, paramCount); in ImportKeyNew()
548 ret = ConstructImportedKey(params[TAG_KEY_SIZE_ID].uint32Param, params[TAG_KEY_SIZE_NEW_INDEX].uint32Param, &key); in ImportKeyNew()
/base/security/huks/services/huks_standard/huks_engine/main/core/src/
H A Dhks_core_service_three_stage.c682 HKS_LOG_E("do not support pass access control and nonce params together");
703 if ((*runtimeParamSet)->params[i].tag != HKS_TAG_NONCE) {
704 ret = HksAddParams(paramSet, &(*runtimeParamSet)->params[i], 1);
707 HKS_LOG_E("add runtime params fail");
746 struct HksParam params[] = { local
757 ret = HksCryptoHalFillRandom(&params[0].blob);
759 HKS_FREE(params[0].blob.data);
764 ret = AddNonceToParamSet(runtimeParamSet, params, HKS_ARRAY_SIZE(params));
765 HKS_FREE(params[
[all...]
/third_party/mesa3d/src/microsoft/compiler/
H A Ddxil_nir.c1176 struct dxil_nir_split_clip_cull_distance_params *params = cb_data; in dxil_nir_split_clip_cull_distance_instr() local
1177 nir_variable *new_var = params->new_var; in dxil_nir_split_clip_cull_distance_instr()
1223 new_var = nir_variable_clone(var, params->shader); in dxil_nir_split_clip_cull_distance_instr()
1224 nir_shader_add_variable(params->shader, new_var); in dxil_nir_split_clip_cull_distance_instr()
1234 params->new_var = new_var; in dxil_nir_split_clip_cull_distance_instr()
1278 struct dxil_nir_split_clip_cull_distance_params params = { in dxil_nir_split_clip_cull_distance() local
1287 &params); in dxil_nir_split_clip_cull_distance()
1288 return params.new_var != NULL; in dxil_nir_split_clip_cull_distance()
/third_party/node/deps/openssl/openssl/ssl/statem/
H A Dstatem_clnt.c2039 OSSL_PARAM *params = NULL; in tls_process_ske_dhe() local
2066 || (params = OSSL_PARAM_BLD_to_param(tmpl)) == NULL) { in tls_process_ske_dhe()
2077 || EVP_PKEY_fromdata(pctx, &peer_tmp, EVP_PKEY_KEYPAIR, params) <= 0) { in tls_process_ske_dhe()
2086 * EVP_PKEY_param_check() will verify that the DH params are using in tls_process_ske_dhe()
2119 OSSL_PARAM_free(params); in tls_process_ske_dhe()
2233 PACKET params; in tls_process_key_exchange() local
2243 if (!PACKET_get_sub_packet(&save_param_start, &params, in tls_process_key_exchange()
2303 tbslen = construct_key_exchange_tbs(s, &tbs, PACKET_data(&params), in tls_process_key_exchange()
2304 PACKET_remaining(&params)); in tls_process_key_exchange()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineAttachmentFeedbackLoopLayoutTests.cpp351 ImageSamplingInstanceParams params,
380 ImageSamplingInstanceParams params,
404 ImageSamplingInstanceParams params, in AttachmentFeedbackLoopLayoutImageSamplingInstance()
411 : ImageSamplingInstance (context, params) in AttachmentFeedbackLoopLayoutImageSamplingInstance()
412 , m_params (params) in AttachmentFeedbackLoopLayoutImageSamplingInstance()
970 ImageSamplingInstanceParams params, in AttachmentFeedbackLoopLayoutDepthStencilImageSamplingInstance()
977 : AttachmentFeedbackLoopLayoutImageSamplingInstance (context, params, useImageAsColorOrDSAttachment_, useDifferentAreasSampleWrite_, interleaveReadWriteComponents_, imageAspectTestMode, pipelineStateMode, useMaintenance5_) in AttachmentFeedbackLoopLayoutDepthStencilImageSamplingInstance()
978 , m_separateStencilUsage (params.separateStencilUsage) in AttachmentFeedbackLoopLayoutDepthStencilImageSamplingInstance()
403 AttachmentFeedbackLoopLayoutImageSamplingInstance(Context& context, ImageSamplingInstanceParams params, bool useImageAsColorOrDSAttachment_, bool useDifferentAreasSampleWrite_, bool interleaveReadWriteComponents_, ImageAspectTestMode imageAspectTestMode, PipelineStateMode pipelineStateMode, bool useMaintenance5_) AttachmentFeedbackLoopLayoutImageSamplingInstance() argument
969 AttachmentFeedbackLoopLayoutDepthStencilImageSamplingInstance(Context& context, ImageSamplingInstanceParams params, bool useImageAsColorOrDSAttachment_, bool useDifferentAreasSampleWrite_, bool interleaveReadWriteComponents_, ImageAspectTestMode imageAspectTestMode, PipelineStateMode pipelineStateMode, bool useMaintenance5_) AttachmentFeedbackLoopLayoutDepthStencilImageSamplingInstance() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
H A DvktRayTracingDataSpillTests.cpp2770 DataSpillTestCase::TestParams params; in createDataSpillTests() local
2771 params.callType = entryCallTypes.callType; in createDataSpillTests()
2772 params.dataType = entryDataTypes.dataType; in createDataSpillTests()
2773 params.vectorType = entryVectorTypes.vectorType; in createDataSpillTests()
2777 callTypeGroup->addChild(new DataSpillTestCase(testCtx, testName, params)); in createDataSpillTests()
2805 DataSpillPipelineInterfaceTestCase::TestParams params; in createDataSpillTests() local
2807 params.interfaceType = entry.interfaceType; in createDataSpillTests()
2809 pipelineInterfaceGroup->addChild(new DataSpillPipelineInterfaceTestCase(testCtx, entry.name, params)); in createDataSpillTests()
/third_party/openssl/ssl/statem/
H A Dstatem_clnt.c2031 OSSL_PARAM *params = NULL; in tls_process_ske_dhe() local
2058 || (params = OSSL_PARAM_BLD_to_param(tmpl)) == NULL) { in tls_process_ske_dhe()
2069 || EVP_PKEY_fromdata(pctx, &peer_tmp, EVP_PKEY_KEYPAIR, params) <= 0) { in tls_process_ske_dhe()
2078 * EVP_PKEY_param_check() will verify that the DH params are using in tls_process_ske_dhe()
2111 OSSL_PARAM_free(params); in tls_process_ske_dhe()
2225 PACKET params; in tls_process_key_exchange() local
2235 if (!PACKET_get_sub_packet(&save_param_start, &params, in tls_process_key_exchange()
2295 tbslen = construct_key_exchange_tbs(s, &tbs, PACKET_data(&params), in tls_process_key_exchange()
2296 PACKET_remaining(&params)); in tls_process_key_exchange()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineSamplerTests.cpp1280 ExactSamplingCase (tcu::TestContext& testCtx, const std::string& name, const std::string& description, const Params& params);
1296 ExactSamplingInstance (Context& context, const Params& params);
1341 ExactSamplingCase::ExactSamplingCase (tcu::TestContext& testCtx, const std::string& name, const std::string& description, const Params& params) in ExactSamplingCase() argument
1342 : vkt::TestCase{testCtx, name, description}, m_params(params) in ExactSamplingCase()
1441 ExactSamplingInstance::ExactSamplingInstance (Context& context, const Params& params) in ExactSamplingInstance() argument
1442 : vkt::TestInstance{context}, m_params(params) in ExactSamplingInstance()
2128 const ExactSamplingCase::Params params = { pipelineConstructionType, format, unnorm.unnormalized, solid.first, edges.offset }; in createExactSamplingTests() local
2129 coordGroup->addChild(new ExactSamplingCase{testCtx, edges.name, edges.desc, params}); in createExactSamplingTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/
H A DvktRayTracingDataSpillTests.cpp2769 DataSpillTestCase::TestParams params; in createDataSpillTests() local
2770 params.callType = entryCallTypes.callType; in createDataSpillTests()
2771 params.dataType = entryDataTypes.dataType; in createDataSpillTests()
2772 params.vectorType = entryVectorTypes.vectorType; in createDataSpillTests()
2776 callTypeGroup->addChild(new DataSpillTestCase(testCtx, testName, "", params)); in createDataSpillTests()
2804 DataSpillPipelineInterfaceTestCase::TestParams params; in createDataSpillTests() local
2806 params.interfaceType = entry.interfaceType; in createDataSpillTests()
2808 pipelineInterfaceGroup->addChild(new DataSpillPipelineInterfaceTestCase(testCtx, entry.name, "", params)); in createDataSpillTests()
/third_party/skia/src/gpu/gl/
H A DGrGLGpu.cpp842 auto params = glTex->parameters(); in onWritePixels() local
843 GrGLTextureParameters::NonsamplerState nonsamplerState = params->nonsamplerState(); in onWritePixels()
845 if (params->nonsamplerState().fBaseMipMapLevel != 0) { in onWritePixels()
849 if (params->nonsamplerState().fMaxMipmapLevel != maxLevel) { in onWritePixels()
853 params->set(nullptr, nonsamplerState, fResetTimestampForTextureParameters); in onWritePixels()
1412 // The non-sampler params are still at their default values. in onCreateTexture()
1495 // The non-sampler params are still at their default values. in onCreateCompressedTexture()
1544 // The non-sampler params are still at their default values. in onCreateCompressedBackendTexture()
1573 auto params = backendTexture.getGLTextureParams(); in onUpdateCompressedBackendTexture() local
1574 GrGLTextureParameters::NonsamplerState nonsamplerState = params in onUpdateCompressedBackendTexture()
3703 auto params = backendTexture.getGLTextureParams(); onClearBackendTexture() local
[all...]
/third_party/skia/third_party/externals/tint/src/writer/spirv/
H A Dbuilder.cc629 InstructionList params; in GenerateFunction() local
642 params.push_back(Instruction{spv::Op::OpFunctionParameter, in GenerateFunction()
648 push_function(Function{definition_inst, result_op(), std::move(params)}); in GenerateFunction()
2329 OperandList params = {Operand::Int(result_type_id), result}; in GenerateIntrinsicCall() local
2336 params.push_back(Operand::Int(set_id)); in GenerateIntrinsicCall()
2337 params.push_back(Operand::Int(inst_id)); in GenerateIntrinsicCall()
2378 params.push_back(Operand::Int(struct_id)); in GenerateIntrinsicCall()
2387 params.push_back(Operand::Int(uint32_t( in GenerateIntrinsicCall()
2390 if (!push_function_inst(spv::Op::OpArrayLength, params)) { in GenerateIntrinsicCall()
2685 params in GenerateIntrinsicCall()
3623 OperandList params = {Operand::Int(cond_id), Operand::Int(default_block_id)}; GenerateSwitchStatement() local
[all...]
/base/security/certificate_framework/frameworks/js/napi/certificate/src/
H A Dnapi_x509_cert_chain.cpp52 HcfX509CertChainValidateParams params; member
120 FreeX509CertChainValidateParams(context->params); in DeleteCertChainContext()
292 context->async->errCode = context->certChain->validate(context->certChain, &context->params, &context->result); in ValidateExecute()
360 if (!BuildX509CertChainValidateParams(env, argv[PARAM0], context->params)) { in Validate()
715 LOGE("failed to get cert match params!"); in GetCertMatchParameters()
749 LOGE("failed to get cert validate params!"); in GetValidateParameters()
/base/security/appverify/interfaces/innerkits/appverify_lite/src/
H A Dmbedtls_pkcs7.c230 mbedtls_asn1_buf params = {0}; in ParseSignerEncAlg() local
231 /* params not be used now */ in ParseSignerEncAlg()
232 rc = mbedtls_asn1_get_alg(p, end, &signer->digestEncAlgId, &params); in ParseSignerEncAlg()
460 mbedtls_asn1_buf params = {0}; in ParseSignedDataDigestAlgs() local
462 rc = mbedtls_asn1_get_alg(p, end, &id->algBuf, &params); in ParseSignedDataDigestAlgs()

Completed in 59 milliseconds

1...<<121122123124125126127128129130>>...154