Home
last modified time | relevance | path

Searched refs:params (Results 351 - 375 of 4678) sorted by relevance

1...<<11121314151617181920>>...188

/third_party/alsa-lib/src/pcm/
H A Dpcm_route.c82 const snd_pcm_route_params_t *params);
104 snd_pcm_route_params_t params; member
118 const snd_pcm_route_params_t *params) in snd_pcm_route_convert1_zero()
120 snd_pcm_area_silence(dst_area, dst_offset, frames, params->dst_sfmt); in snd_pcm_route_convert1_zero()
132 const snd_pcm_route_params_t *params) in snd_pcm_route_convert1_one()
155 frames, ttable, params); in snd_pcm_route_convert1_one()
159 conv = conv_labels[params->conv_idx]; in snd_pcm_route_convert1_one()
182 const snd_pcm_route_params_t *params) in snd_pcm_route_convert1_one_getput()
206 frames, ttable, params); in snd_pcm_route_convert1_one_getput()
210 get = get32_labels[params in snd_pcm_route_convert1_one_getput()
111 snd_pcm_route_convert1_zero(const snd_pcm_channel_area_t *dst_area, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t *src_areas ATTRIBUTE_UNUSED, snd_pcm_uframes_t src_offset ATTRIBUTE_UNUSED, unsigned int src_channels ATTRIBUTE_UNUSED, snd_pcm_uframes_t frames, const snd_pcm_route_ttable_dst_t* ttable ATTRIBUTE_UNUSED, const snd_pcm_route_params_t *params) snd_pcm_route_convert1_zero() argument
125 snd_pcm_route_convert1_one(const snd_pcm_channel_area_t *dst_area, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t *src_areas, snd_pcm_uframes_t src_offset, unsigned int src_channels, snd_pcm_uframes_t frames, const snd_pcm_route_ttable_dst_t* ttable, const snd_pcm_route_params_t *params) snd_pcm_route_convert1_one() argument
175 snd_pcm_route_convert1_one_getput(const snd_pcm_channel_area_t *dst_area, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t *src_areas, snd_pcm_uframes_t src_offset, unsigned int src_channels, snd_pcm_uframes_t frames, const snd_pcm_route_ttable_dst_t* ttable, const snd_pcm_route_params_t *params) snd_pcm_route_convert1_one_getput() argument
227 snd_pcm_route_convert1_many(const snd_pcm_channel_area_t *dst_area, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t *src_areas, snd_pcm_uframes_t src_offset, unsigned int src_channels, snd_pcm_uframes_t frames, const snd_pcm_route_ttable_dst_t* ttable, const snd_pcm_route_params_t *params) snd_pcm_route_convert1_many() argument
400 snd_pcm_route_convert(const snd_pcm_channel_area_t *dst_areas, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t *src_areas, snd_pcm_uframes_t src_offset, unsigned int src_channels, unsigned int dst_channels, snd_pcm_uframes_t frames, snd_pcm_route_params_t *params) snd_pcm_route_convert() argument
434 snd_pcm_route_params_t *params = &route->params; snd_pcm_route_close() local
448 snd_pcm_route_hw_refine_cprepare(snd_pcm_t *pcm ATTRIBUTE_UNUSED, snd_pcm_hw_params_t *params) snd_pcm_route_hw_refine_cprepare() argument
489 snd_pcm_route_hw_refine_schange(snd_pcm_t *pcm, snd_pcm_hw_params_t *params, snd_pcm_hw_params_t *sparams) snd_pcm_route_hw_refine_schange() argument
513 snd_pcm_route_hw_refine_cchange(snd_pcm_t *pcm, snd_pcm_hw_params_t *params, snd_pcm_hw_params_t *sparams) snd_pcm_route_hw_refine_cchange() argument
537 snd_pcm_route_hw_refine(snd_pcm_t *pcm, snd_pcm_hw_params_t *params) snd_pcm_route_hw_refine() argument
547 snd_pcm_route_hw_params(snd_pcm_t *pcm, snd_pcm_hw_params_t * params) snd_pcm_route_hw_params() argument
930 route_load_ttable(snd_pcm_route_params_t *params, snd_pcm_stream_t stream, unsigned int tt_ssize, snd_pcm_route_ttable_entry_t *ttable, unsigned int tt_cused, unsigned int tt_sused) route_load_ttable() argument
[all...]
/third_party/rust/crates/serde/serde_derive/src/
H A Dser.rs22 let params = Parameters::new(&cont); in expand_derive_serialize()
23 let (impl_generics, ty_generics, where_clause) = params.generics.split_for_impl(); in expand_derive_serialize()
24 let body = Stmts(serialize_body(&cont, &params)); in expand_derive_serialize()
29 let used = pretend::pretend_used(&cont, params.is_packed); in expand_derive_serialize()
166 fn serialize_body(cont: &Container, params: &Parameters) -> Fragment { in serialize_body()
168 serialize_transparent(cont, params) in serialize_body()
170 serialize_into(params, type_into) in serialize_body()
173 Data::Enum(variants) => serialize_enum(params, variants, &cont.attrs), in serialize_body()
174 Data::Struct(Style::Struct, fields) => serialize_struct(params, fields, &cont.attrs), in serialize_body()
176 serialize_tuple_struct(params, field in serialize_body()
[all...]
H A Dde.rs25 let params = Parameters::new(&cont); in expand_derive_deserialize()
26 let (de_impl_generics, _, ty_generics, where_clause) = split_with_de_lifetime(&params); in expand_derive_deserialize()
27 let body = Stmts(deserialize_body(&cont, &params)); in expand_derive_deserialize()
28 let delife = params.borrowed.de_lifetime(); in expand_derive_deserialize()
33 let used = pretend::pretend_used(&cont, params.is_packed); in expand_derive_deserialize()
46 let fn_deserialize_in_place = deserialize_in_place_body(&cont, &params); in expand_derive_deserialize()
274 fn deserialize_body(cont: &Container, params: &Parameters) -> Fragment { in deserialize_body()
276 deserialize_transparent(cont, params) in deserialize_body()
283 Data::Enum(variants) => deserialize_enum(params, variants, &cont.attrs), in deserialize_body()
285 deserialize_struct(params, field in deserialize_body()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMultisampleMixedAttachmentSamplesTests.cpp847 void initPrograms (SourceCollections& programCollection, const TestParams params) in initPrograms() argument
888 for (deUint32 subpassNdx = 0; subpassNdx < static_cast<deUint32>(params.perSubpassSamples.size()); ++subpassNdx) in initPrograms()
890 const TestParams::SampleCount& samples = params.perSubpassSamples[subpassNdx]; in initPrograms()
895 params.depthStencilFormat, in initPrograms()
901 void draw (Context& context, const TestParams& params, WorkingData& wd) in draw() argument
914 if (params.useProgrammableSampleLocations) in draw()
940 params.colorFormat, // VkFormat format; in draw()
941 params.perSubpassSamples[subpassNdx].numColorSamples, // VkSampleCountFlagBits samples; in draw()
952 params.depthStencilFormat, // VkFormat format; in draw()
953 params in draw()
1092 dispatchImageCheck(Context& context, const TestParams& params, WorkingData& wd, const deUint32 subpassNdx) dispatchImageCheck() argument
1182 createPerSubpassData(Context& context, const TestParams& params, WorkingData& wd, const deUint32 subpassNdx) createPerSubpassData() argument
1271 checkRequirements(Context& context, TestParams params) checkRequirements() argument
1331 test(Context& context, const TestParams params) test() argument
1459 initPrograms(SourceCollections& programCollection, const TestParams params) initPrograms() argument
1533 drawResolve(Context& context, const TestParams& params, WorkingData& wd) drawResolve() argument
1676 checkRequirements(Context& context, TestParams params) checkRequirements() argument
1685 test(Context& context, const TestParams params) test() argument
1917 VerifySamples::TestParams params; createMixedAttachmentSamplesTestsInGroup() local
1946 VerifySamples::TestParams params; createMixedAttachmentSamplesTestsInGroup() local
1991 ShaderBuiltins::TestParams params; createMixedAttachmentSamplesTestsInGroup() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Dec_backend.c18 #include <openssl/params.h>
157 OSSL_PARAM params[], BN_CTX *bnctx, in ec_group_explicit_todata()
183 param_p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_P); in ec_group_explicit_todata()
184 param_a = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_A); in ec_group_explicit_todata()
185 param_b = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_B); in ec_group_explicit_todata()
201 if (!ossl_param_build_set_bn(tmpl, params, OSSL_PKEY_PARAM_EC_P, p) in ec_group_explicit_todata()
202 || !ossl_param_build_set_bn(tmpl, params, OSSL_PKEY_PARAM_EC_A, a) in ec_group_explicit_todata()
203 || !ossl_param_build_set_bn(tmpl, params, OSSL_PKEY_PARAM_EC_B, b)) { in ec_group_explicit_todata()
209 param = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_ORDER); in ec_group_explicit_todata()
217 if (!ossl_param_build_set_bn(tmpl, params, OSSL_PKEY_PARAM_EC_ORDE in ec_group_explicit_todata()
156 ec_group_explicit_todata(const EC_GROUP *group, OSSL_PARAM_BLD *tmpl, OSSL_PARAM params[], BN_CTX *bnctx, unsigned char **genbuf) ec_group_explicit_todata() argument
288 ossl_ec_group_todata(const EC_GROUP *group, OSSL_PARAM_BLD *tmpl, OSSL_PARAM params[], OSSL_LIB_CTX *libctx, const char *propq, BN_CTX *bnctx, unsigned char **genbuf) ossl_ec_group_todata() argument
396 ossl_ec_key_fromdata(EC_KEY *ec, const OSSL_PARAM params[], int include_private) ossl_ec_key_fromdata() argument
499 ossl_ec_group_fromdata(EC_KEY *ec, const OSSL_PARAM params[]) ossl_ec_group_fromdata() argument
518 ec_key_point_format_fromdata(EC_KEY *ec, const OSSL_PARAM params[]) ec_key_point_format_fromdata() argument
534 ec_key_group_check_fromdata(EC_KEY *ec, const OSSL_PARAM params[]) ec_key_group_check_fromdata() argument
556 ossl_ec_key_otherparams_fromdata(EC_KEY *ec, const OSSL_PARAM params[]) ossl_ec_key_otherparams_fromdata() argument
[all...]
/third_party/openssl/crypto/ec/
H A Dec_backend.c18 #include <openssl/params.h>
157 OSSL_PARAM params[], BN_CTX *bnctx, in ec_group_explicit_todata()
183 param_p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_P); in ec_group_explicit_todata()
184 param_a = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_A); in ec_group_explicit_todata()
185 param_b = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_B); in ec_group_explicit_todata()
201 if (!ossl_param_build_set_bn(tmpl, params, OSSL_PKEY_PARAM_EC_P, p) in ec_group_explicit_todata()
202 || !ossl_param_build_set_bn(tmpl, params, OSSL_PKEY_PARAM_EC_A, a) in ec_group_explicit_todata()
203 || !ossl_param_build_set_bn(tmpl, params, OSSL_PKEY_PARAM_EC_B, b)) { in ec_group_explicit_todata()
209 param = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_EC_ORDER); in ec_group_explicit_todata()
217 if (!ossl_param_build_set_bn(tmpl, params, OSSL_PKEY_PARAM_EC_ORDE in ec_group_explicit_todata()
156 ec_group_explicit_todata(const EC_GROUP *group, OSSL_PARAM_BLD *tmpl, OSSL_PARAM params[], BN_CTX *bnctx, unsigned char **genbuf) ec_group_explicit_todata() argument
288 ossl_ec_group_todata(const EC_GROUP *group, OSSL_PARAM_BLD *tmpl, OSSL_PARAM params[], OSSL_LIB_CTX *libctx, const char *propq, BN_CTX *bnctx, unsigned char **genbuf) ossl_ec_group_todata() argument
396 ossl_ec_key_fromdata(EC_KEY *ec, const OSSL_PARAM params[], int include_private) ossl_ec_key_fromdata() argument
499 ossl_ec_group_fromdata(EC_KEY *ec, const OSSL_PARAM params[]) ossl_ec_group_fromdata() argument
518 ec_key_point_format_fromdata(EC_KEY *ec, const OSSL_PARAM params[]) ec_key_point_format_fromdata() argument
534 ec_key_group_check_fromdata(EC_KEY *ec, const OSSL_PARAM params[]) ec_key_group_check_fromdata() argument
556 ossl_ec_key_otherparams_fromdata(EC_KEY *ec, const OSSL_PARAM params[]) ossl_ec_key_otherparams_fromdata() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiFillBufferTests.cpp163 const TestParams params) in FillWholeBufferTestCase()
164 : vkt::TestCase(testCtx, name, description), m_params(params) in FillWholeBufferTestCase()
346 const TestParams params) in FillBufferTestCase()
348 , m_params (params) in FillBufferTestCase()
437 const TestParams params) in UpdateBufferTestCase()
439 , m_params (params) in UpdateBufferTestCase()
477 TestParams params; in createFillAndUpdateBufferTests() local
481 params.dstSize = TestParams::TEST_DATA_SIZE; in createFillAndUpdateBufferTests()
482 params.bufferAllocator = bufferAllocators[buffersAllocationNdx]; in createFillAndUpdateBufferTests()
484 deUint8* data = (deUint8*) params in createFillAndUpdateBufferTests()
160 FillWholeBufferTestCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, const TestParams params) FillWholeBufferTestCase() argument
343 FillBufferTestCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, const TestParams params) FillBufferTestCase() argument
434 UpdateBufferTestCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, const TestParams params) UpdateBufferTestCase() argument
[all...]
/third_party/backends/include/sane/
H A Dsanei_magic.h72 * @param params describes image
81 sanei_magic_despeck (SANE_Parameters * params, SANE_Byte * buffer,
86 * @param params describes image
101 sanei_magic_findSkew(SANE_Parameters * params, SANE_Byte * buffer,
106 * @param params describes image
119 sanei_magic_rotate (SANE_Parameters * params, SANE_Byte * buffer,
124 * @param params describes image
139 sanei_magic_findEdges(SANE_Parameters * params, SANE_Byte * buffer,
144 * @param params describes image
157 sanei_magic_crop(SANE_Parameters * params, SANE_Byt
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dmain_winmain.c27 struct wpa_params params; in WinMain() local
33 os_memset(&params, 0, sizeof(params)); in WinMain()
34 params.wpa_debug_level = MSG_MSGDUMP; in WinMain()
35 params.wpa_debug_file_path = "\\Temp\\wpa_supplicant-log.txt"; in WinMain()
36 params.wpa_debug_show_keys = 1; in WinMain()
48 global = wpa_supplicant_init(&params); in WinMain()
58 if (iface_count == 1 && (params.ctrl_interface || in WinMain()
59 params.dbus_ctrl_interface)) in WinMain()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dmain_winmain.c27 struct wpa_params params; in WinMain() local
33 os_memset(&params, 0, sizeof(params)); in WinMain()
34 params.wpa_debug_level = MSG_MSGDUMP; in WinMain()
35 params.wpa_debug_file_path = "\\Temp\\wpa_supplicant-log.txt"; in WinMain()
36 params.wpa_debug_show_keys = 1; in WinMain()
48 global = wpa_supplicant_init(&params); in WinMain()
58 if (iface_count == 1 && (params.ctrl_interface || in WinMain()
59 params.dbus_ctrl_interface)) in WinMain()
/foundation/graphic/graphic_2d/frameworks/bootanimation/src/
H A Dboot_animation_operation.cpp145 PlayerParams params; in PlayVideo() local
147 params.surface = rsSurfaceNode_ ? rsSurfaceNode_->GetSurface() : nullptr; in PlayVideo()
149 params.resPath = path; in PlayVideo()
154 params.callback = &callback_; in PlayVideo()
155 params.screenId = currentScreenId_; in PlayVideo()
156 params.soundEnabled = isSoundEnabled_; in PlayVideo()
157 videoPlayer_ = std::make_shared<BootVideoPlayer>(params); in PlayVideo()
170 PlayerParams params; in PlayPicture() local
171 params.screenId = currentScreenId_; in PlayPicture()
172 params in PlayPicture()
181 PlayerParams params; PlaySound() local
[all...]
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_rc4_hmac_md5.c86 size_t ivlen, const OSSL_PARAM params[]) in rc4_hmac_md5_einit()
90 return rc4_hmac_md5_set_ctx_params(ctx, params); in rc4_hmac_md5_einit()
95 size_t ivlen, const OSSL_PARAM params[]) in rc4_hmac_md5_dinit()
99 return rc4_hmac_md5_set_ctx_params(ctx, params); in rc4_hmac_md5_dinit()
114 static int rc4_hmac_md5_get_ctx_params(void *vctx, OSSL_PARAM params[]) in rc4_hmac_md5_get_ctx_params() argument
119 p = OSSL_PARAM_locate(params, OSSL_CIPHER_PARAM_KEYLEN); in rc4_hmac_md5_get_ctx_params()
125 p = OSSL_PARAM_locate(params, OSSL_CIPHER_PARAM_IVLEN); in rc4_hmac_md5_get_ctx_params()
130 p = OSSL_PARAM_locate(params, OSSL_CIPHER_PARAM_AEAD_TLS1_AAD_PAD); in rc4_hmac_md5_get_ctx_params()
150 static int rc4_hmac_md5_set_ctx_params(void *vctx, const OSSL_PARAM params[]) in rc4_hmac_md5_set_ctx_params() argument
156 if (params in rc4_hmac_md5_set_ctx_params()
84 rc4_hmac_md5_einit(void *ctx, const unsigned char *key, size_t keylen, const unsigned char *iv, size_t ivlen, const OSSL_PARAM params[]) rc4_hmac_md5_einit() argument
93 rc4_hmac_md5_dinit(void *ctx, const unsigned char *key, size_t keylen, const unsigned char *iv, size_t ivlen, const OSSL_PARAM params[]) rc4_hmac_md5_dinit() argument
215 rc4_hmac_md5_get_params(OSSL_PARAM params[]) rc4_hmac_md5_get_params() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
H A DVulkanBarriersPerf.cpp54 std::ostream &operator<<(std::ostream &os, const VulkanBarriersPerfParams &params) in operator <<() argument
56 os << params.backendAndStory().substr(1); in operator <<()
187 const auto &params = GetParam(); in createTexture() local
193 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, params.kImageSizes[sizeIndex], in createTexture()
194 params.kImageSizes[sizeIndex], 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr); in createTexture()
203 const auto &params = GetParam(); in createUniformBuffer() local
206 glBufferData(GL_UNIFORM_BUFFER, params.kBufferSize, nullptr, GL_DYNAMIC_COPY); in createUniformBuffer()
208 glBufferData(GL_UNIFORM_BUFFER, params.kBufferSize, nullptr, GL_DYNAMIC_COPY); in createUniformBuffer()
225 const auto &params = GetParam(); in createResources() local
227 mProgram.makeRaster(kVS, params in createResources()
285 const auto &params = GetParam(); drawBenchmark() local
[all...]
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_rc4_hmac_md5.c76 size_t ivlen, const OSSL_PARAM params[]) in rc4_hmac_md5_einit()
80 return rc4_hmac_md5_set_ctx_params(ctx, params); in rc4_hmac_md5_einit()
85 size_t ivlen, const OSSL_PARAM params[]) in rc4_hmac_md5_dinit()
89 return rc4_hmac_md5_set_ctx_params(ctx, params); in rc4_hmac_md5_dinit()
104 static int rc4_hmac_md5_get_ctx_params(void *vctx, OSSL_PARAM params[]) in rc4_hmac_md5_get_ctx_params() argument
109 p = OSSL_PARAM_locate(params, OSSL_CIPHER_PARAM_KEYLEN); in rc4_hmac_md5_get_ctx_params()
115 p = OSSL_PARAM_locate(params, OSSL_CIPHER_PARAM_IVLEN); in rc4_hmac_md5_get_ctx_params()
120 p = OSSL_PARAM_locate(params, OSSL_CIPHER_PARAM_AEAD_TLS1_AAD_PAD); in rc4_hmac_md5_get_ctx_params()
140 static int rc4_hmac_md5_set_ctx_params(void *vctx, const OSSL_PARAM params[]) in rc4_hmac_md5_set_ctx_params() argument
146 if (params in rc4_hmac_md5_set_ctx_params()
74 rc4_hmac_md5_einit(void *ctx, const unsigned char *key, size_t keylen, const unsigned char *iv, size_t ivlen, const OSSL_PARAM params[]) rc4_hmac_md5_einit() argument
83 rc4_hmac_md5_dinit(void *ctx, const unsigned char *key, size_t keylen, const unsigned char *iv, size_t ivlen, const OSSL_PARAM params[]) rc4_hmac_md5_dinit() argument
205 rc4_hmac_md5_get_params(OSSL_PARAM params[]) rc4_hmac_md5_get_params() argument
[all...]
/third_party/node/src/crypto/
H A Dcrypto_sig.cc616 SignConfiguration* params) { in AdditionalConfig()
620 params->job_mode = mode; in AdditionalConfig()
624 params->mode = in AdditionalConfig()
629 if (params->mode == SignConfiguration::kVerify) { in AdditionalConfig()
636 params->key = key; in AdditionalConfig()
643 params->data = mode == kCryptoJobAsync in AdditionalConfig()
649 params->digest = EVP_get_digestbyname(*digest); in AdditionalConfig()
650 if (params->digest == nullptr) { in AdditionalConfig()
657 params->flags |= SignConfiguration::kHasSaltLength; in AdditionalConfig()
658 params in AdditionalConfig()
612 AdditionalConfig( CryptoJobMode mode, const FunctionCallbackInfo<Value>& args, unsigned int offset, SignConfiguration* params) AdditionalConfig() argument
698 DeriveBits( Environment* env, const SignConfiguration& params, ByteSource* out) DeriveBits() argument
814 EncodeOutput( Environment* env, const SignConfiguration& params, ByteSource* out, Local<Value>* result) EncodeOutput() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DContext_gles_1_0.cpp133 void Context::fogfv(GLenum pname, const GLfloat *params) in fogfv() argument
135 SetFogParameters(&mState.gles1(), pname, params); in fogfv()
151 void Context::fogxv(GLenum pname, const GLfixed *params) in fogxv() argument
161 pname == GL_FOG_MODE ? ConvertToGLenum(params[i]) : ConvertFixedToFloat(params[i]); in fogxv()
200 void Context::getFixedv(GLenum pname, GLfixed *params) in getFixedv() argument
212 params[i] = ConvertFloatToFixed(paramsf[i]); in getFixedv()
216 void Context::getLightfv(GLenum light, LightParameter pname, GLfloat *params) in getLightfv() argument
218 GetLightParameters(&mState.gles1(), light, pname, params); in getLightfv()
221 void Context::getLightxv(GLenum light, LightParameter pname, GLfixed *params) in getLightxv() argument
232 getMaterialfv(GLenum face, MaterialParameter pname, GLfloat *params) getMaterialfv() argument
237 getMaterialxv(GLenum face, MaterialParameter pname, GLfixed *params) getMaterialxv() argument
248 getTexEnvfv(TextureEnvTarget target, TextureEnvParameter pname, GLfloat *params) getTexEnvfv() argument
253 getTexEnviv(TextureEnvTarget target, TextureEnvParameter pname, GLint *params) getTexEnviv() argument
260 getTexEnvxv(TextureEnvTarget target, TextureEnvParameter pname, GLfixed *params) getTexEnvxv() argument
267 getTexParameterxv(TextureType target, GLenum pname, GLfixed *params) getTexParameterxv() argument
278 lightModelfv(GLenum pname, const GLfloat *params) lightModelfv() argument
305 lightfv(GLenum light, LightParameter pname, const GLfloat *params) lightfv() argument
315 lightxv(GLenum light, LightParameter pname, const GLfixed *params) lightxv() argument
357 materialfv(GLenum face, MaterialParameter pname, const GLfloat *params) materialfv() argument
448 pointParameterfv(PointParameter pname, const GLfloat *params) pointParameterfv() argument
459 pointParameterxv(PointParameter pname, const GLfixed *params) pointParameterxv() argument
539 texEnvfv(TextureEnvTarget target, TextureEnvParameter pname, const GLfloat *params) texEnvfv() argument
551 texEnviv(TextureEnvTarget target, TextureEnvParameter pname, const GLint *params) texEnviv() argument
565 texEnvxv(TextureEnvTarget target, TextureEnvParameter pname, const GLfixed *params) texEnvxv() argument
578 texParameterxv(TextureType target, GLenum pname, const GLfixed *params) texParameterxv() argument
691 getTexGenfv(GLenum coord, GLenum pname, GLfloat *params) getTexGenfv() argument
696 getTexGeniv(GLenum coord, GLenum pname, GLint *params) getTexGeniv() argument
701 getTexGenxv(GLenum coord, GLenum pname, GLfixed *params) getTexGenxv() argument
711 texGenfv(GLenum coord, GLenum pname, const GLfloat *params) texGenfv() argument
721 texGeniv(GLenum coord, GLenum pname, const GLint *params) texGeniv() argument
731 texGenxv(GLenum coord, GLenum pname, const GLint *params) texGenxv() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DContext.cpp1852 bool Context::getBooleanv(GLenum pname, GLboolean *params) const in getBooleanv()
1856 case GL_SHADER_COMPILER: *params = GL_TRUE; break; in getBooleanv()
1857 case GL_SAMPLE_COVERAGE_INVERT: *params = mState.sampleCoverageInvert; break; in getBooleanv()
1858 case GL_DEPTH_WRITEMASK: *params = mState.depthMask; break; in getBooleanv()
1860 params[0] = mState.colorMaskRed; in getBooleanv()
1861 params[1] = mState.colorMaskGreen; in getBooleanv()
1862 params[2] = mState.colorMaskBlue; in getBooleanv()
1863 params[3] = mState.colorMaskAlpha; in getBooleanv()
1865 case GL_CULL_FACE: *params = mState.cullFaceEnabled; break; in getBooleanv()
1866 case GL_POLYGON_OFFSET_FILL: *params in getBooleanv()
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dget_hash_generator.py52 def print_params(params):
54 for p in params:
145 params = [[0, ""]]
148 if set(["apis", "params"]) != set(param_block):
150 (", ".join(set(["apis", "params"]) - set(param_block)),
163 for param in param_block["params"]:
169 add_to_hash_table(tables[api], hash_val, len(params))
172 add_to_hash_table(tables["GLES3"], hash_val, len(params))
173 add_to_hash_table(tables["GLES31"], hash_val, len(params))
174 add_to_hash_table(tables["GLES32"], hash_val, len(params))
[all...]
/third_party/node/deps/openssl/openssl/providers/implementations/keymgmt/
H A Dmac_legacy_kmgmt.c16 #include <openssl/params.h>
184 static int mac_key_fromdata(MAC_KEY *key, const OSSL_PARAM params[]) in mac_key_fromdata() argument
188 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PRIV_KEY); in mac_key_fromdata()
205 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PROPERTIES); in mac_key_fromdata()
219 if (key->cmac && !ossl_prov_cipher_load_from_params(&key->cipher, params, in mac_key_fromdata()
231 static int mac_import(void *keydata, int selection, const OSSL_PARAM params[]) in mac_import() argument
241 return mac_key_fromdata(key, params); in mac_import()
245 OSSL_PARAM params[]) in key_to_params()
251 && !ossl_param_build_set_octet_string(tmpl, params, in key_to_params()
257 && !ossl_param_build_set_utf8_string(tmpl, params, in key_to_params()
244 key_to_params(MAC_KEY *key, OSSL_PARAM_BLD *tmpl, OSSL_PARAM params[]) key_to_params() argument
278 OSSL_PARAM *params = NULL; mac_export() local
332 mac_get_params(void *key, OSSL_PARAM params[]) mac_get_params() argument
357 mac_set_params(void *keydata, const OSSL_PARAM params[]) mac_set_params() argument
396 mac_gen_init(void *provctx, int selection, const OSSL_PARAM params[]) mac_gen_init() argument
408 cmac_gen_init(void *provctx, int selection, const OSSL_PARAM params[]) cmac_gen_init() argument
420 mac_gen_set_params(void *genctx, const OSSL_PARAM params[]) mac_gen_set_params() argument
446 cmac_gen_set_params(void *genctx, const OSSL_PARAM params[]) cmac_gen_set_params() argument
[all...]
/third_party/openssl/crypto/dh/
H A Ddh_key.c47 if (BN_num_bits(dh->params.p) > OPENSSL_DH_MAX_MODULUS_BITS) { in ossl_dh_compute_key()
52 if (dh->params.q != NULL in ossl_dh_compute_key()
53 && BN_num_bits(dh->params.q) > OPENSSL_DH_MAX_MODULUS_BITS) { in ossl_dh_compute_key()
58 if (BN_num_bits(dh->params.p) < DH_MIN_MODULUS_BITS) { in ossl_dh_compute_key()
79 dh->lock, dh->params.p, ctx); in ossl_dh_compute_key()
86 if (!dh->meth->bn_mod_exp(dh, z, pub_key, dh->priv_key, dh->params.p, ctx, in ossl_dh_compute_key()
93 if (BN_copy(pminus1, dh->params.p) == NULL in ossl_dh_compute_key()
102 ret = BN_bn2binpad(z, key, BN_num_bytes(dh->params.p)); in ossl_dh_compute_key()
156 pad = BN_num_bytes(dh->params.p) - rv; in DH_compute_key_padded()
199 ossl_ffc_params_init(&dh->params); in dh_init()
[all...]
/third_party/openssl/providers/implementations/keymgmt/
H A Dmac_legacy_kmgmt.c16 #include <openssl/params.h>
184 static int mac_key_fromdata(MAC_KEY *key, const OSSL_PARAM params[]) in mac_key_fromdata() argument
188 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PRIV_KEY); in mac_key_fromdata()
205 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PROPERTIES); in mac_key_fromdata()
219 if (key->cmac && !ossl_prov_cipher_load_from_params(&key->cipher, params, in mac_key_fromdata()
231 static int mac_import(void *keydata, int selection, const OSSL_PARAM params[]) in mac_import() argument
241 return mac_key_fromdata(key, params); in mac_import()
245 OSSL_PARAM params[]) in key_to_params()
251 && !ossl_param_build_set_octet_string(tmpl, params, in key_to_params()
257 && !ossl_param_build_set_utf8_string(tmpl, params, in key_to_params()
244 key_to_params(MAC_KEY *key, OSSL_PARAM_BLD *tmpl, OSSL_PARAM params[]) key_to_params() argument
278 OSSL_PARAM *params = NULL; mac_export() local
329 mac_get_params(void *key, OSSL_PARAM params[]) mac_get_params() argument
354 mac_set_params(void *keydata, const OSSL_PARAM params[]) mac_set_params() argument
393 mac_gen_init(void *provctx, int selection, const OSSL_PARAM params[]) mac_gen_init() argument
405 cmac_gen_init(void *provctx, int selection, const OSSL_PARAM params[]) cmac_gen_init() argument
417 mac_gen_set_params(void *genctx, const OSSL_PARAM params[]) mac_gen_set_params() argument
443 cmac_gen_set_params(void *genctx, const OSSL_PARAM params[]) cmac_gen_set_params() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineMultisampleMixedAttachmentSamplesTests.cpp845 void initPrograms (SourceCollections& programCollection, const TestParams params) in initPrograms() argument
886 for (deUint32 subpassNdx = 0; subpassNdx < static_cast<deUint32>(params.perSubpassSamples.size()); ++subpassNdx) in initPrograms()
888 const TestParams::SampleCount& samples = params.perSubpassSamples[subpassNdx]; in initPrograms()
893 params.depthStencilFormat, in initPrograms()
899 void draw (Context& context, const TestParams& params, WorkingData& wd) in draw() argument
911 if (params.useProgrammableSampleLocations) in draw()
934 params.colorFormat, // VkFormat format; in draw()
935 params.perSubpassSamples[subpassNdx].numColorSamples, // VkSampleCountFlagBits samples; in draw()
946 params.depthStencilFormat, // VkFormat format; in draw()
947 params in draw()
1100 dispatchImageCheck(Context& context, const TestParams& params, WorkingData& wd, const deUint32 subpassNdx) dispatchImageCheck() argument
1190 createPerSubpassData(Context& context, const TestParams& params, WorkingData& wd, const deUint32 subpassNdx) createPerSubpassData() argument
1279 checkRequirements(Context& context, TestParams params) checkRequirements() argument
1339 test(Context& context, const TestParams params) test() argument
1467 initPrograms(SourceCollections& programCollection, const TestParams params) initPrograms() argument
1541 drawResolve(Context& context, const TestParams& params, WorkingData& wd) drawResolve() argument
1689 checkRequirements(Context& context, TestParams params) checkRequirements() argument
1698 test(Context& context, const TestParams params) test() argument
1930 VerifySamples::TestParams params; createMixedAttachmentSamplesTestsInGroup() local
1960 VerifySamples::TestParams params; createMixedAttachmentSamplesTestsInGroup() local
2006 ShaderBuiltins::TestParams params; createMixedAttachmentSamplesTestsInGroup() local
[all...]
/third_party/ffmpeg/libavfilter/tests/
H A Ddnn-layer-avgpool.c51 AvgPoolParams params; in test_with_same() local
82 params.strides = 1; in test_with_same()
83 params.kernel_size = 2; in test_with_same()
84 params.padding_method = SAME; in test_with_same()
94 ff_dnn_execute_layer_avg_pool(operands, input_indexes, 1, &params, NULL); in test_with_same()
134 AvgPoolParams params; in test_with_valid() local
162 params.strides = 1; in test_with_valid()
163 params.kernel_size = 2; in test_with_valid()
164 params.padding_method = VALID; in test_with_valid()
174 ff_dnn_execute_layer_avg_pool(operands, input_indexes, 1, &params, NUL in test_with_valid()
[all...]
/third_party/ffmpeg/tests/dnn/
H A Ddnn-layer-avgpool-test.c51 AvgPoolParams params; in test_with_same() local
82 params.strides = 1; in test_with_same()
83 params.kernel_size = 2; in test_with_same()
84 params.padding_method = SAME; in test_with_same()
94 ff_dnn_execute_layer_avg_pool(operands, input_indexes, 1, &params, NULL); in test_with_same()
134 AvgPoolParams params; in test_with_valid() local
162 params.strides = 1; in test_with_valid()
163 params.kernel_size = 2; in test_with_valid()
164 params.padding_method = VALID; in test_with_valid()
174 ff_dnn_execute_layer_avg_pool(operands, input_indexes, 1, &params, NUL in test_with_valid()
[all...]
/third_party/node/deps/v8/third_party/wasm-api/
H A Dwasm.h200 own wasm_valtype_vec_t* params, own wasm_valtype_vec_t* results);
542 wasm_valtype_vec_t params, results; in wasm_functype_new_0_0() local
543 wasm_valtype_vec_new_empty(&params); in wasm_functype_new_0_0()
545 return wasm_functype_new(&params, &results); in wasm_functype_new_0_0()
552 wasm_valtype_vec_t params, results; in wasm_functype_new_1_0() local
553 wasm_valtype_vec_new(&params, 1, ps); in wasm_functype_new_1_0()
555 return wasm_functype_new(&params, &results); in wasm_functype_new_1_0()
562 wasm_valtype_vec_t params, results; in wasm_functype_new_2_0() local
563 wasm_valtype_vec_new(&params, 2, ps); in wasm_functype_new_2_0()
565 return wasm_functype_new(&params, in wasm_functype_new_2_0()
572 wasm_valtype_vec_t params, results; wasm_functype_new_3_0() local
582 wasm_valtype_vec_t params, results; wasm_functype_new_0_1() local
593 wasm_valtype_vec_t params, results; wasm_functype_new_1_1() local
604 wasm_valtype_vec_t params, results; wasm_functype_new_2_1() local
616 wasm_valtype_vec_t params, results; wasm_functype_new_3_1() local
626 wasm_valtype_vec_t params, results; wasm_functype_new_0_2() local
637 wasm_valtype_vec_t params, results; wasm_functype_new_1_2() local
649 wasm_valtype_vec_t params, results; wasm_functype_new_2_2() local
661 wasm_valtype_vec_t params, results; wasm_functype_new_3_2() local
[all...]

Completed in 24 milliseconds

1...<<11121314151617181920>>...188