/external/libvpx/libvpx/test/ |
D | vpxenc.sh | 181 --passes=2 202 --passes=2 230 local passes=$(vpxenc_passes_param) 234 "${passes}" \ 249 local passes=$(vpxenc_passes_param) 253 "${passes}" \ 340 --passes=2 352 local passes=$(vpxenc_passes_param) 358 "${passes}" \ 371 local passes=$(vpxenc_passes_param) [all …]
|
/external/swiftshader/third_party/llvm-7.0/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/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/linux-kselftest/tools/testing/selftests/powerpc/security/ |
D | rfi_flush.c | 48 int fd, passes = 0, iter, rc = 0; in rfi_flush_test() local 89 passes++; in rfi_flush_test() 91 passes++; in rfi_flush_test() 98 if (passes < repetitions) { in rfi_flush_test() 103 repetitions - passes, repetitions); in rfi_flush_test() 110 passes, repetitions); in rfi_flush_test() 120 passes = 0; in rfi_flush_test()
|
/external/swiftshader/third_party/llvm-7.0/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-pm-pgo.ll | 1 ; RUN: opt -debug-pass-manager -passes='default<O2>' -pgo-kind=new-pm-pgo-instr-gen-pipeline -profi… 3 ; RUN: opt -debug-pass-manager -passes='default<O2>' -pgo-kind=new-pm-pgo-instr-use-pipeline -profi… 4 ; RUN: opt -debug-pass-manager -passes='default<O2>' -pgo-kind=new-pm-pgo-sample-use-pipeline -prof… 6 ; RUN: opt -debug-pass-manager -passes='thinlto-pre-link<O2>' -pgo-kind=new-pm-pgo-sample-use-pipel… 8 ; RUN: opt -debug-pass-manager -passes='thinlto<O2>' -pgo-kind=new-pm-pgo-sample-use-pipeline -prof… 10 ; RUN: opt -debug-pass-manager -passes='default<O2>' -new-pm-debug-info-for-profiling %s 2>&1 |File…
|
D | new-pm-defaults.ll | 11 ; RUN: -passes='default<O1>' -S %s 2>&1 \ 14 ; RUN: -passes='default<O2>' -S %s 2>&1 \ 17 ; RUN: -passes='default<O3>' -S %s 2>&1 \ 20 ; RUN: -passes='default<Os>' -S %s 2>&1 \ 23 ; RUN: -passes='default<Oz>' -S %s 2>&1 \ 26 ; RUN: -passes='lto-pre-link<O2>' -S %s 2>&1 \ 30 ; RUN: -passes-ep-peephole='no-op-function' \ 31 ; RUN: -passes='default<O3>' -S %s 2>&1 \ 35 ; RUN: -passes-ep-late-loop-optimizations='no-op-loop' \ 36 ; RUN: -passes='default<O3>' -S %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 \ 33 ; RUN: -passes=no-op-function %s 2>&1 \ 36 ; RUN: -passes='function(no-op-function)' %s 2>&1 \ 46 ; RUN: opt -disable-output -debug-pass-manager -passes=print %s 2>&1 \ 56 ; RUN: opt -disable-output -debug-pass-manager -disable-verify -passes='print,verify' %s 2>&1 \ 65 ; RUN: opt -disable-output -debug-pass-manager -passes='function(print)' %s 2>&1 \ 79 ; RUN: opt -disable-output -debug-pass-manager -disable-verify -passes='function(print,verify)' %s … 90 ; RUN: opt -S -o - -passes='no-op-module,no-op-module' %s \ [all …]
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | streamout_jit.cpp | 299 ::FunctionPassManager passes(JM()->mpCurrentModule); in Create() 301 passes.add(createBreakCriticalEdgesPass()); in Create() 302 passes.add(createCFGSimplificationPass()); in Create() 303 passes.add(createEarlyCSEPass()); in Create() 304 passes.add(createPromoteMemoryToRegisterPass()); in Create() 305 passes.add(createCFGSimplificationPass()); in Create() 306 passes.add(createEarlyCSEPass()); in Create() 307 passes.add(createInstructionCombiningPass()); in Create() 308 passes.add(createInstructionSimplifierPass()); in Create() 309 passes.add(createConstantPropagationPass()); in Create() [all …]
|
/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 \ 32 ; RUN: -passes=no-op-function %s 2>&1 \ 35 ; RUN: -passes='function(no-op-function)' %s 2>&1 \ 45 ; RUN: opt -disable-output -debug-pass-manager -passes=print %s 2>&1 \ 55 ; RUN: opt -disable-output -debug-pass-manager -disable-verify -passes='print,verify' %s 2>&1 \ 64 ; RUN: opt -disable-output -debug-pass-manager -passes='function(print)' %s 2>&1 \ 78 ; RUN: opt -disable-output -debug-pass-manager -disable-verify -passes='function(print,verify)' %s … 89 ; RUN: opt -S -o - -passes='no-op-module,no-op-module' %s \ [all …]
|
/external/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
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SampleProfile/ |
D | syntax.ll | 10 ; RUN: opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/syntax.prof 2>&1 | FileCheck … 11 ; RUN: not opt < %s -passes=sample-profile -sample-profile-file=missing.prof 2>&1 | FileCheck -chec… 12 ; RUN: not opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/bad_fn_header.prof 2>&1 |… 13 ; RUN: not opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/bad_sample_line.prof 2>&1… 14 ; RUN: not opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/bad_line_values.prof 2>&1… 15 ; RUN: not opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/bad_discriminator_value.p… 16 ; RUN: not opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/bad_samples.prof 2>&1 | F… 17 ; RUN: opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/bad_mangle.prof 2>&1 >/dev/nu…
|
/external/llvm/test/Transforms/SampleProfile/ |
D | syntax.ll | 10 ; RUN: opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/syntax.prof 2>&1 | FileCheck … 11 ; RUN: not opt < %s -passes=sample-profile -sample-profile-file=missing.prof 2>&1 | FileCheck -chec… 12 ; RUN: not opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/bad_fn_header.prof 2>&1 |… 13 ; RUN: not opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/bad_sample_line.prof 2>&1… 14 ; RUN: not opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/bad_line_values.prof 2>&1… 15 ; RUN: not opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/bad_discriminator_value.p… 16 ; RUN: not opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/bad_samples.prof 2>&1 | F… 17 ; RUN: opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/bad_mangle.prof 2>&1 >/dev/nu…
|
/external/harfbuzz_ng/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:
|
/external/swiftshader/third_party/LLVM/tools/lto/ |
D | LTOCodeGenerator.cpp | 311 PassManager passes; in applyScopeRestrictions() local 312 passes.add(createVerifierPass()); in applyScopeRestrictions() 354 passes.add(createInternalizePass(mustPreserveList)); in applyScopeRestrictions() 357 passes.run(*mergedModule); in applyScopeRestrictions() 379 PassManager passes; in generateObjectFile() local 382 passes.add(createVerifierPass()); in generateObjectFile() 385 passes.add(new TargetData(*_target->getTargetData())); in generateObjectFile() 387 PassManagerBuilder().populateLTOPassManager(passes, /*Internalize=*/ false, in generateObjectFile() 391 passes.add(createVerifierPass()); in generateObjectFile() 407 passes.run(*mergedModule); in generateObjectFile()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/ |
D | 5-3.c | 36 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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-opt-fuzzer/ |
D | command-line.ll | 10 ; Don't start without passes specified 14 ; Don't start with incorrect passes specified 15 ; RUN: not llvm-opt-fuzzer %t -ignore_remaining_args=1 -mtriple x86_64 -passes no-pass 2>&1 | FileC… 19 ; RUN: llvm-opt-fuzzer %t -ignore_remaining_args=1 -mtriple x86_64 -passes instcombine 2>&1 | FileC…
|
/external/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()
|
/external/skia/src/gpu/ops/ |
D | GrDefaultPathRenderer.cpp | 515 const GrUserStencilSettings* passes[2]; in internalDrawPath() local 522 passes[0] = &gDirectToStencil; in internalDrawPath() 524 passes[0] = &userStencilSettings; in internalDrawPath() 531 passes[0] = &gDirectToStencil; in internalDrawPath() 533 passes[0] = &userStencilSettings; in internalDrawPath() 542 passes[0] = &gEOStencilPass; in internalDrawPath() 550 passes[1] = &gInvEOColorPass; in internalDrawPath() 552 passes[1] = &gEOColorPass; in internalDrawPath() 561 passes[0] = &gWindStencilPass; in internalDrawPath() 569 passes[passCount-1] = &gInvWindColorPass; in internalDrawPath() [all …]
|
/external/skqp/src/gpu/ops/ |
D | GrDefaultPathRenderer.cpp | 516 const GrUserStencilSettings* passes[2]; in internalDrawPath() local 523 passes[0] = &gDirectToStencil; in internalDrawPath() 525 passes[0] = &userStencilSettings; in internalDrawPath() 532 passes[0] = &gDirectToStencil; in internalDrawPath() 534 passes[0] = &userStencilSettings; in internalDrawPath() 543 passes[0] = &gEOStencilPass; in internalDrawPath() 551 passes[1] = &gInvEOColorPass; in internalDrawPath() 553 passes[1] = &gEOColorPass; in internalDrawPath() 562 passes[0] = &gWindStencilPass; in internalDrawPath() 570 passes[passCount-1] = &gInvWindColorPass; in internalDrawPath() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/InstrProfiling/ |
D | platform.ll | 4 ; RUN: opt < %s -mtriple=x86_64-apple-macosx10.10.0 -passes=instrprof -S | FileCheck %s -check-pref… 6 ; RUN: opt < %s -mtriple=x86_64-unknown-linux -passes=instrprof -S | FileCheck %s -check-prefixes=L… 8 ; RUN: opt < %s -mtriple=x86_64-unknown-freebsd -passes=instrprof -S | FileCheck %s -check-prefixes… 10 ; RUN: opt < %s -mtriple=x86_64-scei-ps4 -passes=instrprof -S | FileCheck %s -check-prefixes=PS4,ELF 12 ; RUN: opt < %s -mtriple=x86_64-pc-solaris -passes=instrprof -S | FileCheck %s -check-prefixes=SOLA… 14 ; RUN: opt < %s -mtriple=x86_64-pc-windows -passes=instrprof -S | FileCheck %s -check-prefix=WINDOWS
|
/external/swiftshader/third_party/llvm-7.0/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 210 contained in an anonymous namespace --- this reflects the fact that passes 267 nice command line option (:option:`--time-passes`) that allows you to get 268 information about the execution time of your pass along with the other passes 273 $ opt -load lib/LLVMHello.so -hello -time-passes < hello.bc > /dev/null 289 passes listed are automatically inserted by the :program:`opt` tool to verify [all …]
|
/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 208 contained in an anonymous namespace --- this reflects the fact that passes 265 nice command line option (:option:`--time-passes`) that allows you to get 266 information about the execution time of your pass along with the other passes 271 $ opt -load ../../Debug+Asserts/lib/Hello.so -hello -time-passes < hello.bc > /dev/null 288 passes listed are automatically inserted by the :program:`opt` tool to verify [all …]
|