/third_party/skia/third_party/externals/libpng/contrib/examples/ |
H A D | pngpixel.c | 221 int passes, pass; in main() local 242 /* Now read the pixels, pass-by-pass, row-by-row: */ in main() 245 for (pass=0; pass<passes; ++pass) in main() 252 /* Sometimes the whole pass is empty because the in main() 255 * present in the pass, so it may be necessary to in main() 259 if (PNG_PASS_COLS(width, pass) == 0) in main() 263 * between each pixel in this pass; us in main() [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
H A D | TextureSubresourceTests.cpp | 80 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPassDesc); in DrawTriangle() local 81 pass.SetPipeline(rp); in DrawTriangle() 82 pass.Draw(3); in DrawTriangle() 83 pass.EndPass(); in DrawTriangle() 129 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPassDesc); in SampleAndDraw() local 130 pass.SetPipeline(rp); in SampleAndDraw() 131 pass.SetBindGroup(0, bindGroup); in SampleAndDraw() 132 pass.Draw(6); in SampleAndDraw() 133 pass.EndPass(); in SampleAndDraw()
|
H A D | ExternalTextureTests.cpp | 99 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPass); in TEST_P() local 100 pass.EndPass(); in TEST_P() 136 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPass); in TEST_P() local 138 pass.SetPipeline(pipeline); in TEST_P() 139 pass.SetBindGroup(0, bindGroup); in TEST_P() 140 pass.Draw(3); in TEST_P() 141 pass.EndPass(); in TEST_P()
|
H A D | ShaderFloat16Tests.cpp | 161 wgpu::ComputePassEncoder pass = encoder.BeginComputePass(); in TEST_P() local 162 pass.SetPipeline(pipeline); in TEST_P() 163 pass.SetBindGroup(0, bindGroup); in TEST_P() 164 pass.Dispatch(1); in TEST_P() 165 pass.EndPass(); in TEST_P()
|
/third_party/selinux/libselinux/src/ |
H A D | label_media.c | 33 static int process_line(const char *path, char *line_buf, int pass, in process_line() argument 57 if (pass == 1) { in process_line() 63 if (pass == 0) { in process_line() 79 unsigned int lineno, pass, maxnspec; in init() local 107 * The first pass counts the number of specifications and in init() 109 * of the first pass, the spec array is allocated. in init() 110 * The second pass performs detailed validation of the input in init() 114 for (pass = 0; pass < 2; pass in init() [all...] |
H A D | label_x.c | 35 static int process_line(const char *path, char *line_buf, int pass, in process_line() argument 61 if (pass == 1) { in process_line() 89 if (pass == 0) { in process_line() 106 unsigned int lineno, pass, maxnspec; in init() local 134 * The first pass counts the number of specifications and in init() 136 * of the first pass, the spec array is allocated. in init() 137 * The second pass performs detailed validation of the input in init() 141 for (pass = 0; pass < 2; pass in init() [all...] |
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | MultisampleCompatibilityTest.cpp | 188 for (int pass = 0; pass < 3; pass++) in TEST_P() 200 if (pass == 1) in TEST_P() 206 if (pass == 1) in TEST_P() 211 results[pass].reset(new uint8_t[kResultSize]); in TEST_P() 212 memset(results[pass].get(), 123u, kResultSize); in TEST_P() 213 glReadPixels(0, 0, kWidth, kHeight, GL_RGBA, GL_UNSIGNED_BYTE, results[pass].get()); in TEST_P() 218 // Verify that rendering is deterministic, so that the pass above does not in TEST_P() 245 for (int pass in TEST_P() [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/unittests/native/ |
H A D | CommandBufferEncodingTests.cpp | 39 // of a pass. Test that bindings are restored after the validation runs. 94 wgpu::ComputePassEncoder pass = encoder.BeginComputePass(); in TEST_F() local 97 FromAPI(pass.Get())->GetCommandBufferStateTrackerForTesting(); in TEST_F() 100 pass.SetPipeline(pipeline0); in TEST_F() 101 pass.SetBindGroup(0, staticBG); in TEST_F() 102 pass.SetBindGroup(1, dynamicBG, 1, &dynamicOffset); in TEST_F() 105 pass.DispatchIndirect(indirectBuffer, 0); in TEST_F() 116 // Also pass an indirect offset which should get replaced with the offset in TEST_F() 118 pass.DispatchIndirect(indirectBuffer, 4); in TEST_F() 129 pass in TEST_F() 280 wgpu::ComputePassEncoder pass = encoder.BeginComputePass(); TEST_F() local [all...] |
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_query.c | 201 return ((struct tu_perf_query_data *)a)->pass - in compare_perfcntr_pass() 202 ((struct tu_perf_query_data *)b)->pass; in compare_perfcntr_pass() 268 * correct group id, countable id, counter register and pass index with in tu_CreateQueryPool() 271 * Also, since this built data will be sorted by pass index later, we in tu_CreateQueryPool() 275 uint32_t regs[pool->perf_group_count], pass[pool->perf_group_count]; in tu_CreateQueryPool() local 277 memset(pass, 0x00, pool->perf_group_count * sizeof(pass[0])); in tu_CreateQueryPool() 290 * reset it for next pass. in tu_CreateQueryPool() 294 pool->perf_query_data[i].pass = pass[gi in tu_CreateQueryPool() 894 emit_perfcntrs_pass_start(struct tu_cs *cs, uint32_t pass) emit_perfcntrs_pass_start() argument 1114 const struct tu_render_pass *pass = cmdbuf->state.pass; emit_end_occlusion_query() local [all...] |
/test/testfwk/arkxtest/jsunit/src/module/assert/ |
H A D | assertPromiseIsRejectedWith.js | 23 return {pass: false, message: 'Expected not be called on a promise.'}; 35 pass: false, 42 pass: true, 47 pass: false,
|
H A D | assertPromiseIsResolvedWith.js | 22 return {pass: false, message: 'Expected not be called on a promise.'}; 36 pass: true, 41 pass: false, 48 pass: false,
|
/third_party/node/deps/openssl/openssl/crypto/pkcs12/ |
H A D | p12_p8d.c | 14 PKCS8_PRIV_KEY_INFO *PKCS8_decrypt_ex(const X509_SIG *p8, const char *pass, in PKCS8_decrypt_ex() argument 23 ASN1_ITEM_rptr(PKCS8_PRIV_KEY_INFO), pass, in PKCS8_decrypt_ex() 27 PKCS8_PRIV_KEY_INFO *PKCS8_decrypt(const X509_SIG *p8, const char *pass, in PKCS8_decrypt() argument 30 return PKCS8_decrypt_ex(p8, pass, passlen, NULL, NULL); in PKCS8_decrypt()
|
H A D | p12_crpt.c | 23 int PKCS12_PBE_keyivgen_ex(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, in PKCS12_PBE_keyivgen_ex() argument 51 if (!PKCS12_key_gen_utf8_ex(pass, passlen, salt, saltlen, PKCS12_KEY_ID, in PKCS12_PBE_keyivgen_ex() 60 if (!PKCS12_key_gen_utf8_ex(pass, passlen, salt, saltlen, PKCS12_IV_ID, in PKCS12_PBE_keyivgen_ex() 78 int PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, in PKCS12_PBE_keyivgen() argument 82 return PKCS12_PBE_keyivgen_ex(ctx, pass, passlen, param, cipher, md, en_de, in PKCS12_PBE_keyivgen()
|
/third_party/openssl/crypto/pkcs12/ |
H A D | p12_p8d.c | 14 PKCS8_PRIV_KEY_INFO *PKCS8_decrypt_ex(const X509_SIG *p8, const char *pass, in PKCS8_decrypt_ex() argument 23 ASN1_ITEM_rptr(PKCS8_PRIV_KEY_INFO), pass, in PKCS8_decrypt_ex() 27 PKCS8_PRIV_KEY_INFO *PKCS8_decrypt(const X509_SIG *p8, const char *pass, in PKCS8_decrypt() argument 30 return PKCS8_decrypt_ex(p8, pass, passlen, NULL, NULL); in PKCS8_decrypt()
|
H A D | p12_crpt.c | 23 int PKCS12_PBE_keyivgen_ex(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, in PKCS12_PBE_keyivgen_ex() argument 51 if (!PKCS12_key_gen_utf8_ex(pass, passlen, salt, saltlen, PKCS12_KEY_ID, in PKCS12_PBE_keyivgen_ex() 60 if (!PKCS12_key_gen_utf8_ex(pass, passlen, salt, saltlen, PKCS12_IV_ID, in PKCS12_PBE_keyivgen_ex() 78 int PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, in PKCS12_PBE_keyivgen() argument 82 return PKCS12_PBE_keyivgen_ex(ctx, pass, passlen, param, cipher, md, en_de, in PKCS12_PBE_keyivgen()
|
/third_party/selinux/checkpolicy/ |
H A D | module_compiler.c | 82 int define_policy(int pass, int module_header_given) in define_policy() argument 93 if (pass == 2) { in define_policy() 782 int require_class(int pass) in require_class() argument 790 if (pass == 2) { in require_class() 893 static int require_role_or_attribute(int pass, unsigned char isattr) in require_role_or_attribute() argument 899 if (pass == 2) { in require_role_or_attribute() 925 int require_role(int pass) in require_role() argument 927 return require_role_or_attribute(pass, 0); in require_role() 930 int require_attribute_role(int pass) in require_attribute_role() argument 932 return require_role_or_attribute(pass, in require_attribute_role() 935 require_type_or_attribute(int pass, unsigned char isattr) require_type_or_attribute() argument 954 require_type(int pass) require_type() argument 959 require_attribute(int pass) require_attribute() argument 964 require_user(int pass) require_user() argument 990 require_bool_tunable(int pass, int is_tunable) require_bool_tunable() argument 1024 require_bool(int pass) require_bool() argument 1029 require_tunable(int pass) require_tunable() argument 1034 require_sens(int pass) require_sens() argument 1080 require_cat(int pass) require_cat() argument 1305 begin_optional(int pass) begin_optional() argument 1346 begin_optional_else(int pass) begin_optional_else() argument 1425 end_avrule_block(int pass) end_avrule_block() argument [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/x86/ |
H A D | syscall_numbering.c | 127 * We pass in an extra copy of the extended system call number in probe_syscall() 251 enum ptrace_pass pass = sh->ptrace_pass; in test_syscalls_common() local 263 if (pass >= PTP_FUZZRET) in test_syscalls_common() 337 enum ptrace_pass pass; in syscall_numbering_tracee() local 345 for (sh->ptrace_pass = pass = PTP_NOTHING; pass < PTP_DONE; in syscall_numbering_tracee() 346 sh->ptrace_pass = ++pass) { in syscall_numbering_tracee() 347 run("Running tests under ptrace: %s\n", ptrace_pass_name[pass]); in syscall_numbering_tracee() 352 static void mess_with_syscall(pid_t testpid, enum ptrace_pass pass) in mess_with_syscall() argument 359 if (pass in mess_with_syscall() [all...] |
/kernel/linux/linux-5.10/fs/jbd2/ |
H A D | recovery.c | 39 struct recovery_info *info, enum passtype pass); 236 struct recovery_info *info, enum passtype pass) in fc_do_one_pass() 256 err = journal->j_fc_replay_callback(journal, bh, pass, in fc_do_one_pass() 279 * Recovery is done in three passes. In the first pass, we look for the 281 * blocks. In the third and final pass, we replay any un-revoked blocks 353 * We perform one pass over the journal to allow us to tell the user how 465 struct recovery_info *info, enum passtype pass) in do_one_pass() 493 if (pass == PASS_SCAN) in do_one_pass() 496 jbd_debug(1, "Starting recovery pass %d\n", pass); in do_one_pass() 235 fc_do_one_pass(journal_t *journal, struct recovery_info *info, enum passtype pass) fc_do_one_pass() argument 464 do_one_pass(journal_t *journal, struct recovery_info *info, enum passtype pass) do_one_pass() argument [all...] |
/kernel/linux/linux-6.6/fs/jbd2/ |
H A D | recovery.c | 40 struct recovery_info *info, enum passtype pass); 238 struct recovery_info *info, enum passtype pass) in fc_do_one_pass() 258 err = journal->j_fc_replay_callback(journal, bh, pass, in fc_do_one_pass() 281 * Recovery is done in three passes. In the first pass, we look for the 283 * blocks. In the third and final pass, we replay any un-revoked blocks 358 * We perform one pass over the journal to allow us to tell the user how 472 struct recovery_info *info, enum passtype pass) in do_one_pass() 501 if (pass == PASS_SCAN) in do_one_pass() 504 jbd2_debug(1, "Starting recovery pass %d\n", pass); in do_one_pass() 237 fc_do_one_pass(journal_t *journal, struct recovery_info *info, enum passtype pass) fc_do_one_pass() argument 471 do_one_pass(journal_t *journal, struct recovery_info *info, enum passtype pass) do_one_pass() argument [all...] |
/foundation/communication/netmanager_base/services/netconnmanager/src/ |
H A D | net_proxy_userinfo.cpp | 35 static const std::string NETCONNPROXY_PASS_COL = "pass"; 72 NETMGR_LOG_I("net_conn database save user and pass info"); in SaveHttpProxyHostPass() 107 NETMGR_LOG_D("net_conn database save user and pass info end"); in SaveHttpProxyHostPass() 128 std::string pass; in GetHttpProxyHostPass() local 132 resultSet->GetString(columnIndex, pass); in GetHttpProxyHostPass() 138 passData.append(pass.c_str(), pass.size()); in GetHttpProxyHostPass() 145 errno_t passErrCode = memset_s(pass.data(), pass.size(), 0, pass in GetHttpProxyHostPass() [all...] |
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lws_map/ |
H A D | main.c | 34 expected = 4, pass = 0; in main() local 95 pass++; in main() 151 pass++; in main() 215 pass++; in main() 249 pass++; in main() 257 lwsl_user("Completed: PASS %d / %d\n", pass, expected); in main() 262 lwsl_user("Completed: FAIL, passed %d / %d (e %d)\n", pass, in main()
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
H A D | PipelineAndPassCompatibilityTests.cpp | 23 // depthReadOnly and stencilReadOnly should be the same in render pass and render bundle. 83 // depthReadOnly/stencilReadOnly in DepthStencilAttachment in render pass. 91 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&passDescriptor); in TEST_F() local 94 pass.SetPipeline(pipeline); in TEST_F() 95 pass.Draw(3); in TEST_F() 96 pass.EndPass(); in TEST_F() 138 // depthReadOnly/stencilReadOnly in DepthStencilAttachment in render pass. 159 // Create render pass and call ExecuteBundles() in TEST_F() 163 wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&passDescriptor); in TEST_F() local 164 pass in TEST_F() [all...] |
/kernel/linux/linux-5.10/drivers/pcmcia/ |
H A D | cardbus.c | 70 unsigned int max, pass; in cb_alloc() local 78 for (pass = 0; pass < 2; pass++) in cb_alloc() 80 max = pci_scan_bridge(bus, dev, max, pass); in cb_alloc()
|
/kernel/linux/linux-6.6/drivers/pcmcia/ |
H A D | cardbus.c | 70 unsigned int max, pass; in cb_alloc() local 78 for (pass = 0; pass < 2; pass++) in cb_alloc() 80 max = pci_scan_bridge(bus, dev, max, pass); in cb_alloc()
|
/third_party/skia/third_party/externals/libpng/contrib/libtests/ |
H A D | readpng.c | 80 int pass; in read_png() local 84 for (pass = 0; pass < passes; ++pass) in read_png() 90 y = PNG_PASS_ROWS(y, pass); in read_png()
|