Home
last modified time | relevance | path

Searched refs:pass (Results 251 - 275 of 2095) sorted by relevance

1...<<11121314151617181920>>...84

/third_party/node/deps/openssl/openssl/providers/implementations/kdfs/
H A Dpbkdf2.c48 static int pbkdf2_derive(const char *pass, size_t passlen,
55 unsigned char *pass; member
87 OPENSSL_clear_free(ctx->pass, ctx->pass_len); in kdf_pbkdf2_cleanup()
153 if (ctx->pass == NULL) { in kdf_pbkdf2_derive()
164 return pbkdf2_derive((char *)ctx->pass, ctx->pass_len, in kdf_pbkdf2_derive()
190 if (!pbkdf2_set_membuf(&ctx->pass, &ctx->pass_len, p)) in kdf_pbkdf2_set_ctx_params()
274 static int pbkdf2_derive(const char *pass, size_t passlen, in pbkdf2_derive() argument
319 if (!HMAC_Init_ex(hctx_tpl, pass, passlen, digest, NULL)) in pbkdf2_derive()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Dpass_fixture.h58 // Runs the given |pass| on the binary assembled from the |original|.
60 // from pass Process() function.
62 Pass* pass, const std::string& original, bool skip_nop) { in OptimizeToBinary()
74 const auto status = pass->Run(context()); in OptimizeToBinary()
83 // Runs a single pass of class |PassT| on the binary assembled from the
85 // from the pass Process() function.
89 auto pass = MakeUnique<PassT>(std::forward<Args>(args)...); in SinglePassRunToBinary() local
90 pass->SetMessageConsumer(consumer_); in SinglePassRunToBinary()
91 return OptimizeToBinary(pass.get(), assembly, skip_nop); in SinglePassRunToBinary()
94 // Runs a single pass o
61 OptimizeToBinary( Pass* pass, const std::string& original, bool skip_nop) OptimizeToBinary() argument
210 auto pass = MakeUnique<PassT>(std::forward<Args>(args)...); SinglePassRunAndFail() local
[all...]
/third_party/openssl/providers/implementations/kdfs/
H A Dpbkdf2.c48 static int pbkdf2_derive(const char *pass, size_t passlen,
55 unsigned char *pass; member
87 OPENSSL_clear_free(ctx->pass, ctx->pass_len); in kdf_pbkdf2_cleanup()
153 if (ctx->pass == NULL) { in kdf_pbkdf2_derive()
164 return pbkdf2_derive((char *)ctx->pass, ctx->pass_len, in kdf_pbkdf2_derive()
190 if (!pbkdf2_set_membuf(&ctx->pass, &ctx->pass_len, p)) in kdf_pbkdf2_set_ctx_params()
274 static int pbkdf2_derive(const char *pass, size_t passlen, in pbkdf2_derive() argument
319 if (!HMAC_Init_ex(hctx_tpl, pass, passlen, digest, NULL)) in pbkdf2_derive()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dpass_fixture.h58 // Runs the given |pass| on the binary assembled from the |original|.
60 // from pass Process() function.
62 Pass* pass, const std::string& original, bool skip_nop) { in OptimizeToBinary()
74 const auto status = pass->Run(context()); in OptimizeToBinary()
83 // Runs a single pass of class |PassT| on the binary assembled from the
85 // from the pass Process() function.
89 auto pass = MakeUnique<PassT>(std::forward<Args>(args)...); in SinglePassRunToBinary() local
90 pass->SetMessageConsumer(consumer_); in SinglePassRunToBinary()
91 return OptimizeToBinary(pass.get(), assembly, skip_nop); in SinglePassRunToBinary()
94 // Runs a single pass o
61 OptimizeToBinary( Pass* pass, const std::string& original, bool skip_nop) OptimizeToBinary() argument
210 auto pass = MakeUnique<PassT>(std::forward<Args>(args)...); SinglePassRunAndFail() local
[all...]
/third_party/spirv-tools/test/opt/
H A Dpass_fixture.h58 // Runs the given |pass| on the binary assembled from the |original|.
60 // from pass Process() function.
62 Pass* pass, const std::string& original, bool skip_nop) { in OptimizeToBinary()
74 const auto status = pass->Run(context()); in OptimizeToBinary()
83 // Runs a single pass of class |PassT| on the binary assembled from the
85 // from the pass Process() function.
89 auto pass = MakeUnique<PassT>(std::forward<Args>(args)...); in SinglePassRunToBinary() local
90 pass->SetMessageConsumer(consumer_); in SinglePassRunToBinary()
91 return OptimizeToBinary(pass.get(), assembly, skip_nop); in SinglePassRunToBinary()
94 // Runs a single pass o
61 OptimizeToBinary( Pass* pass, const std::string& original, bool skip_nop) OptimizeToBinary() argument
210 auto pass = MakeUnique<PassT>(std::forward<Args>(args)...); SinglePassRunAndFail() local
[all...]
/third_party/node/deps/openssl/openssl/apps/include/
H A Dapps.h44 * quick macro when you need to pass an unsigned char instead of a char.
110 char *get_passwd(const char *pass, const char *desc);
115 const char *pass, const char *desc);
122 const char *pass, ENGINE *e, const char *desc);
124 const char *pass, ENGINE *e, const char *desc);
133 int exclude_http, const char *pass, const char *desc,
135 STACK_OF(X509) *load_certs_multifile(char *files, const char *pass,
137 X509_STORE *load_certstore(char *input, const char *pass, const char *desc,
140 const char *pass, const char *desc);
142 const char *pass, cons
[all...]
/third_party/openssl/apps/include/
H A Dapps.h44 * quick macro when you need to pass an unsigned char instead of a char.
110 char *get_passwd(const char *pass, const char *desc);
115 const char *pass, const char *desc);
122 const char *pass, ENGINE *e, const char *desc);
124 const char *pass, ENGINE *e, const char *desc);
133 int exclude_http, const char *pass, const char *desc,
135 STACK_OF(X509) *load_certs_multifile(char *files, const char *pass,
137 X509_STORE *load_certstore(char *input, const char *pass, const char *desc,
140 const char *pass, const char *desc);
142 const char *pass, cons
[all...]
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dpkcs12.rs38 pub fn parse(&self, pass: &str) -> Result<ParsedPkcs12, ErrorStack> { in parse()
39 let parsed = self.parse2(pass)?; in parse()
50 pub fn parse2(&self, pass: &str) -> Result<ParsedPkcs12_2, ErrorStack> { in parse2()
52 let pass = CString::new(pass.as_bytes()).unwrap(); in parse2()
60 pass.as_ptr(), in parse2()
228 let pass = CString::new(password).unwrap(); in build2()
229 let pass = pass.as_ptr(); in build2()
247 pass a in build2()
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DCreatePipelineAsyncTests.cpp40 wgpu::ComputePassEncoder pass = encoder.BeginComputePass(); in ValidateCreateComputePipelineAsync() local
52 pass.SetBindGroup(0, bindGroup); in ValidateCreateComputePipelineAsync()
53 pass.SetPipeline(currentTask->computePipeline); in ValidateCreateComputePipelineAsync()
55 pass.Dispatch(1); in ValidateCreateComputePipelineAsync()
56 pass.EndPass(); in ValidateCreateComputePipelineAsync()
691 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPass); in TEST_P() local
698 pass.SetPipeline(task.renderPipeline); in TEST_P()
700 pass.SetVertexBuffer(0, vertexBuffer1); in TEST_P()
701 pass.SetVertexBuffer(1, vertexBuffer2); in TEST_P()
702 pass in TEST_P()
762 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPass); TEST_P() local
833 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPass); TEST_P() local
935 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPass); TEST_P() local
[all...]
H A DSamplerFilterAnisotropicTests.cpp192 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&mRenderPass.renderPassInfo); in TestFilterAnisotropic() local
193 pass.SetPipeline(mPipeline); in TestFilterAnisotropic()
194 pass.SetBindGroup(0, bindGroup); in TestFilterAnisotropic()
195 pass.SetVertexBuffer(0, vertexBuffer); in TestFilterAnisotropic()
196 pass.Draw(6); in TestFilterAnisotropic()
197 pass.EndPass(); in TestFilterAnisotropic()
H A DTexture3DTests.cpp101 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPass.renderPassInfo); in TEST_P() local
102 pass.SetPipeline(pipeline); in TEST_P()
103 pass.SetBindGroup(0, bindGroup); in TEST_P()
104 pass.Draw(6); in TEST_P()
105 pass.EndPass(); in TEST_P()
/third_party/ltp/testcases/kernel/device-drivers/block/block_dev_user/
H A Dblock_dev.c82 int i, pass = 0; in test_run() local
85 SAFE_FILE_SCANF(cleanup, dev_result, "%d", &pass); in test_run()
86 tst_resm((pass) ? TPASS : TFAIL, "Test-case '%d'", i + 1); in test_run()
/third_party/node/deps/npm/node_modules/iconv-lite/lib/
H A Dbom-handling.js30 this.pass = false;
36 if (this.pass || !res)
45 this.pass = true;
/kernel/linux/linux-5.10/tools/testing/selftests/timers/
H A Dvalid-adjtimex.c117 int ret, pass = 0; in validate_freq() local
136 pass = -1; in validate_freq()
155 pass = -1; in validate_freq()
164 pass = -1; in validate_freq()
179 pass = -1; in validate_freq()
192 return pass; in validate_freq()
/kernel/linux/linux-6.6/tools/testing/selftests/timers/
H A Dvalid-adjtimex.c117 int ret, pass = 0; in validate_freq() local
136 pass = -1; in validate_freq()
155 pass = -1; in validate_freq()
164 pass = -1; in validate_freq()
179 pass = -1; in validate_freq()
192 return pass; in validate_freq()
/third_party/node/lib/internal/tls/
H A Dsecure-context.js156 // the ciphers and pass them to the appropriate API.
195 const pass = (
197 setKey(context, pem, pass, name);
273 const pass = val.passphrase || passphrase;
274 if (pass !== undefined && pass !== null) {
275 context.loadPKCS12(toBuf(raw), toBuf(pass));
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sc/
H A DvktSafetyCriticalApiTests.cpp79 return tcu::TestStatus::pass("All forbidden commands are not accessible"); in forbiddenCoreCommands()
147 return tcu::TestStatus::pass("No extensions from forbidden set"); in forbiddenCoreExtensions()
206 return tcu::TestStatus::pass("All forbidden commands are not accessible"); in forbiddenPromotedCommands()
233 return tcu::TestStatus::pass("Pass"); in forbiddenDeviceFeatures()
249 return tcu::TestStatus::pass("Pass"); in forbiddenDeviceProperties()
339 return tcu::TestStatus::pass("All implemented extensions are defined in specification"); in allowedExtensions()
/third_party/ffmpeg/libavutil/tests/
H A Dhwdevice.c204 int pass, fail, skip, err; in main() local
206 pass = fail = skip = 0; in main()
214 ++pass; in main()
223 pass + fail + skip, pass, fail, skip); in main()
/third_party/skia/third_party/externals/dawn/src/tests/perf_tests/
H A DSubresourceTrackingPerf.cpp128 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPass); variable
129 pass.SetPipeline(mPipeline);
130 pass.SetBindGroup(0, bindgroup);
131 pass.Draw(3);
132 pass.EndPass();
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gem/selftests/
H A Di915_gem_object_blt.c35 int pass; in __perf_fill_blt() local
45 for (pass = 0; pass < ARRAY_SIZE(t); pass++) { in __perf_fill_blt()
62 t[pass] = ktime_sub(t1, t0); in __perf_fill_blt()
115 int pass; in __perf_copy_blt() local
125 for (pass = 0; pass < ARRAY_SIZE(t); pass++) { in __perf_copy_blt()
142 t[pass] in __perf_copy_blt()
[all...]
/third_party/ntfs-3g/libntfs-3g/
H A Dlcnalloc.c245 u8 pass = 1; /* 1: inside zone; 2: start of zone */ in ntfs_cluster_alloc() local
297 pass = 2; in ntfs_cluster_alloc()
441 pass = 2; in ntfs_cluster_alloc()
450 ntfs_log_trace("Finished current zone pass(%i).\n", pass); in ntfs_cluster_alloc()
451 if (pass == 1) { in ntfs_cluster_alloc()
452 pass = 2; in ntfs_cluster_alloc()
470 /* pass == 2 */ in ntfs_cluster_alloc()
476 pass = 1; in ntfs_cluster_alloc()
493 pass in ntfs_cluster_alloc()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/wsi/
H A DvktWsiAcquireDrmDisplayTests.cpp292 // * \return tcu::TestStatus::pass on success
313 return tcu::TestStatus::pass("pass"); in testGetDrmDisplayEXT()
321 // * \return tcu::TestStatus::pass on success
341 return tcu::TestStatus::pass("pass"); in testGetDrmDisplayEXTInvalidFd()
349 // * \return tcu::TestStatus::pass on success
371 return tcu::TestStatus::pass("pass"); in testGetDrmDisplayEXTInvalidConnectorId()
379 // * \return tcu::TestStatus::pass o
[all...]
/third_party/skia/src/gpu/v1/
H A DStencilMaskHelper.cpp138 // Second pass to clear user bits (only needed sometimes)
245 // Get the stencil settings per-pass to achieve the given fill+region op effect on the
252 // If drawDirectToClip is true, the returned array will only have one pass and the
388 for (GrUserStencilSettings const* const* pass = passes; *pass; ++pass) { in drawRect()
390 draw_stencil_rect(fSDC, fClip, *pass, matrix, rect, aa); in drawRect()
392 draw_stencil_rect(fSDC, fClip, *pass, SkMatrix::I(), in drawRect()
407 // bit or first draw to client bits and then apply a cover pass. The complicating factor is that in drawPath()
459 for (GrUserStencilSettings const* const* pass in drawPath()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/wsi/
H A DvktWsiAcquireDrmDisplayTests.cpp288 // * \return tcu::TestStatus::pass on success
309 return tcu::TestStatus::pass("pass"); in testGetDrmDisplayEXT()
317 // * \return tcu::TestStatus::pass on success
339 return tcu::TestStatus::pass("pass"); in testGetDrmDisplayEXTInvalidFd()
347 // * \return tcu::TestStatus::pass on success
369 return tcu::TestStatus::pass("pass"); in testGetDrmDisplayEXTInvalidConnectorId()
377 // * \return tcu::TestStatus::pass o
[all...]
/kernel/linux/linux-5.10/fs/gfs2/
H A Dlops.c746 struct gfs2_log_header_host *head, int pass) in buf_lo_before_scan()
748 if (pass != 0) in buf_lo_before_scan()
757 int pass) in buf_lo_scan_elements()
767 if (pass != 1 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_METADATA) in buf_lo_scan_elements()
822 static void buf_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass) in buf_lo_after_scan() argument
831 if (pass != 1) in buf_lo_after_scan()
896 struct gfs2_log_header_host *head, int pass) in revoke_lo_before_scan()
898 if (pass != 0) in revoke_lo_before_scan()
907 int pass) in revoke_lo_scan_elements()
918 if (pass ! in revoke_lo_scan_elements()
745 buf_lo_before_scan(struct gfs2_jdesc *jd, struct gfs2_log_header_host *head, int pass) buf_lo_before_scan() argument
755 buf_lo_scan_elements(struct gfs2_jdesc *jd, u32 start, struct gfs2_log_descriptor *ld, __be64 *ptr, int pass) buf_lo_scan_elements() argument
895 revoke_lo_before_scan(struct gfs2_jdesc *jd, struct gfs2_log_header_host *head, int pass) revoke_lo_before_scan() argument
905 revoke_lo_scan_elements(struct gfs2_jdesc *jd, u32 start, struct gfs2_log_descriptor *ld, __be64 *ptr, int pass) revoke_lo_scan_elements() argument
955 revoke_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass) revoke_lo_after_scan() argument
987 databuf_lo_scan_elements(struct gfs2_jdesc *jd, u32 start, struct gfs2_log_descriptor *ld, __be64 *ptr, int pass) databuf_lo_scan_elements() argument
1037 databuf_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass) databuf_lo_after_scan() argument
[all...]

Completed in 16 milliseconds

1...<<11121314151617181920>>...84