Home
last modified time | relevance | path

Searched refs:passes (Results 1 – 25 of 380) sorted by relevance

12345678910>>...16

/external/skia/src/gpu/
DGrDefaultPathRenderer.cpp374 const GrStencilSettings* passes[3]; in internalDrawPath() local
382 passes[0] = &gDirectToStencil; in internalDrawPath()
384 passes[0] = NULL; in internalDrawPath()
392 passes[0] = &gDirectToStencil; in internalDrawPath()
394 passes[0] = NULL; in internalDrawPath()
404 passes[0] = &gEOStencilPass; in internalDrawPath()
412 passes[1] = &gInvEOColorPass; in internalDrawPath()
414 passes[1] = &gEOColorPass; in internalDrawPath()
426 passes[0] = &gWindStencilSeparateWithWrap; in internalDrawPath()
428 passes[0] = &gWindStencilSeparateNoWrap; in internalDrawPath()
[all …]
/external/chromium_org/third_party/skia/src/gpu/
DGrDefaultPathRenderer.cpp374 const GrStencilSettings* passes[3]; in internalDrawPath() local
382 passes[0] = &gDirectToStencil; in internalDrawPath()
384 passes[0] = NULL; in internalDrawPath()
392 passes[0] = &gDirectToStencil; in internalDrawPath()
394 passes[0] = NULL; in internalDrawPath()
404 passes[0] = &gEOStencilPass; in internalDrawPath()
412 passes[1] = &gInvEOColorPass; in internalDrawPath()
414 passes[1] = &gEOColorPass; in internalDrawPath()
426 passes[0] = &gWindStencilSeparateWithWrap; in internalDrawPath()
428 passes[0] = &gWindStencilSeparateNoWrap; in internalDrawPath()
[all …]
/external/llvm/utils/release/
DfindRegressions-simple.py66 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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
Dbuildbot_results.py92 passes = {}
99 def add_result(test, results, passes=passes, flaky=flaky, regressions=regressions): argument
109 add_to_dict_of_lists(passes, 'Expected to crash, but passed', test)
111 add_to_dict_of_lists(passes, 'Expected to timeout, but passed', test)
113 add_to_dict_of_lists(passes, 'Expected to fail, but passed', test)
124 if len(passes) or len(flaky) or len(regressions):
126 if len(passes):
127 for key, tests in passes.iteritems():
/external/chromium_org/third_party/icu/source/test/perf/utrie2perf/
Dutrie2perf.bat14 %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
Dutrie2perf.sh20 $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/icu4c/test/perf/utrie2perf/
Dutrie2perf.bat14 %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
Dutrie2perf.sh20 $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/llvm/tools/lto/
DLTOCodeGenerator.cpp164 PassManager passes; in writeMergedModules() local
165 passes.add(createVerifierPass()); in writeMergedModules()
166 passes.run(*_linker.getModule()); in writeMergedModules()
336 PassManager passes; in applyScopeRestrictions() local
337 passes.add(createVerifierPass()); in applyScopeRestrictions()
381 passes.add(createInternalizePass(mustPreserveList)); in applyScopeRestrictions()
384 passes.run(*mergedModule); in applyScopeRestrictions()
401 PassManager passes; in generateObjectFile() local
404 passes.add(createVerifierPass()); in generateObjectFile()
407 passes.add(new DataLayout(*_target->getDataLayout())); in generateObjectFile()
[all …]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
Dprint-json-test-results44 passes, failures, flakes = decode_results(results, options.expected)
47 if options.passes:
48 tests_to_print += passes.keys()
79 passes = {}
92 passes[test] = result
96 return (passes, failures, flakes)
/external/chromium_org/v8/tools/testrunner/local/
Dverbose.py47 skipped = timeout = nocrash = passes = fail_ok = fail = 0
50 passes += 1
58 if list(o) == [statusfile.PASS]: passes += 1
66 "pass": passes,
/external/llvm/unittests/Bitcode/
DBitReaderTest.cpp59 PassManager passes; in TEST() local
60 passes.add(createVerifierPass()); in TEST()
61 passes.run(*m); in TEST()
/external/llvm/docs/
DWritingAnLLVMPass.rst12 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
270 nice command line option (:option:`--time-passes`) that allows you to get
271 information about the execution time of your pass along with the other passes
276 $ opt -load ../../../Debug+Asserts/lib/Hello.so -hello -time-passes < hello.bc > /dev/null
293 passes listed are automatically inserted by the :program:`opt` tool to verify
[all …]
DBugpoint.rst11 ``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/docs/CommandGuide/
Dbugpoint.rst7 **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
169 This script will "fail" as long as FileCheck passes. So the result
170 will be the minimum bitcode that passes FileCheck.
Dopt.rst61 analysis passes in any order. The :option:`-help` option lists all the passes
67 This is short hand for a standard list of *compile time optimization* passes.
111 .. option:: -time-passes
118 If this is a debug build, this option will enable debug printouts from passes
125 optimization or analysis passes. Once loaded, the object will add new command
/external/valgrind/main/memcheck/tests/
Dvcpu_fbench.c711 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/main/perf/
Dfbench.c707 long passes; local
745 passes = 0;
763 passes++;
764 if ((passes % 100L) == 0) {
765 printf("Pass %ld.\n", passes);
842 passes, i + 1);
/external/llvm/test/Other/
DResponseFile.ll1 ; 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/llvm/tools/
DMakefile64 PARALLEL_DIRS += bugpoint-passes
75 PARALLEL_DIRS := $(filter-out bugpoint-passes, \
/external/llvm/autoconf/m4/
Dsanity_check.m41 dnl Check a program for version sanity. The test runs a program, passes it an
4 dnl passes the sanity check.
/external/llvm/projects/sample/autoconf/m4/
Dsanity_check.m41 dnl Check a program for version sanity. The test runs a program, passes it an
4 dnl passes the sanity check.
/external/libvpx/libvpx/
Dvpxenc.c374 static const arg_def_t passes = ARG_DEF("p", "passes", 1, variable
424 &outputfile, &codecarg, &passes, &pass_arg, &fpf_name, &limit, &skip,
1040 int passes; member
1119 global->passes = 0; in parse_global_config()
1140 } else if (arg_match(&arg, &passes, argi)) { in parse_global_config()
1141 global->passes = arg_parse_uint(&arg); in parse_global_config()
1143 if (global->passes < 1 || global->passes > 2) in parse_global_config()
1144 die("Error: Invalid number of passes (%d)\n", global->passes); in parse_global_config()
1194 if (global->passes == 0) { in parse_global_config()
1198 global->passes = (global->codec->iface == vpx_codec_vp9_cx ? 2 : 1); in parse_global_config()
[all …]
/external/llvm/test/CodeGen/ARM/
Dcode-placement.ll34 define i32 @t2(i32 %passes, i32* nocapture %src, i32 %size) nounwind readonly {
38 %0 = icmp eq i32 %passes, 0 ; <i1> [#uses=1]
61 %exitcond18 = icmp eq i32 %3, %passes ; <i1> [#uses=1]
/external/emma/core/java12/com/vladium/emma/report/
DIItemAttribute.java46 …boolean passes (IItem item, int criterion); // ideally, criteria should come from a double-dispatc… in passes() method
99 public boolean passes (final IItem item, final int criterion) in passes() method in IItemAttribute.Factory.NameAttribute
164 public boolean passes (final IItem item, final int criterion) in passes() method in IItemAttribute.Factory.FractionAttribute

12345678910>>...16