/third_party/mesa3d/src/amd/vulkan/ |
D | radv_llvm_helper.cpp | 31 : family(arg_family), tm_options(arg_tm_options), wave_size(arg_wave_size), passes(NULL) in radv_llvm_per_thread_info() 45 passes = ac_create_llvm_passes(llvm_info.tm); in init() 46 if (!passes) in init() 54 return ac_compile_module_to_elf(passes, module, pelf_buffer, pelf_size); in compile_to_memory_buffer() 70 struct ac_compiler_passes *passes; member in radv_llvm_per_thread_info 90 struct ac_compiler_passes *passes = ac_create_llvm_passes(info->tm); in radv_compile_to_elf() local 91 bool ret = ac_compile_module_to_elf(passes, module, pelf_buffer, pelf_size); in radv_compile_to_elf() 92 ac_destroy_llvm_passes(passes); in radv_compile_to_elf()
|
/third_party/skia/experimental/graphite/src/ |
D | RenderPassTask.cpp | 17 sk_sp<RenderPassTask> RenderPassTask::Make(std::vector<std::unique_ptr<DrawPass>> passes, in Make() argument 20 SkASSERT(passes.size() == 1); in Make() 22 return sk_sp<RenderPassTask>(new RenderPassTask(std::move(passes), desc)); in Make() 25 RenderPassTask::RenderPassTask(std::vector<std::unique_ptr<DrawPass>> passes, in RenderPassTask() argument 27 : fDrawPasses(std::move(passes)) in RenderPassTask()
|
/third_party/ltp/tools/sparse/sparse-src/Documentation/ |
D | dev-options.rst | 19 Dump the IR at each of the given passes. 21 The passes currently understood are: 31 If ``=last`` is used, all passes after the specified one are disabled. 32 By default all passes are enabled. 34 The passes currently understood are: 54 Dump the IR after all optimization passes.
|
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | streamout_jit.cpp | 308 ::FunctionPassManager passes(JM()->mpCurrentModule); in Create() 310 passes.add(createBreakCriticalEdgesPass()); in Create() 311 passes.add(createCFGSimplificationPass()); in Create() 312 passes.add(createEarlyCSEPass()); in Create() 313 passes.add(createPromoteMemoryToRegisterPass()); in Create() 314 passes.add(createCFGSimplificationPass()); in Create() 315 passes.add(createEarlyCSEPass()); in Create() 316 passes.add(createInstructionCombiningPass()); in Create() 318 passes.add(createConstantPropagationPass()); in Create() 320 passes.add(createSCCPPass()); in Create() [all …]
|
/third_party/libsoup/tests/ |
D | multipart-test.c | 30 unsigned passes; variable 184 check_read (gsize nread, unsigned passes) in check_read() argument 186 switch (passes) { in check_read() 227 check_read (bytes_read_for_part, passes); in multipart_read_cb() 229 passes++; in multipart_read_cb() 247 check_headers (SoupMultipartInputStream* multipart, unsigned passes) in check_headers() argument 257 switch (passes) { in check_headers() 315 g_assert_cmpint (passes, ==, 4); in multipart_next_part_cb() 321 check_headers (multipart, passes); in multipart_next_part_cb() 393 check_headers (multipart, passes); in sync_multipart_handling_cb() [all …]
|
/third_party/icu/icu4c/source/test/perf/utrie2perf/ |
D | utrie2perf.bat | 17 %PERF% CheckFCD -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000 18 rem %PERF% CheckFCDAlwaysGet -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000 19 rem %PERF% CheckFCDUTF8 -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000 20 %PERF% ToNFC -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000 21 %PERF% GetBiDiClass -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
|
D | utrie2perf.sh | 23 $PERF CheckFCD -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000 26 $PERF ToNFC -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000 27 $PERF GetBiDiClass -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000
|
/third_party/flutter/skia/third_party/externals/harfbuzz/test/shaping/ |
D | run-tests.py | 30 passes = 0 variable 116 passes += 1 127 passes += 1 130 print ("%d tests passed; %d failed; %d skipped." % (passes, fails, skips)) # file=sys.stderr 131 if not (fails + passes): 138 elif passes:
|
/third_party/skia/third_party/externals/harfbuzz/test/shape/ |
D | run-tests.py | 25 passes = 0 variable 105 passes += 1 112 passes += 1 114 print ("%d tests passed; %d failed; %d skipped." % (passes, fails, skips), file=sys.stderr) 115 if not (fails + passes): 122 elif passes:
|
/third_party/harfbuzz/test/shaping/ |
D | run-tests.py | 30 passes = 0 variable 117 passes += 1 128 passes += 1 131 print ("%d tests passed; %d failed; %d skipped." % (passes, fails, skips), file=sys.stderr) 132 if not (fails + passes): 139 elif passes:
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/ |
D | 5-3.c | 36 static int fails = 0, passes = 0; variable 41 passes += 1; in handler() 96 fails = NUMTESTS - passes; in main() 98 printf("passes %d, fails %d\n", passes, fails); in main()
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/pass_management/ |
D | repeated_pass_manager_simple.cpp | 28 auto& passes = GetPassInstances()->GetPasses(); in ChoosePass() local 29 return passes[GetFuzzerContext()->RandomIndex(passes)].get(); in ChoosePass()
|
D | repeated_pass_manager_random_with_recommendations.cpp | 50 auto& passes = GetPassInstances()->GetPasses(); in ChoosePass() local 51 result = passes[GetFuzzerContext()->RandomIndex(passes)].get(); in ChoosePass()
|
D | repeated_pass_manager_looped_with_recommendations.cpp | 27 auto& passes = GetPassInstances()->GetPasses(); in RepeatedPassManagerLoopedWithRecommendations() local 30 passes[GetFuzzerContext()->RandomIndex(passes)].get(); in RepeatedPassManagerLoopedWithRecommendations()
|
/third_party/spirv-tools/source/fuzz/pass_management/ |
D | repeated_pass_manager_simple.cpp | 28 auto& passes = GetPassInstances()->GetPasses(); in ChoosePass() local 29 return passes[GetFuzzerContext()->RandomIndex(passes)].get(); in ChoosePass()
|
D | repeated_pass_manager_random_with_recommendations.cpp | 50 auto& passes = GetPassInstances()->GetPasses(); in ChoosePass() local 51 result = passes[GetFuzzerContext()->RandomIndex(passes)].get(); in ChoosePass()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/pass_management/ |
D | repeated_pass_manager_simple.cpp | 28 auto& passes = GetPassInstances()->GetPasses(); in ChoosePass() local 29 return passes[GetFuzzerContext()->RandomIndex(passes)].get(); in ChoosePass()
|
D | repeated_pass_manager_random_with_recommendations.cpp | 50 auto& passes = GetPassInstances()->GetPasses(); in ChoosePass() local 51 result = passes[GetFuzzerContext()->RandomIndex(passes)].get(); in ChoosePass()
|
/third_party/flutter/skia/third_party/externals/libpng/contrib/libtests/ |
D | readpng.c | 75 int passes = png_set_interlace_handling(png_ptr); in read_png() local 77 int passes = png_get_interlace_type(png_ptr, info_ptr) == in read_png() local 84 for (pass = 0; pass < passes; ++pass) in read_png() 89 if (passes == PNG_INTERLACE_ADAM7_PASSES) in read_png()
|
/third_party/skia/third_party/externals/libpng/contrib/libtests/ |
D | readpng.c | 75 int passes = png_set_interlace_handling(png_ptr); in read_png() local 77 int passes = png_get_interlace_type(png_ptr, info_ptr) == in read_png() local 84 for (pass = 0; pass < passes; ++pass) in read_png() 89 if (passes == PNG_INTERLACE_ADAM7_PASSES) in read_png()
|
/third_party/libpng/contrib/libtests/ |
D | readpng.c | 75 int passes = png_set_interlace_handling(png_ptr); in read_png() local 77 int passes = png_get_interlace_type(png_ptr, info_ptr) == in read_png() local 84 for (pass = 0; pass < passes; ++pass) in read_png() 89 if (passes == PNG_INTERLACE_ADAM7_PASSES) in read_png()
|
/third_party/typescript/scripts/ |
D | failed-tests.js | 56 this.passes = []; property 61 runner.on("pass", test => this.passes.push(test)); 72 static writeFailures(file, passes, failures, keepFailed, done) { argument 79 for (const test of passes) { 131 …FailedTestsReporter.writeFailures(this.reporterOptions.file, this.passes, this.failures, this.repo…
|
/third_party/mesa3d/src/compiler/glsl/tests/ |
D | optimization_test.py | 78 passes = 0 112 passes += 1 114 print('{}/{} tests returned correct results'.format(passes, total)) 115 exit(0 if passes == total else 1)
|
/third_party/flutter/skia/src/gpu/ops/ |
D | GrDefaultPathRenderer.cpp | 519 const GrUserStencilSettings* passes[2]; in internalDrawPath() local 526 passes[0] = &gDirectToStencil; in internalDrawPath() 528 passes[0] = &userStencilSettings; in internalDrawPath() 535 passes[0] = &gDirectToStencil; in internalDrawPath() 537 passes[0] = &userStencilSettings; in internalDrawPath() 546 passes[0] = &gEOStencilPass; in internalDrawPath() 554 passes[1] = &gInvEOColorPass; in internalDrawPath() 556 passes[1] = &gEOColorPass; in internalDrawPath() 565 passes[0] = &gWindStencilPass; in internalDrawPath() 573 passes[passCount-1] = &gInvWindColorPass; in internalDrawPath() [all …]
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
D | spirv_opt_mutator.cc | 105 std::vector<std::string> passes; in Mutate() local 107 while (passes.size() < num_of_passes) { in Mutate() 110 passes.push_back(opt_passes_[idx]); in Mutate() 117 optimizer.RegisterPassesFromFlags(passes); in Mutate()
|