/external/llvm/utils/release/ |
D | findRegressions-simple.py | 66 passes = {} 71 passes[x] = '' 90 passes[x] += t + "\n" 104 passes[x] += t + "\n" 110 passes[x] += t + "\n" 138 if len(passes['compile state']) != 0: 140 print passes['compile state'] 142 if len(passes['exec state']) != 0: 144 print passes['exec state']
|
/external/libvpx/libvpx/examples/ |
D | vp9_spatial_svc_encoder.c | 91 int passes; member 113 int passes = 0; in parse_command_line() local 169 passes = arg_parse_uint(&arg); in parse_command_line() 170 if (passes < 1 || passes > 2) { in parse_command_line() 171 die("Error: Invalid number of passes (%d)\n", passes); in parse_command_line() 193 if (passes == 0 || passes == 1) { in parse_command_line() 219 app_input->passes = passes; in parse_command_line() 307 if (!(app_input.passes == 2 && app_input.pass == 1)) { in main() 333 if (!(app_input.passes == 2 && app_input.pass == 1)) { in main() 356 if (app_input.passes == 2) in main()
|
/external/llvm/test/Other/ |
D | pass-pipeline-parsing.ll | 2 ; RUN: -passes=no-op-module,no-op-module %s 2>&1 \ 10 ; RUN: -passes='module(no-op-module,no-op-module)' %s 2>&1 \ 20 ; RUN: -passes=no-op-function,no-op-function %s 2>&1 \ 31 ; RUN: -passes='function(no-op-function,no-op-function)' %s 2>&1 \ 42 ; RUN: -passes='no-op-module,function(no-op-function,no-op-function),no-op-module' %s 2>&1 \ 55 ; RUN: -passes='no-op-module)' %s 2>&1 \ 60 ; RUN: -passes='module(no-op-module))' %s 2>&1 \ 65 ; RUN: -passes='module(no-op-module' %s 2>&1 \ 70 ; RUN: -passes='no-op-function)' %s 2>&1 \ 75 ; RUN: -passes='function(no-op-function))' %s 2>&1 \ [all …]
|
D | new-pass-manager.ll | 9 ; RUN: -passes=no-op-module %s 2>&1 \ 16 ; RUN: -passes=no-op-cgscc %s 2>&1 \ 19 ; RUN: -passes='cgscc(no-op-cgscc)' %s 2>&1 \ 31 ; RUN: -passes=no-op-function %s 2>&1 \ 34 ; RUN: -passes='function(no-op-function)' %s 2>&1 \ 44 ; RUN: opt -disable-output -debug-pass-manager -passes=print %s 2>&1 \ 54 ; RUN: opt -disable-output -debug-pass-manager -disable-verify -passes='print,verify' %s 2>&1 \ 63 ; RUN: opt -disable-output -debug-pass-manager -passes='function(print)' %s 2>&1 \ 77 ; RUN: opt -disable-output -debug-pass-manager -disable-verify -passes='function(print,verify)' %s … 88 ; RUN: opt -S -o - -passes='no-op-module,no-op-module' %s \ [all …]
|
D | ResponseFile.ll | 1 ; Test that we can recurse, at least a little bit. The -time-passes flag here 5 ; RUN: echo "-time-passes @%t.list1" > %t.list2
|
/external/icu/icu4c/source/test/perf/utrie2perf/ |
D | utrie2perf.bat | 14 %PERF% CheckFCD -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000 15 rem %PERF% CheckFCDAlwaysGet -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000 16 rem %PERF% CheckFCDUTF8 -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000 17 %PERF% ToNFC -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000 18 %PERF% GetBiDiClass -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
|
D | utrie2perf.sh | 20 $PERF CheckFCD -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000 23 $PERF ToNFC -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000 24 $PERF GetBiDiClass -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000
|
/external/skia/src/gpu/ |
D | GrDefaultPathRenderer.cpp | 563 const GrStencilSettings* passes[3]; in internalDrawPath() local 571 passes[0] = &gDirectToStencil; in internalDrawPath() 573 passes[0] = NULL; in internalDrawPath() 581 passes[0] = &gDirectToStencil; in internalDrawPath() 583 passes[0] = NULL; in internalDrawPath() 593 passes[0] = &gEOStencilPass; in internalDrawPath() 601 passes[1] = &gInvEOColorPass; in internalDrawPath() 603 passes[1] = &gEOColorPass; in internalDrawPath() 615 passes[0] = &gWindStencilSeparateWithWrap; in internalDrawPath() 617 passes[0] = &gWindStencilSeparateNoWrap; in internalDrawPath() [all …]
|
/external/v8/tools/testrunner/local/ |
D | verbose.py | 47 skipped = timeout = nocrash = passes = fail_ok = fail = 0 50 passes += 1 58 if list(o) == [statusfile.PASS]: passes += 1 66 "pass": passes,
|
/external/llvm/docs/ |
D | WritingAnLLVMPass.rst | 12 passes are where most of the interesting parts of the compiler exist. Passes 17 All LLVM passes are subclasses of the `Pass 28 passes. One of the main features of the LLVM Pass Framework is that it 29 schedules passes to run in an efficient way based on the constraints that your 39 Here we describe how to write the "hello world" of passes. The "Hello" pass is 212 contained in an anonymous namespace --- this reflects the fact that passes 269 nice command line option (:option:`--time-passes`) that allows you to get 270 information about the execution time of your pass along with the other passes 275 $ opt -load ../../../Debug+Asserts/lib/Hello.so -hello -time-passes < hello.bc > /dev/null 292 passes listed are automatically inserted by the :program:`opt` tool to verify [all …]
|
D | Bugpoint.rst | 11 ``bugpoint`` narrows down the source of problems in LLVM tools and passes. It 26 the LLVM infrastructure at all. It works with any and all LLVM passes and code 40 LLVM passes are specified on the command line, it runs these passes on the test 41 program. If any of the passes crash, or if they produce malformed output (which 54 output, ``bugpoint`` runs the test program after all of the LLVM passes have 56 the difference resulted from a failure in one of the LLVM passes, and enters the 66 can to reduce the list of passes (for optimizer crashes) and the size of the 68 passes triggers the bug. This is useful when debugging a problem exposed by 69 ``opt``, for example, because it runs over 38 passes. 77 failure. At the end, ``bugpoint`` should tell you what passes crash, give you a [all …]
|
/external/llvm/lib/Passes/ |
D | PassRegistry.def | 1 //===- PassRegistry.def - Registry of passes --------------------*- C++ -*-===// 10 // This file is used as the registry of passes that are part of the core LLVM 11 // libraries. This file describes both transformation passes and analyses 12 // Analyses are registered while transformation passes have names registered
|
/external/llvm/docs/CommandGuide/ |
D | bugpoint.rst | 7 **bugpoint** [*options*] [*input LLVM ll/bc files*] [*LLVM passes*] **--args** 13 **bugpoint** narrows down the source of problems in LLVM tools and passes. It 78 Do not run the specified passes to clean up and reduce the size of the test 79 program. By default, **bugpoint** uses these passes internally when attempting to 80 reduce test programs. If you're trying to find a bug in one of these passes, 91 Continually randomize the specified passes and run them on the test program 106 register new optimization passes. Once loaded, the object will add new command 165 This script will "fail" as long as FileCheck passes. So the result 166 will be the minimum bitcode that passes FileCheck.
|
D | opt.rst | 61 analysis passes in any order. The :option:`-help` option lists all the passes 72 disables most passes. 91 .. option:: -time-passes 98 If this is a debug build, this option will enable debug printouts from passes 105 optimization or analysis passes. Once loaded, the object will add new command
|
/external/valgrind/memcheck/tests/ |
D | vcpu_fbench.c | 711 long passes; local 749 passes = 0; 767 passes++; 768 if ((passes % 100L) == 0) { 769 printf("Pass %ld.\n", passes); 846 passes, i + 1);
|
/external/valgrind/perf/ |
D | fbench.c | 707 long passes; local 745 passes = 0; 763 passes++; 764 if ((passes % 100L) == 0) { 765 printf("Pass %ld.\n", passes); 842 passes, i + 1);
|
/external/libpng/contrib/examples/ |
D | pngpixel.c | 219 int passes, pass; in main() local 229 passes = 1; in main() 233 passes = PNG_INTERLACE_ADAM7_PASSES; in main() 243 for (pass=0; pass<passes; ++pass) in main()
|
/external/eigen/doc/ |
D | TopicAssertions.dox | 71 - \b EIGEN_STATIC_ASSERT_FIXED_SIZE(TYPE) - passes if \a TYPE is fixed size. 72 - \b EIGEN_STATIC_ASSERT_DYNAMIC_SIZE(TYPE) - passes if \a TYPE is dynamic size. 74 - \b EIGEN_STATIC_ASSERT_ARRAYXPR(Derived) - passes if \a Derived is an array expression. 83 - \b EIGEN_STATIC_ASSERT_VECTOR_ONLY(TYPE) - passes if \a TYPE must be a vector type. 84 - <b>EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(TYPE, SIZE)</b> - passes if \a TYPE must be a vector … 85 - <b>EIGEN_STATIC_ASSERT_MATRIX_SPECIFIC_SIZE(TYPE, ROWS, COLS)</b> - passes if \a TYPE must be a m…
|
/external/llvm/lib/LTO/ |
D | LTOCodeGenerator.cpp | 472 legacy::PassManager passes; in applyScopeRestrictions() local 473 passes.add(createVerifierPass()); in applyScopeRestrictions() 519 passes.add(createInternalizePass(MustPreserveList)); in applyScopeRestrictions() 522 passes.run(*mergedModule); in applyScopeRestrictions() 541 legacy::PassManager passes; in optimize() local 546 passes.add( in optimize() 561 PMB.populateLTOPassManager(passes); in optimize() 564 passes.run(*mergedModule); in optimize()
|
/external/libvpx/libvpx/ |
D | vpxenc.c | 142 static const arg_def_t passes = ARG_DEF("p", "passes", 1, variable 203 &outputfile, &codecarg, &passes, &pass_arg, &fpf_name, &limit, &skip, 652 global->passes = 0; in parse_global_config() 664 } else if (arg_match(&arg, &passes, argi)) { in parse_global_config() 665 global->passes = arg_parse_uint(&arg); in parse_global_config() 667 if (global->passes < 1 || global->passes > 2) in parse_global_config() 668 die("Error: Invalid number of passes (%d)\n", global->passes); in parse_global_config() 729 if (global->pass > global->passes) { in parse_global_config() 732 global->passes = global->pass; in parse_global_config() 736 if (global->passes == 0) { in parse_global_config() [all …]
|
/external/libpng/contrib/libtests/ |
D | readpng.c | 73 int passes = png_set_interlace_handling(png_ptr); in read_png() local 78 for (pass = 0; pass < passes; ++pass) in read_png()
|
/external/llvm/test/Feature/ |
D | optnone-opt.ll | 39 ; IR passes run at -O1 and higher. 53 ; Additional IR passes run at -O2 and higher. 57 ; Additional IR passes that opt doesn't turn on by default. 63 ; Loop IR passes that opt doesn't turn on by default.
|
/external/llvm/tools/ |
D | Makefile | 61 PARALLEL_DIRS += bugpoint-passes 72 PARALLEL_DIRS := $(filter-out bugpoint-passes, \
|
/external/llvm/autoconf/m4/ |
D | sanity_check.m4 | 1 dnl Check a program for version sanity. The test runs a program, passes it an 4 dnl passes the sanity check.
|
/external/pdfium/samples/fx_lpng/lpng_v163/ |
D | fx_pngread.c | 2790 int passes; in png_image_read_and_map() local 2799 passes = 1; in png_image_read_and_map() 2803 passes = PNG_INTERLACE_ADAM7_PASSES; in png_image_read_and_map() 2807 passes = 0; in png_image_read_and_map() 2819 for (pass = 0; pass < passes; ++pass) in png_image_read_and_map() 2983 int passes = 0; /* As a flag */ in png_image_read_colormapped() local 2992 passes = png_set_interlace_handling(png_ptr); in png_image_read_colormapped() 3072 if (passes == 0) in png_image_read_colormapped() 3089 while (--passes >= 0) in png_image_read_colormapped() 3113 int passes; in png_image_read_composite() local [all …]
|