| /third_party/vk-gl-cts/framework/opengl/simplereference/ |
| H A D | sglrReferenceContext.hpp | 652 virtual void getFramebufferAttachmentParameteriv (deUint32 target, deUint32 attachment, deUint32 pname, int* params); 765 virtual void getIntegerv (deUint32 pname, int* params);
|
| /third_party/vk-gl-cts/modules/gles2/functional/ |
| H A D | es2fShaderInvarianceTests.cpp | 110 const std::map<std::string, std::string>& params = args.getArguments(); in formatGLSL() local 112 return tcu::StringTemplate(std::string(templateString)).specialize(params); in formatGLSL()
|
| H A D | es2fTextureFilteringTests.cpp | 277 // Setup params for reference. in iterate() 556 // Params for reference computation. in iterate()
|
| /third_party/vk-gl-cts/modules/gles2/scripts/ |
| H A D | genutil.py | 86 def fillTemplate(template, params): 89 for (key, value) in params.items():
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/ |
| H A D | tlsv1_cred.c | 1183 * @dh_file: File or reference name for the DH params in PEM or DER format 1184 * @dh_blob: DH params as inlined data or %NULL if not used
|
| /third_party/curl/lib/vtls/ |
| H A D | openssl.c | 1353 } params; in cert_stuff() local 1355 params.cert_id = cert_file; in cert_stuff() 1356 params.cert = NULL; in cert_stuff() 1367 0, ¶ms, NULL, 1)) { in cert_stuff() 1375 if(!params.cert) { in cert_stuff() 1381 if(SSL_CTX_use_certificate(ctx, params.cert) != 1) { in cert_stuff() 1387 X509_free(params.cert); /* we don't need the handle any more... */ in cert_stuff()
|
| /third_party/mesa3d/src/gallium/drivers/panfrost/ |
| H A D | pan_cmdstream.c | 4052 uint32_t *params = pipe_buffer_map_range(pipe, info->indirect, in panfrost_launch_grid() local 4060 direct.grid[0] = params[0]; in panfrost_launch_grid() 4061 direct.grid[1] = params[1]; in panfrost_launch_grid() 4062 direct.grid[2] = params[2]; in panfrost_launch_grid() 4065 if (params[0] && params[1] && params[2]) in panfrost_launch_grid()
|
| /third_party/rust/crates/libc/src/ |
| H A D | psp.rs | 2638 pub fn sceAudioInputInitEx(params: *mut AudioInputParams) -> i32; in sceAudioInputInitEx() 3772 pub fn sceUtilityMsgDialogInitStart(params: *mut UtilityMsgDialogParams) -> i32; in sceUtilityMsgDialogInitStart() 3783 pub fn sceUtilitySavedataInitStart(params: *mut SceUtilitySavedataParam) -> i32; in sceUtilitySavedataInitStart() 3787 pub fn sceUtilityGameSharingInitStart(params: *mut UtilityGameSharingParams) -> i32; in sceUtilityGameSharingInitStart() 3791 pub fn sceUtilityHtmlViewerInitStart(params: *mut UtilityHtmlViewerParam) -> i32; in sceUtilityHtmlViewerInitStart() 3799 pub fn sceUtilityOskInitStart(params: *mut SceUtilityOskParams) -> i32; in sceUtilityOskInitStart() 3875 pub fn sceNetAdhocctlGetParameter(params: *mut SceNetAdhocctlParams) -> i32; in sceNetAdhocctlGetParameter()
|
| /third_party/skia/third_party/externals/libpng/ |
| H A D | pngrutil.c | 2251 png_charpp params; in png_handle_pCAL() local 2337 params = png_voidcast(png_charpp, png_malloc_warn(png_ptr, in png_handle_pCAL() 2340 if (params == NULL) in png_handle_pCAL() 2353 for (params[i] = (png_charp)buf; buf <= endptr && *buf != 0; buf++) in png_handle_pCAL() 2359 png_free(png_ptr, params); in png_handle_pCAL() 2366 (png_charp)units, params); in png_handle_pCAL() 2368 png_free(png_ptr, params); in png_handle_pCAL()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
| H A D | ieee802_11.c | 708 struct external_auth params; in sae_sme_send_external_auth_status() local 710 os_memset(¶ms, 0, sizeof(params)); in sae_sme_send_external_auth_status() 711 params.status = status; in sae_sme_send_external_auth_status() 712 params.bssid = sta->addr; in sae_sme_send_external_auth_status() 715 params.pmkid = sta->sae->pmkid; in sae_sme_send_external_auth_status() 717 hostapd_drv_send_external_auth_status(hapd, ¶ms); in sae_sme_send_external_auth_status()
|
| /third_party/libbpf/include/uapi/linux/ |
| H A D | bpf.h | 3254 * long bpf_fib_lookup(void *ctx, struct bpf_fib_lookup *params, int plen, u32 flags) 3256 * Do FIB lookup in kernel tables using parameters in *params*. 3275 * Use the routing table ID present in *params*->tbid 3281 * Skip the neighbour table lookup. *params*->dmac 3282 * and *params*->smac will not be set as output. A common 3286 * Derive and set source IP addr in *params*->ipv{4,6}_src 3289 * case, *params*->dmac and *params*->smac are not set either. 3300 * was exceeded and output params->mtu_result contains the MTU. 4781 * long bpf_redirect_neigh(u32 ifindex, struct bpf_redir_neigh *params, in [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
| H A D | Verifier.cpp | 503 bool verifyAttributeCount(AttributeList Attrs, unsigned Params); 958 auto *Params = dyn_cast<MDTuple>(&RawParams); in visitTemplateParams() local 959 AssertDI(Params, "invalid template params", &N, &RawParams); in visitTemplateParams() 960 for (Metadata *Op : Params->operands()) { in visitTemplateParams() 962 &N, Params, Op); in visitTemplateParams() local 999 if (auto *Params = N.getRawTemplateParams()) in visitDICompositeType() 1000 visitTemplateParams(N, *Params); in visitDICompositeType() 1114 if (auto *Params = N.getRawTemplateParams()) in visitDISubprogram() 1115 visitTemplateParams(N, *Params); in visitDISubprogram() 1961 verifyAttributeCount(AttributeList Attrs, unsigned Params) verifyAttributeCount() argument [all...] |
| /foundation/arkui/ace_engine/frameworks/core/components/web/resource/ |
| H A D | web_delegate.cpp | 5741 bool WebDelegate::RunQuickMenu(std::shared_ptr<OHOS::NWeb::NWebQuickMenuParams> params, in RunQuickMenu() argument 5747 return webPattern->RunQuickMenu(params, callback); in RunQuickMenu() 5752 return webPattern->RunQuickMenu(params, callback); in RunQuickMenu() 5755 if (!renderWeb || !params || !callback) { in RunQuickMenu() 5759 return renderWeb->RunQuickMenu(params, callback); in RunQuickMenu() 5837 void WebDelegate::OnSelectPopupMenu(std::shared_ptr<OHOS::NWeb::NWebSelectPopupMenuParam> params, in OnSelectPopupMenu() argument 5843 webPattern->OnSelectPopupMenu(params, callback); in OnSelectPopupMenu() 5849 webPattern->OnSelectPopupMenu(params, callback); in OnSelectPopupMenu() 5854 return renderWeb->OnSelectPopupMenu(params, callback); in OnSelectPopupMenu()
|
| /foundation/ability/ability_runtime/services/abilitymgr/src/scene_board/ |
| H A D | ui_ability_lifecycle_manager.cpp | 437 sessionInfo->want.SetParam("ohos.ability.params.isSkipErmsFromSCB", true); in NotifySCBToRecoveryAfterInterception() 2395 std::vector<std::string> params; in DumpMissionList() local 2396 abilityRecord->DumpAbilityState(info, isClient, params); in DumpMissionList() 2404 int32_t abilityRecordId, const std::vector<std::string> ¶ms) in DumpMissionListByRecordId() 2437 abilityRecord->DumpAbilityState(info, isClient, params); in DumpMissionListByRecordId() 2403 DumpMissionListByRecordId(std::vector<std::string> &info, bool isClient, int32_t abilityRecordId, const std::vector<std::string> ¶ms) DumpMissionListByRecordId() argument
|
| /foundation/arkui/ace_engine/test/unittest/core/pattern/dialog/ |
| H A D | dialog_test_ng.cpp | 270 * @tc.steps: step1. create params and DialogLayoutAlgorithm object. in HWTEST_F() 271 * tc.expected: the params and DialogLayoutAlgorithm created successfully. in HWTEST_F() 324 * @tc.steps: step1. create params and DialogLayoutAlgorithm object. in HWTEST_F() 325 * tc.expected: the params and DialogLayoutAlgorithm created successfully. in HWTEST_F() 499 * @tc.steps: step1. create params and DialogLayoutAlgorithm object. in HWTEST_F()
|
| /foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/src/ |
| H A D | distributeddb_nb_crud_test.cpp | 866 * @tc.desc: verify that the get interface can check the key params' effectiveness. 931 * @tc.desc: verify that the put interface can check key params 'effectiveness and 4M value. 1007 * @tc.desc: verify that the update interface can check key params' effectiveness and value params' effectiveness. 1094 * @tc.desc: verify that check value params' effectiveness of delete interface.
|
| /foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/ |
| H A D | device_manager_impl.cpp | 827 int32_t DeviceManagerImpl::SetUserOperation(const std::string &pkgName, int32_t action, const std::string ¶ms) in SetUserOperation() argument 829 if (pkgName.empty() || params.empty()) { in SetUserOperation() 830 LOGE("DeviceManager::SetUserOperation start, pkgName: %{public}s, params: %{public}s", pkgName.c_str(), in SetUserOperation() 831 params.c_str()); in SetUserOperation() 840 req->SetParams(params); in SetUserOperation()
|
| /test/xts/acts/multimedia/audio/audio_js_standard/audio_ndk_test/entry/src/main/cpp/ |
| H A D | audioTest.cpp | 1846 // 2. set builder1 builder2 params in AudioRendererSetInterruptMode_01() 1926 // 2. set builder params in AudioRendererSetInterruptMode_02() 4509 // 2. set builder params in AudioRendererSetDefaultOutputDevice_01() 4553 // 2. set builder params in AudioRendererSetDefaultOutputDevice_02() 4597 // 2. set builder params in AudioRendererSetDefaultOutputDevice_03()
|
| /third_party/mesa3d/src/gallium/drivers/radeonsi/ |
| H A D | gfx10_shader_ngg.c | 885 LLVMValueRef *params = (LLVMValueRef *)userdata; in gfx10_build_primitive_accepted() local 886 LLVMValueRef gs_accepted = params[0]; in gfx10_build_primitive_accepted() 887 LLVMValueRef *gs_vtxptr = (LLVMValueRef *)params[1]; in gfx10_build_primitive_accepted() 995 LLVMValueRef params[] = { in cull_primitive() local 1001 &options, gfx10_build_primitive_accepted, params); in cull_primitive()
|
| /third_party/node/doc/api/ |
| H A D | timers.html | 595 .<span class="hljs-title function_">catch</span>(<span class="hljs-function">(<span class="hljs-params">err</span>) =></span> { 609 .<span class="hljs-title function_">catch</span>(<span class="hljs-function">(<span class="hljs-params">err</span>) =></span> { 696 <span class="hljs-built_in">setTimeout</span>(<span class="hljs-number">100</span>, <span class="hljs-string">'result'</span>).<span class="hljs-title function_">then</span>(<span class="hljs-function">(<span class="hljs-params">res</span>) =></span> { 726 <span class="hljs-title function_">setImmediate</span>(<span class="hljs-string">'result'</span>).<span class="hljs-title function_">then</span>(<span class="hljs-function">(<span class="hljs-params">res</span>) =></span> { 768 (<span class="hljs-keyword">async</span> <span class="hljs-keyword">function</span>(<span class="hljs-params"></span>) {
|
| /third_party/mesa3d/src/mesa/main/ |
| H A D | mtypes.h | 655 GLfloat Params[3]; /**< GL_EXT_point_parameters */ member 659 GLboolean _Attenuated; /**< True if Params != [1, 0, 0] */ 2134 GLfloat Parameters[MAX_PROGRAM_ENV_PARAMS][4]; /**< Env params */ 2213 GLfloat Parameters[MAX_PROGRAM_ENV_PARAMS][4]; /**< Env params */ 3424 struct gl_pixelstore_attrib DefaultPacking; /**< Default params */
|
| /third_party/node/deps/openssl/openssl/crypto/err/ |
| H A D | openssl.txt | 28 ASN1_R_ERROR_SETTING_CIPHER_PARAMS:114:error setting cipher params 551 EC_R_EXPLICIT_PARAMS_NOT_SUPPORTED:127:explicit params not supported 834 OSSL_DECODER_R_MISSING_GET_PARAMS:100:missing get params 837 OSSL_ENCODER_R_MISSING_GET_PARAMS:102:missing get params 1476 SSL_R_SRP_A_CALC:361:error with the srp params
|
| /third_party/openssl/crypto/err/ |
| H A D | openssl.txt | 28 ASN1_R_ERROR_SETTING_CIPHER_PARAMS:114:error setting cipher params 550 EC_R_EXPLICIT_PARAMS_NOT_SUPPORTED:127:explicit params not supported 833 OSSL_DECODER_R_MISSING_GET_PARAMS:100:missing get params 836 OSSL_ENCODER_R_MISSING_GET_PARAMS:102:missing get params 1473 SSL_R_SRP_A_CALC:361:error with the srp params
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
| H A D | vktPipelineLibraryTests.cpp | 1323 const MiscTestParams& params); 1358 PipelineLibraryMiscTestInstance::PipelineLibraryMiscTestInstance(Context& context, const MiscTestParams& params) in PipelineLibraryMiscTestInstance() argument 1360 , m_testParams (params) in PipelineLibraryMiscTestInstance() 2706 PipelineLibraryMiscTestCase::PipelineLibraryMiscTestCase(tcu::TestContext& context, const char* name, const MiscTestParams params) in PipelineLibraryMiscTestCase() argument 2708 , m_testParams (params) in PipelineLibraryMiscTestCase()
|
| /third_party/skia/third_party/externals/tint/src/inspector/ |
| H A D | inspector_test.cc | 957 auto& params = GetParam(); in TEST_P() local 961 {Interpolate(params.in_type, params.in_sampling), Location(0)})); in TEST_P() 974 EXPECT_EQ(params.out_type, result[0].input_variables[0].interpolation_type); in TEST_P() 975 EXPECT_EQ(params.out_sampling, in TEST_P()
|