Home
last modified time | relevance | path

Searched refs:pass (Results 276 - 300 of 2095) sorted by relevance

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

/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Dir_context_test.cpp25 #include "source/opt/pass.h"
44 const char* name() const override { return "noop-pass"; }
55 const char* name() const override { return "noop-pass"; }
70 const char* name() const override { return "noop-pass"; }
119 NoopPassPreservesNothing pass(Pass::Status::SuccessWithoutChange); in TEST_F()
120 Pass::Status s = pass.Run(&localContext); in TEST_F()
135 NoopPassPreservesNothing pass(Pass::Status::SuccessWithChange); in TEST_F()
136 Pass::Status s = pass.Run(&localContext); in TEST_F()
154 NoopPassPreservesAll pass(Pass::Status::SuccessWithChange); in TEST_F()
155 Pass::Status s = pass in TEST_F()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dir_context_test.cpp25 #include "source/opt/pass.h"
44 const char* name() const override { return "noop-pass"; }
55 const char* name() const override { return "noop-pass"; }
70 const char* name() const override { return "noop-pass"; }
119 NoopPassPreservesNothing pass(Pass::Status::SuccessWithoutChange); in TEST_F()
120 Pass::Status s = pass.Run(&localContext); in TEST_F()
135 NoopPassPreservesNothing pass(Pass::Status::SuccessWithChange); in TEST_F()
136 Pass::Status s = pass.Run(&localContext); in TEST_F()
154 NoopPassPreservesAll pass(Pass::Status::SuccessWithChange); in TEST_F()
155 Pass::Status s = pass in TEST_F()
[all...]
/third_party/ltp/testcases/open_posix_testsuite/functional/timers/clocks/
H A Dtwopsetclock.c57 int pass = 0; in main() local
81 pass = 1; in main()
88 if (pass) { in main()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/tests/
H A Dradeon_compiler_regalloc_tests.c54 unsigned pass = 1; in test_runner_rc_regalloc() local
74 pass = 0; in test_runner_rc_regalloc()
79 test_check(result, pass); in test_runner_rc_regalloc()
H A Dradeon_compiler_optimize_tests.c54 unsigned pass = 1; in test_runner_rc_optimize() local
76 pass = 0; in test_runner_rc_optimize()
79 test_check(result, pass); in test_runner_rc_optimize()
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
H A Dpkcs12.rs20 pass: *const c_char, in PKCS12_parse()
28 pass: *const c_char, in PKCS12_set_mac()
39 pass: #[const_ptr_if(any(ossl110, libressl280))] c_char, in PKCS12_create()
/kernel/linux/linux-5.10/arch/x86/pci/
H A Di386.c249 static void pcibios_allocate_dev_resources(struct pci_dev *dev, int pass) in pcibios_allocate_dev_resources() argument
274 if (pass == disabled) { in pcibios_allocate_dev_resources()
277 idx, r, disabled, pass); in pcibios_allocate_dev_resources()
292 if (!pass) { in pcibios_allocate_dev_resources()
307 static void pcibios_allocate_resources(struct pci_bus *bus, int pass) in pcibios_allocate_resources() argument
313 pcibios_allocate_dev_resources(dev, pass); in pcibios_allocate_resources()
317 pcibios_allocate_resources(child, pass); in pcibios_allocate_resources()
/kernel/linux/linux-6.6/arch/x86/pci/
H A Di386.c249 static void pcibios_allocate_dev_resources(struct pci_dev *dev, int pass) in pcibios_allocate_dev_resources() argument
274 if (pass == disabled) { in pcibios_allocate_dev_resources()
277 idx, r, disabled, pass); in pcibios_allocate_dev_resources()
292 if (!pass) { in pcibios_allocate_dev_resources()
307 static void pcibios_allocate_resources(struct pci_bus *bus, int pass) in pcibios_allocate_resources() argument
313 pcibios_allocate_dev_resources(dev, pass); in pcibios_allocate_resources()
317 pcibios_allocate_resources(child, pass); in pcibios_allocate_resources()
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_depthstencil.c111 ds->stencil[0].pass, in define_depth_stencil_state_object()
116 ds->stencil[1].pass, in define_depth_stencil_state_object()
140 ds->stencil[0].pass = svga_translate_stencil_op(templ->stencil[0].zpass_op); in svga_create_depth_stencil_state()
152 ds->stencil[0].pass = SVGA3D_STENCILOP_KEEP; in svga_create_depth_stencil_state()
162 ds->stencil[1].pass = svga_translate_stencil_op(templ->stencil[1].zpass_op); in svga_create_depth_stencil_state()
187 ds->stencil[1].pass = ds->stencil[0].pass; in svga_create_depth_stencil_state()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_arit.c463 bool pass; in test_unary() local
475 pass = precision >= test->precision; in test_unary()
496 expected_pass = pass; in test_unary()
500 if (pass != expected_pass || verbose) { in test_unary()
503 pass ? "PASS" : "FAIL", in test_unary()
504 !expected_pass ? (pass ? " (unexpected)" : " (expected)" ): ""); in test_unary()
508 if (pass != expected_pass) { in test_unary()
/third_party/node/deps/openssl/openssl/providers/implementations/kdfs/
H A Dpkcs12kdf.c38 unsigned char *pass; member
48 static int pkcs12kdf_derive(const unsigned char *pass, size_t passlen, in pkcs12kdf_derive() argument
93 *p++ = pass[i % passlen]; in pkcs12kdf_derive()
158 OPENSSL_clear_free(ctx->pass, ctx->pass_len); in kdf_pkcs12_cleanup()
209 if (ctx->pass == NULL) { in kdf_pkcs12_derive()
220 return pkcs12kdf_derive(ctx->pass, ctx->pass_len, ctx->salt, ctx->salt_len, in kdf_pkcs12_derive()
237 if (!pkcs12kdf_set_membuf(&ctx->pass, &ctx->pass_len, p)) in kdf_pkcs12_set_ctx_params()
/third_party/node/deps/openssl/openssl/crypto/evp/
H A Devp_pbe.c89 int EVP_PBE_CipherInit_ex(ASN1_OBJECT *pbe_obj, const char *pass, int passlen, in EVP_PBE_CipherInit_ex() argument
114 if (pass == NULL) in EVP_PBE_CipherInit_ex()
117 passlen = strlen(pass); in EVP_PBE_CipherInit_ex()
151 ret = keygen_ex(ctx, pass, passlen, param, cipher, md, en_de, libctx, propq); in EVP_PBE_CipherInit_ex()
153 ret = keygen(ctx, pass, passlen, param, cipher, md, en_de); in EVP_PBE_CipherInit_ex()
162 int EVP_PBE_CipherInit(ASN1_OBJECT *pbe_obj, const char *pass, int passlen, in EVP_PBE_CipherInit() argument
165 return EVP_PBE_CipherInit_ex(pbe_obj, pass, passlen, param, ctx, en_de, NULL, NULL); in EVP_PBE_CipherInit()
/third_party/node/deps/openssl/openssl/apps/
H A Dpkcs8.c45 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
52 {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
81 char pass[APP_PASS_LEN]; in pkcs8_main() local
268 p8pass = pass; in pkcs8_main()
270 (pass, sizeof(pass), "Enter Encryption Password:", 1)) { in pkcs8_main()
329 p8pass = pass; in pkcs8_main()
330 if (EVP_read_pw_string(pass, sizeof(pass), "Enter Password:", 0)) { in pkcs8_main()
/third_party/openssl/crypto/evp/
H A Devp_pbe.c89 int EVP_PBE_CipherInit_ex(ASN1_OBJECT *pbe_obj, const char *pass, int passlen, in EVP_PBE_CipherInit_ex() argument
114 if (pass == NULL) in EVP_PBE_CipherInit_ex()
117 passlen = strlen(pass); in EVP_PBE_CipherInit_ex()
151 ret = keygen_ex(ctx, pass, passlen, param, cipher, md, en_de, libctx, propq); in EVP_PBE_CipherInit_ex()
153 ret = keygen(ctx, pass, passlen, param, cipher, md, en_de); in EVP_PBE_CipherInit_ex()
162 int EVP_PBE_CipherInit(ASN1_OBJECT *pbe_obj, const char *pass, int passlen, in EVP_PBE_CipherInit() argument
165 return EVP_PBE_CipherInit_ex(pbe_obj, pass, passlen, param, ctx, en_de, NULL, NULL); in EVP_PBE_CipherInit()
/third_party/openssl/apps/
H A Dpkcs8.c45 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
52 {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
81 char pass[APP_PASS_LEN]; in pkcs8_main() local
268 p8pass = pass; in pkcs8_main()
270 (pass, sizeof(pass), "Enter Encryption Password:", 1)) { in pkcs8_main()
329 p8pass = pass; in pkcs8_main()
330 if (EVP_read_pw_string(pass, sizeof(pass), "Enter Password:", 0)) { in pkcs8_main()
/third_party/openssl/providers/implementations/kdfs/
H A Dpkcs12kdf.c38 unsigned char *pass; member
48 static int pkcs12kdf_derive(const unsigned char *pass, size_t passlen, in pkcs12kdf_derive() argument
93 *p++ = pass[i % passlen]; in pkcs12kdf_derive()
158 OPENSSL_clear_free(ctx->pass, ctx->pass_len); in kdf_pkcs12_cleanup()
209 if (ctx->pass == NULL) { in kdf_pkcs12_derive()
220 return pkcs12kdf_derive(ctx->pass, ctx->pass_len, ctx->salt, ctx->salt_len, in kdf_pkcs12_derive()
237 if (!pkcs12kdf_set_membuf(&ctx->pass, &ctx->pass_len, p)) in kdf_pkcs12_set_ctx_params()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DReadOnlyDepthStencilAttachmentTests.cpp70 // pass the depth test. The bottom part will compare with the depth values in depth buffer in CreateRenderPipeline()
71 // and pass the depth test, and sample from the depth buffer in fragment shader in the same in CreateRenderPipeline()
152 // Create a render pass to initialize the depth/stencil attachment. in DoTest()
164 // Create a render pass with readonly depth/stencil attachment. The attachment has already in DoTest()
165 // been initialized. The pipeline in this render pass will sample from the attachment. in DoTest()
167 wgpu::RenderPassEncoder pass = commandEncoder.BeginRenderPass(&passDescriptor); in DoTest() local
169 pass.SetPipeline(pipeline); in DoTest()
174 pass.SetBindGroup(0, bindGroup); in DoTest()
179 pass.SetBindGroup(0, bindGroup); in DoTest()
180 pass in DoTest()
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Ddct32.asm196 ; pass 1
209 ; pass 2
215 ; pass 3
229 ; pass 4
239 ; pass 5
262 ; pass 6, no SIMD...
393 ; pass 1
403 ; pass 2
409 ; pass 1
418 ; pass
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/drivers/net/mlxsw/
H A Dport_range_occ.sh75 action pass
81 action pass
84 action pass
87 action pass
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_depth_test_tmp.h53 unsigned i, pass = 0; in NAME() local
137 quads[pass++] = quads[i]; in NAME()
140 if (pass) in NAME()
141 qs->next->run(qs->next, quads, pass); in NAME()
/third_party/ltp/testcases/kernel/syscalls/mmap/
H A Dmmap03.c64 static volatile int pass = 0; variable
128 if (pass) { in main()
142 pass = 0; in main()
219 pass = 1; in sig_handler()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A DComputeIndirectValidationTests.cpp55 wgpu::ComputePassEncoder pass = encoder.BeginComputePass(); in TestIndirectOffset() local
56 pass.SetPipeline(pipeline); in TestIndirectOffset()
57 pass.DispatchIndirect(indirectBuffer, indirectOffset); in TestIndirectOffset()
58 pass.EndPass(); in TestIndirectOffset()
/third_party/skia/gm/
H A Dpostercircle.cpp87 for (int pass = 0; pass < 2; ++pass) {
92 bool drawFront = pass > 0;
/third_party/skia/third_party/externals/libpng/contrib/libtests/
H A Dpngvalid.c82 #define PNG_PASS_START_ROW(pass) (((1U&~(pass))<<(3-((pass)>>1)))&7)
83 #define PNG_PASS_START_COL(pass) (((1U& (pass))<<(3-(((pass)+1)>>1)))&7)
84 #define PNG_PASS_ROW_SHIFT(pass) ((pass)>2?(8-(pass))>>1:3)
85 #define PNG_PASS_COL_SHIFT(pass) ((pas
4031 interlace_row(png_bytep buffer, png_const_bytep imageRow, unsigned int pixel_size, png_uint_32 w, int pass, int littleendian) interlace_row() argument
4055 deinterlace_row(png_bytep buffer, png_const_bytep row, unsigned int pixel_size, png_uint_32 w, int pass, int littleendian) deinterlace_row() argument
4182 int pass; make_transform_image() local
4398 int pass; make_size_image() local
4720 int pass; make_error() local
5409 progressive_row(png_structp ppIn, png_bytep new_row, png_uint_32 y, int pass) progressive_row() argument
5480 int pass; sequential_row() local
5514 dp->pixel_size, dp->w, pass, dp->littleendian); sequential_row() local
5518 dp->pixel_size, dp->w, pass, dp->littleendian); sequential_row() local
9660 png_const_charp pass = 0; /* Reason test passes (or 0 for fail) */ gamma_component_validate() local
11181 png_pass_start_row(int pass) png_pass_start_row() argument
11191 png_pass_start_col(int pass) png_pass_start_col() argument
11201 png_pass_row_shift(int pass) png_pass_row_shift() argument
11235 png_pass_col_shift(int pass) png_pass_col_shift() argument
11270 png_row_from_pass_row(png_uint_32 yIn, int pass) png_row_from_pass_row() argument
11289 png_col_from_pass_col(png_uint_32 xIn, int pass) png_col_from_pass_col() argument
11308 png_row_in_interlace_pass(png_uint_32 y, int pass) png_row_in_interlace_pass() argument
11321 png_col_in_interlace_pass(png_uint_32 x, int pass) png_col_in_interlace_pass() argument
11334 png_pass_rows(png_uint_32 height, int pass) png_pass_rows() argument
11353 png_pass_cols(png_uint_32 width, int pass) png_pass_cols() argument
11381 int pass; perform_interlace_macro_validation() local
[all...]
/third_party/node/deps/openssl/openssl/engines/
H A De_loader_attic.c57 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...]

Completed in 20 milliseconds

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