/third_party/openssl/engines/ |
H A D | e_loader_attic.c | 57 static char *file_get_pass(const UI_METHOD *ui_method, char *pass, in file_get_pass() argument 75 pass = NULL; in file_get_pass() 77 pass, 0, maxsize - 1) <= 0) { in file_get_pass() 79 pass = NULL; in file_get_pass() 84 pass = NULL; in file_get_pass() 88 pass = NULL; in file_get_pass() 97 return pass; in file_get_pass() 124 char *pass = file_get_pass(pass_data->ui_method, buf, num, in file_get_pem_pass() local 128 return pass == NULL ? 0 : strlen(pass); in file_get_pem_pass() 318 char *pass = NULL; try_decode_PKCS12() local 444 char *pass = NULL; try_decode_PKCS8Encrypted() local [all...] |
/kernel/linux/linux-5.10/drivers/dma-buf/ |
H A D | st-dma-fence.c | 447 unsigned long pass = 0; in thread_signal_callback() local 486 pr_err("Callback not seen on thread %d, pass %lu (%lu misses), signaling %s add_callback; fence signaled? %s\n", in thread_signal_callback() 487 t->id, pass, miss, in thread_signal_callback() 500 pass++; in thread_signal_callback() 504 __func__, t->id, pass, miss); in thread_signal_callback() 512 int pass; in race_signal_callback() local 514 for (pass = 0; !ret && pass <= 1; pass++) { in race_signal_callback() 521 t[i].before = pass; in race_signal_callback() [all...] |
/kernel/linux/linux-5.10/fs/gfs2/ |
H A D | recovery.c | 198 unsigned int end, int pass) in foreach_descriptor() 240 error = lops_scan_elements(jd, start, ld, ptr, pass); in foreach_descriptor() 411 unsigned int pass; in gfs2_recover_func() local 510 for (pass = 0; pass < 2; pass++) { in gfs2_recover_func() 511 lops_before_scan(jd, &head, pass); in gfs2_recover_func() 513 head.lh_blkno, pass); in gfs2_recover_func() 514 lops_after_scan(jd, error, pass); in gfs2_recover_func() 197 foreach_descriptor(struct gfs2_jdesc *jd, u32 start, unsigned int end, int pass) foreach_descriptor() argument
|
/kernel/linux/linux-6.6/fs/gfs2/ |
H A D | recovery.c | 188 * @pass: iteration number (foreach_descriptor() is called in a for() loop) 197 unsigned int end, int pass) in foreach_descriptor() 239 error = lops_scan_elements(jd, start, ld, ptr, pass); in foreach_descriptor() 410 unsigned int pass; in gfs2_recover_func() local 510 for (pass = 0; pass < 2; pass++) { in gfs2_recover_func() 511 lops_before_scan(jd, &head, pass); in gfs2_recover_func() 513 head.lh_blkno, pass); in gfs2_recover_func() 514 lops_after_scan(jd, error, pass); in gfs2_recover_func() 196 foreach_descriptor(struct gfs2_jdesc *jd, u32 start, unsigned int end, int pass) foreach_descriptor() argument [all...] |
/kernel/linux/linux-6.6/drivers/dma-buf/ |
H A D | st-dma-fence.c | 461 unsigned long pass = 0; in thread_signal_callback() local 505 pr_err("Callback not seen on thread %d, pass %lu (%lu misses), signaling %s add_callback; fence signaled? %s\n", in thread_signal_callback() 506 t->id, pass, miss, in thread_signal_callback() 519 pass++; in thread_signal_callback() 523 __func__, t->id, pass, miss); in thread_signal_callback() 531 int pass; in race_signal_callback() local 533 for (pass = 0; !ret && pass <= 1; pass++) { in race_signal_callback() 540 t[i].before = pass; in race_signal_callback() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | tta.c | 61 uint8_t *pass; member 90 static uint64_t tta_check_crc64(uint8_t *pass) in tta_check_crc64() argument 93 uint8_t *end = pass + strlen(pass); in tta_check_crc64() 96 while (pass < end) { in tta_check_crc64() 97 crc ^= (uint64_t)*pass++ << 56; in tta_check_crc64() 151 if (!s->pass) { in tta_decode_init() 155 AV_WL64(s->crc_pass, tta_check_crc64(s->pass)); in tta_decode_init() 419 { "password", "Set decoding password", OFFSET(pass), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, DEC },
|
/third_party/node/deps/openssl/openssl/providers/implementations/kdfs/ |
H A D | scrypt.c | 36 static int scrypt_alg(const char *pass, size_t passlen, 45 unsigned char *pass; member 91 OPENSSL_clear_free(ctx->pass, ctx->pass_len); in kdf_scrypt_reset() 160 if (ctx->pass == NULL) { in kdf_scrypt_derive() 173 return scrypt_alg((char *)ctx->pass, ctx->pass_len, ctx->salt, in kdf_scrypt_derive() 194 if (!scrypt_set_membuf(&ctx->pass, &ctx->pass_len, p)) in kdf_scrypt_set_ctx_params() 410 static int scrypt_alg(const char *pass, size_t passlen, in scrypt_alg() argument 452 * Yet we pass it as integer to PKCS5_PBKDF2_HMAC... [This would in scrypt_alg() 498 if (ossl_pkcs5_pbkdf2_hmac_ex(pass, passlen, salt, saltlen, 1, sha256, in scrypt_alg() 505 if (ossl_pkcs5_pbkdf2_hmac_ex(pass, passle in scrypt_alg() [all...] |
/third_party/node/deps/openssl/openssl/crypto/cms/ |
H A D | cms_pwri.c | 23 unsigned char *pass, ossl_ssize_t passlen) in CMS_RecipientInfo_set0_password() 32 pwri->pass = pass; in CMS_RecipientInfo_set0_password() 33 if (pass && passlen < 0) in CMS_RecipientInfo_set0_password() 34 passlen = strlen((char *)pass); in CMS_RecipientInfo_set0_password() 42 unsigned char *pass, in CMS_add0_recipient_password() 165 CMS_RecipientInfo_set0_password(ri, pass, passlen); in CMS_add0_recipient_password() 308 if (pwri->pass == NULL) { in ossl_cms_RecipientInfo_pwri_crypt() 355 (char *)pwri->pass, pwri->passlen, in ossl_cms_RecipientInfo_pwri_crypt() 22 CMS_RecipientInfo_set0_password(CMS_RecipientInfo *ri, unsigned char *pass, ossl_ssize_t passlen) CMS_RecipientInfo_set0_password() argument 39 CMS_add0_recipient_password(CMS_ContentInfo *cms, int iter, int wrap_nid, int pbe_nid, unsigned char *pass, ossl_ssize_t passlen, const EVP_CIPHER *kekciph) CMS_add0_recipient_password() argument
|
/third_party/openssl/crypto/cms/ |
H A D | cms_pwri.c | 23 unsigned char *pass, ossl_ssize_t passlen) in CMS_RecipientInfo_set0_password() 32 pwri->pass = pass; in CMS_RecipientInfo_set0_password() 33 if (pass && passlen < 0) in CMS_RecipientInfo_set0_password() 34 passlen = strlen((char *)pass); in CMS_RecipientInfo_set0_password() 42 unsigned char *pass, in CMS_add0_recipient_password() 165 CMS_RecipientInfo_set0_password(ri, pass, passlen); in CMS_add0_recipient_password() 308 if (pwri->pass == NULL) { in ossl_cms_RecipientInfo_pwri_crypt() 355 (char *)pwri->pass, pwri->passlen, in ossl_cms_RecipientInfo_pwri_crypt() 22 CMS_RecipientInfo_set0_password(CMS_RecipientInfo *ri, unsigned char *pass, ossl_ssize_t passlen) CMS_RecipientInfo_set0_password() argument 39 CMS_add0_recipient_password(CMS_ContentInfo *cms, int iter, int wrap_nid, int pbe_nid, unsigned char *pass, ossl_ssize_t passlen, const EVP_CIPHER *kekciph) CMS_add0_recipient_password() argument
|
/third_party/openssl/providers/implementations/kdfs/ |
H A D | scrypt.c | 36 static int scrypt_alg(const char *pass, size_t passlen, 45 unsigned char *pass; member 91 OPENSSL_clear_free(ctx->pass, ctx->pass_len); in kdf_scrypt_reset() 160 if (ctx->pass == NULL) { in kdf_scrypt_derive() 173 return scrypt_alg((char *)ctx->pass, ctx->pass_len, ctx->salt, in kdf_scrypt_derive() 194 if (!scrypt_set_membuf(&ctx->pass, &ctx->pass_len, p)) in kdf_scrypt_set_ctx_params() 410 static int scrypt_alg(const char *pass, size_t passlen, in scrypt_alg() argument 452 * Yet we pass it as integer to PKCS5_PBKDF2_HMAC... [This would in scrypt_alg() 498 if (ossl_pkcs5_pbkdf2_hmac_ex(pass, passlen, salt, saltlen, 1, sha256, in scrypt_alg() 505 if (ossl_pkcs5_pbkdf2_hmac_ex(pass, passle in scrypt_alg() [all...] |
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfswipe.c | 1722 unsigned long int pass, i; in destroy_record() local 1784 for (pass = 0; pass < npasses; pass++) { in destroy_record() 1785 fill_buffer(pass, a_offset, in destroy_record() 1799 pass is needed. */ in destroy_record() 1808 for (pass = 0; pass < npasses; pass++) { in destroy_record() 1810 fill_buffer (pass, (unsigne in destroy_record() [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_ra_coalesce.cpp | 299 unsigned pass = c->is_reg_pinned() ? 0 : 1; in color_chunks() local 306 while (pass < 2) { in color_chunks() 310 if (pass == 0) { in color_chunks() 333 ++pass; in color_chunks() 518 unsigned i, pass = reg_pinned ? 0 : 1; in color_reg_constraint() local 522 while (pass < 2) { in color_reg_constraint() 526 if (pass == 0) { in color_reg_constraint() 562 if (pass == 0 && done) in color_reg_constraint() 567 if (!done && pass) { in color_reg_constraint() 572 if (pass in color_reg_constraint() [all...] |
H A D | sb_pass.cpp | 32 pass::pass(shader &s) : ctx(s.get_ctx()), sh(s) {} in pass() function in r600_sb::pass 34 int pass::run() { return -1; } in run()
|
/kernel/linux/linux-6.6/drivers/cxl/ |
H A D | security.c | 107 memcpy(dis_pass.pass, key_data->data, NVDIMM_PASSPHRASE_LEN); in __cxl_pmem_security_disable() 148 u8 pass[NVDIMM_PASSPHRASE_LEN]; in cxl_pmem_security_unlock() local 152 memcpy(pass, key_data->data, NVDIMM_PASSPHRASE_LEN); in cxl_pmem_security_unlock() 156 .payload_in = pass, in cxl_pmem_security_unlock() 181 memcpy(erase.pass, key->data, NVDIMM_PASSPHRASE_LEN); in cxl_pmem_security_passphrase_erase()
|
/third_party/cups-filters/cupsfilters/ |
H A D | image-png.c | 54 int pass, /* Current pass */ in _cupsImageReadPNG() local 236 for (pass = 1; pass <= passes; pass ++) in _cupsImageReadPNG() 241 if (pass == passes) in _cupsImageReadPNG()
|
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | tlssrp_depr.c | 106 char *pass = app_malloc(PWD_STRLEN + 1, "SRP password buffer"); in ssl_give_srp_client_pwd_cb() local 112 if ((l = password_callback(pass, PWD_STRLEN, 0, &cb_tmp)) < 0) { in ssl_give_srp_client_pwd_cb() 114 OPENSSL_free(pass); in ssl_give_srp_client_pwd_cb() 117 *(pass + l) = '\0'; in ssl_give_srp_client_pwd_cb() 119 return pass; in ssl_give_srp_client_pwd_cb()
|
/third_party/openssl/apps/lib/ |
H A D | tlssrp_depr.c | 106 char *pass = app_malloc(PWD_STRLEN + 1, "SRP password buffer"); in ssl_give_srp_client_pwd_cb() local 112 if ((l = password_callback(pass, PWD_STRLEN, 0, &cb_tmp)) < 0) { in ssl_give_srp_client_pwd_cb() 114 OPENSSL_free(pass); in ssl_give_srp_client_pwd_cb() 117 *(pass + l) = '\0'; in ssl_give_srp_client_pwd_cb() 119 return pass; in ssl_give_srp_client_pwd_cb()
|
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
H A D | SamplerTests.cpp | 138 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&mRenderPass.renderPassInfo); in TestAddressModes() local 139 pass.SetPipeline(mPipeline); in TestAddressModes() 140 pass.SetBindGroup(0, bindGroup); in TestAddressModes() 141 pass.Draw(6); in TestAddressModes() 142 pass.EndPass(); in TestAddressModes()
|
H A D | DestroyTests.cpp | 73 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPass.renderPassInfo); in CreateTriangleCommandBuffer() local 74 pass.SetPipeline(pipeline); in CreateTriangleCommandBuffer() 75 pass.SetVertexBuffer(0, vertexBuffer); in CreateTriangleCommandBuffer() 76 pass.Draw(3); in CreateTriangleCommandBuffer() 77 pass.EndPass(); in CreateTriangleCommandBuffer()
|
H A D | PrimitiveStateTests.cpp | 97 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPass); in DoTest() local 128 pass.SetPipeline(pipeline); in DoTest() 129 pass.SetBindGroup(0, bindGroup); in DoTest() 130 pass.Draw(1); in DoTest() 132 pass.EndPass(); in DoTest() 264 // within the same render pass with differing clampDepth values.
|
/third_party/skia/third_party/externals/dawn/src/tests/perf_tests/ |
H A D | ShaderRobustnessPerf.cpp | 482 wgpu::ComputePassEncoder pass = encoder.BeginComputePass(); in Step() local 483 pass.SetPipeline(mPipeline); in Step() 484 pass.SetBindGroup(0, mBindGroup); in Step() 486 pass.Dispatch(ceil(float(mDimBOuter) / float(kTileSize)), in Step() 489 pass.EndPass(); in Step()
|
/kernel/linux/linux-5.10/net/netfilter/ipvs/ |
H A D | ip_vs_rr.c | 58 int pass = 0; in ip_vs_rr_schedule() local 77 pass++; in ip_vs_rr_schedule() 79 * If we stay at head there is no need for 2nd pass. in ip_vs_rr_schedule() 81 } while (pass < 2 && p != &svc->destinations); in ip_vs_rr_schedule()
|
/kernel/linux/linux-6.6/net/netfilter/ipvs/ |
H A D | ip_vs_rr.c | 58 int pass = 0; in ip_vs_rr_schedule() local 77 pass++; in ip_vs_rr_schedule() 79 * If we stay at head there is no need for 2nd pass. in ip_vs_rr_schedule() 81 } while (pass < 2 && p != &svc->destinations); in ip_vs_rr_schedule()
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dvx_cmd_buffer.c | 204 const struct v3dv_render_pass *pass = state->pass; in cmd_buffer_render_pass_emit_loads() local 205 const struct v3dv_subpass *subpass = &pass->subpasses[state->subpass_idx]; in cmd_buffer_render_pass_emit_loads() 207 assert(!pass->multiview_enabled || layer < MAX_MULTIVIEW_VIEW_COUNT); in cmd_buffer_render_pass_emit_loads() 216 &state->pass->attachments[attachment_idx]; in cmd_buffer_render_pass_emit_loads() 236 uint32_t first_subpass = !pass->multiview_enabled ? in cmd_buffer_render_pass_emit_loads() 255 &state->pass->attachments[ds_attachment_idx]; in cmd_buffer_render_pass_emit_loads() 260 uint32_t ds_first_subpass = !pass->multiview_enabled ? in cmd_buffer_render_pass_emit_loads() 287 * the to aspects compatible with the render pass and the image. in cmd_buffer_render_pass_emit_loads() 436 struct v3dv_render_pass *pass in cmd_buffer_render_pass_emit_stores() local 809 const struct v3dv_render_pass *pass = state->pass; cmd_buffer_emit_render_pass_rcl() local [all...] |
/third_party/openssl/test/ |
H A D | endecode_test.c | 134 const char *pass, const char *pcipher); 138 const char *keytype, int selection, const char *pass); 153 const char *pass, const char *pcipher, in test_encode_decode() 171 output_type, output_structure, pass, pcipher))) in test_encode_decode() 178 selection, pass))) in test_encode_decode() 187 selection, pass)) in test_encode_decode() 189 output_type, output_structure, pass, pcipher))) in test_encode_decode() 205 if ((pass == NULL && pcipher == NULL) in test_encode_decode() 231 const char *pass, const char *pcipher) in encode_EVP_PKEY_prov() 237 const unsigned char *upass = (const unsigned char *)pass; in encode_EVP_PKEY_prov() 149 test_encode_decode(const char *file, const int line, const char *type, EVP_PKEY *pkey, int selection, const char *output_type, const char *output_structure, const char *pass, const char *pcipher, encoder *encode_cb, decoder *decode_cb, tester *test_cb, checker *check_cb, dumper *dump_cb, int flags) test_encode_decode() argument 226 encode_EVP_PKEY_prov(const char *file, const int line, void **encoded, long *encoded_len, void *object, int selection, const char *output_type, const char *output_structure, const char *pass, const char *pcipher) encode_EVP_PKEY_prov() argument 267 decode_EVP_PKEY_prov(const char *file, const int line, void **object, void *encoded, long encoded_len, const char *input_type, const char *structure_type, const char *keytype, int selection, const char *pass) decode_EVP_PKEY_prov() argument 342 encode_EVP_PKEY_legacy_PEM(const char *file, const int line, void **encoded, long *encoded_len, void *object, ossl_unused int selection, ossl_unused const char *output_type, ossl_unused const char *output_structure, const char *pass, const char *pcipher) encode_EVP_PKEY_legacy_PEM() argument 382 encode_EVP_PKEY_MSBLOB(const char *file, const int line, void **encoded, long *encoded_len, void *object, int selection, ossl_unused const char *output_type, ossl_unused const char *output_structure, ossl_unused const char *pass, ossl_unused const char *pcipher) encode_EVP_PKEY_MSBLOB() argument 427 encode_EVP_PKEY_PVK(const char *file, const int line, void **encoded, long *encoded_len, void *object, int selection, ossl_unused const char *output_type, ossl_unused const char *output_structure, const char *pass, ossl_unused const char *pcipher) encode_EVP_PKEY_PVK() argument 700 static const char *pass = "the holy handgrenade of antioch"; global() variable [all...] |