/external/valgrind/none/tests/ |
D | unit_debuglog.c | 19 void run(const char *format, ...) in run() function 55 run("|%f|", value); in main() 56 run("|%2f|", value); in main() 57 run("|%9f|", value); in main() 58 run("|%8.0f|", value); in main() 59 run("|%8.1f|", value); in main() 60 run("|%8.2f|", value); in main() 65 run("|%f|", value); in main() 66 run("|%4f|", value); in main() 67 run("|%9f|", value); in main() [all …]
|
/external/elfutils/tests/ |
D | Makefile.am | 73 TESTS = run-arextract.sh run-arsymtest.sh newfile test-nlist \ 75 run-show-die-info.sh run-get-files.sh run-get-lines.sh \ 76 run-get-pubnames.sh run-get-aranges.sh run-allfcts.sh \ 77 run-show-abbrev.sh run-line2addr.sh hash \ 78 newscn run-strip-test.sh run-strip-test2.sh \ 79 run-strip-test3.sh run-strip-test4.sh run-strip-test5.sh \ 80 run-strip-test6.sh run-strip-test7.sh run-strip-test8.sh \ 81 run-strip-test9.sh run-strip-test10.sh \ 82 run-strip-groups.sh run-strip-reloc.sh run-strip-strmerge.sh \ 83 run-unstrip-test.sh run-unstrip-test2.sh \ [all …]
|
D | ChangeLog | 28 run-readelf-zdebug.sh and run-readelf-zdebug-rel.sh. 32 * run-compress-test.sh: New test. 33 * Makefile.am (TESTS): Add run-compress-test.sh. 39 * run-zstrptr.sh: New test. 41 * run-elfputzdata.sh: Expect .shstrtab compression. 43 (TESTS): Add run-zstrptr.sh. 49 * run-readelf-zx.sh: New test. 50 * run-readelf-zp.sh: Likewise. 51 * Makefile.am (TESTS): Add run-readelf-zx.sh and run-readelf-zp.sh. 57 (TESTS): Add run-elfgetzdata.sh and run-elfputzdata.sh. [all …]
|
/external/vogar/src/vogar/ |
D | Driver.java | 39 private final Run run; field in Driver 41 public Driver(Run run) { in Driver() argument 42 this.run = run; in Driver() 67 run.mkdir.mkdirs(run.localTemp); in buildAndRun() 73 run.console.info("Nothing to do."); in buildAndRun() 77 run.console.info("Actions: " + actions.size()); in buildAndRun() 80 prepareTargetTask = new PrepareTarget(run, run.target); in buildAndRun() 81 run.taskQueue.enqueue(prepareTargetTask); in buildAndRun() 83 installVogarTasks = run.mode.installTasks(); in buildAndRun() 84 run.taskQueue.enqueueAll(installVogarTasks); in buildAndRun() [all …]
|
D | JavaVm.java | 33 private final Run run; field in JavaVm 35 JavaVm(Run run) { in JavaVm() argument 36 this.run = run; in JavaVm() 45 Iterables.addAll(vmCommand, run.invokeWith()); in newVmCommandBuilder() 46 vmCommand.add(run.javaPath(run.vmCommand)); in newVmCommandBuilder() 47 if (run.profile) { in newVmCommandBuilder() 50 + "format=" + (run.profileBinary ? 'b' : 'a') + "," in newVmCommandBuilder() 51 + "file=" + run.profileFile + "," in newVmCommandBuilder() 52 + "depth=" + run.profileDepth + "," in newVmCommandBuilder() 53 + "interval=" + run.profileInterval + "," in newVmCommandBuilder() [all …]
|
/external/libcxx/test/libcxx/utilities/function.objects/func.require/ |
D | bullet_1_2_3.pass.cpp | 143 static void run() { TestCaseImp().doTest(); } in run() function 278 TestCase<R(), 0, Q_None>::run(); in main() 279 TestCase<R() const, 0, Q_Const>::run(); in main() 280 TestCase<R() volatile, 0, Q_Volatile>::run(); in main() 281 TestCase<R() const volatile, 0, Q_CV>::run(); in main() 282 TestCase<R(...), 0, Q_None>::run(); in main() 283 TestCase<R(...) const, 0, Q_Const>::run(); in main() 284 TestCase<R(...) volatile, 0, Q_Volatile>::run(); in main() 285 TestCase<R(...) const volatile, 0, Q_CV>::run(); in main() 286 TestCase<R(A&), 1, Q_None>::run(); in main() [all …]
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/ |
D | story_run_unittest.py | 36 run = story_run.StoryRun(self.stories[0]) 37 run.AddValue(failure.FailureValue.FromMessage(self.stories[0], 'test')) 38 self.assertFalse(run.ok) 39 self.assertTrue(run.failed) 40 self.assertFalse(run.skipped) 42 run = story_run.StoryRun(self.stories[0]) 43 run.AddValue(scalar.ScalarValue( 46 run.AddValue(failure.FailureValue.FromMessage(self.stories[0], 'test')) 47 self.assertFalse(run.ok) 48 self.assertTrue(run.failed) [all …]
|
/external/libcxx/utils/google-benchmark/src/ |
D | csv_reporter.cc | 52 for (const auto& run : reports) PrintRunData(run); in ReportRuns() local 55 void CSVReporter::PrintRunData(const Run& run) { in PrintRunData() argument 60 std::string name = run.benchmark_name; in PrintRunData() 63 if (run.error_occurred) { in PrintRunData() 66 std::string msg = run.error_message; in PrintRunData() 73 if (!run.report_big_o && !run.report_rms) { in PrintRunData() 74 Out << run.iterations; in PrintRunData() 78 Out << run.GetAdjustedRealTime() << ","; in PrintRunData() 79 Out << run.GetAdjustedCPUTime() << ","; in PrintRunData() 82 if (run.report_big_o) { in PrintRunData() [all …]
|
D | json_reporter.cc | 117 void JSONReporter::PrintRunData(Run const& run) { in PrintRunData() argument 120 out << indent << FormatKV("name", run.benchmark_name) << ",\n"; in PrintRunData() 121 if (run.error_occurred) { in PrintRunData() 122 out << indent << FormatKV("error_occurred", run.error_occurred) << ",\n"; in PrintRunData() 123 out << indent << FormatKV("error_message", run.error_message) << ",\n"; in PrintRunData() 125 if (!run.report_big_o && !run.report_rms) { in PrintRunData() 126 out << indent << FormatKV("iterations", run.iterations) << ",\n"; in PrintRunData() 128 << FormatKV("real_time", RoundDouble(run.GetAdjustedRealTime())) in PrintRunData() 131 << FormatKV("cpu_time", RoundDouble(run.GetAdjustedCPUTime())); in PrintRunData() 133 << indent << FormatKV("time_unit", GetTimeUnitString(run.time_unit)); in PrintRunData() [all …]
|
/external/google-benchmark/src/ |
D | csv_reporter.cc | 52 for (const auto& run : reports) PrintRunData(run); in ReportRuns() local 55 void CSVReporter::PrintRunData(const Run& run) { in PrintRunData() argument 60 std::string name = run.benchmark_name; in PrintRunData() 63 if (run.error_occurred) { in PrintRunData() 66 std::string msg = run.error_message; in PrintRunData() 73 if (!run.report_big_o && !run.report_rms) { in PrintRunData() 74 Out << run.iterations; in PrintRunData() 78 Out << run.GetAdjustedRealTime() << ","; in PrintRunData() 79 Out << run.GetAdjustedCPUTime() << ","; in PrintRunData() 82 if (run.report_big_o) { in PrintRunData() [all …]
|
D | json_reporter.cc | 117 void JSONReporter::PrintRunData(Run const& run) { in PrintRunData() argument 120 out << indent << FormatKV("name", run.benchmark_name) << ",\n"; in PrintRunData() 121 if (run.error_occurred) { in PrintRunData() 122 out << indent << FormatKV("error_occurred", run.error_occurred) << ",\n"; in PrintRunData() 123 out << indent << FormatKV("error_message", run.error_message) << ",\n"; in PrintRunData() 125 if (!run.report_big_o && !run.report_rms) { in PrintRunData() 126 out << indent << FormatKV("iterations", run.iterations) << ",\n"; in PrintRunData() 128 << FormatKV("real_time", RoundDouble(run.GetAdjustedRealTime())) in PrintRunData() 131 << FormatKV("cpu_time", RoundDouble(run.GetAdjustedCPUTime())); in PrintRunData() 133 << indent << FormatKV("time_unit", GetTimeUnitString(run.time_unit)); in PrintRunData() [all …]
|
/external/vogar/src/vogar/android/ |
D | DeviceRuntime.java | 41 private final Run run; field in DeviceRuntime 45 public DeviceRuntime(Run run, ModeId modeId, Variant variant, in DeviceRuntime() argument 52 this.run = run; in DeviceRuntime() 59 for (File classpathElement : run.classpath.getElements()) { in installTasks() 60 addCreateDexJarAndPushTasks(result, run.basenameOfJar(classpathElement), in installTasks() 73 return new RunActionTask(run, action, useLargeTimeout); in executeActionTask() 78 Iterables.addAll(vmCommand, run.invokeWith()); in newVmCommandBuilder() 79 vmCommand.add(run.vmCommand); in newVmCommandBuilder() 82 VmCommandBuilder vmCommandBuilder = new VmCommandBuilder(run.log) in newVmCommandBuilder() 83 .env("ANDROID_DATA", run.getAndroidDataPath()) in newVmCommandBuilder() [all …]
|
D | HostRuntime.java | 43 private final Run run; field in HostRuntime 47 public HostRuntime(Run run, ModeId modeId, Variant variant) { in HostRuntime() argument 52 this.run = run; in HostRuntime() 58 return new RunActionTask(run, action, useLargeTimeout); in executeActionTask() 62 return run.localFile("android-data", run.dalvikCache); in dalvikCache() 67 for (File classpathElement : run.classpath.getElements()) { in installTasks() 69 String name = run.basenameOfJar(classpathElement); in installTasks() 70 File localDex = run.localDexFile(name); in installTasks() 71 result.add(createCreateDexJarTask(run.classpath, classpathElement, name, in installTasks() 74 result.add(new MkdirTask(run.mkdir, dalvikCache())); in installTasks() [all …]
|
D | InstallApkTask.java | 35 private final Run run; field in InstallApkTask 37 public InstallApkTask(Run run, Action action, File jar) { in InstallApkTask() argument 41 this.run = run; in InstallApkTask() 65 File dex = run.localFile(action, "classes.dex"); in createDex() 67 classesToDex.addAll(run.classpath); in createDex() 68 if (run.useJack) { in createDex() 73 run.androidSdk.dex(run.multidex, dex, classesToDex); in createDex() 84 ((run.debugging) ? " android:debuggable=\"true\"" : "") + ">\n" + in createApk() 93 File androidManifestFile = run.localFile(action, "classes", "AndroidManifest.xml"); in createApk() 103 File apk = run.localFile(action, action + ".apk"); in createApk() [all …]
|
D | JackDexTask.java | 35 private final Run run; field in JackDexTask 42 public JackDexTask(Run run, Classpath classpath, boolean benchmark, String name, in JackDexTask() argument 45 this.run = run; in JackDexTask() 54 run.mkdir.mkdirs(localDex.getParentFile()); in execute() 72 Md5Cache jackCache = run.jackCache; in execute() 73 boolean multidex = run.multidex; in execute() 81 String debuggingSubKey = "debug=" + run.debugging; in execute() 84 run.language.toString(), debuggingSubKey, multidexSubKey); in execute() 87 run.log.verbose("JackDexTask: Obtained " + localDex + " from jackCache"); in execute() 91 run.log.verbose("JackDexTask: Could not obtain " + localDex + " from jackCache"); in execute() [all …]
|
/external/vogar/src/vogar/tasks/ |
D | BuildActionTask.java | 51 private final Run run; field in BuildActionTask 55 public BuildActionTask(Run run, Action action, Driver driver, File outputFile) { in BuildActionTask() argument 57 this.run = run; in BuildActionTask() 65 if (run.useJack) { in execute() 87 File classesDir = run.localFile(action, "classes"); in compile() 88 run.mkdir.mkdirs(classesDir); in compile() 93 Javac javac = new Javac(run.log, run.javaPath("javac")); in compile() 94 if (run.debugging) { in compile() 104 sourceDirs.addAll(run.sourcepath); in compile() 108 if (!run.buildClasspath.isEmpty()) { in compile() [all …]
|
D | RunActionTask.java | 47 protected final Run run; field in RunActionTask 55 public RunActionTask(Run run, Action action, boolean useLargeTimeout) { in RunActionTask() argument 57 this.run = run; in RunActionTask() 62 ? run.largeTimeoutSeconds in RunActionTask() 63 : run.smallTimeoutSeconds; in RunActionTask() 71 run.console.action(actionName); in execute() 90 HostMonitor hostMonitor = new HostMonitor(run.console, this); in execute() 92 ? hostMonitor.attach(monitorPort(run.firstMonitorPort)) in execute() 112 run.driver.addEarlyResult(new Outcome(earlyResultOutcome, Result.ERROR, in execute() 124 run.driver.addEarlyResult(new Outcome(actionName, Result.ERROR, e)); in execute() [all …]
|
D | PrepareTarget.java | 26 private final Run run; field in PrepareTarget 29 public PrepareTarget(Run run, Target target) { in PrepareTarget() argument 31 this.run = run; in PrepareTarget() 37 target.await(run.runnerDir.getParentFile().getParentFile()); in execute() 38 if (run.cleanBefore) { in execute() 39 target.rm(run.runnerDir); in execute() 41 target.mkdirs(run.runnerDir); in execute() 42 target.mkdirs(run.vogarTemp()); in execute() 43 target.mkdirs(run.dalvikCache()); in execute() 45 target.forwardTcp(run.firstMonitorPort + i); in execute() [all …]
|
/external/icu/icu4c/source/layoutex/ |
D | ParagraphLayout.cpp | 59 le_int32 style, run, runStyle; in StyleRuns() local 75 run = 0; in StyleRuns() 85 fRunLimits[run] = 0x7FFFFFFF; in StyleRuns() 89 if (styleRunArrays[style]->getLimit(currentRun[style]) < fRunLimits[run]) { in StyleRuns() 90 fRunLimits[run] = styleRunArrays[style]->getLimit(currentRun[style]); in StyleRuns() 98 if (styleRunArrays[style]->getLimit(currentRun[style]) == fRunLimits[run]) { in StyleRuns() 103 run += 1; in StyleRuns() 106 fRunCount = run; in StyleRuns() 379 le_int32 run, runStart; in ParagraphLayout() local 388 for (run = 0; run < fStyleRunCount; run += 1) { in ParagraphLayout() [all …]
|
/external/skia/src/core/ |
D | SkTextBlob.cpp | 210 static const RunRecord* Next(const RunRecord* run) { in Next() argument 211 return SkToBool(run->fFlags & kLast_Flag) ? nullptr : NextUnchecked(run); in Next() 240 static const RunRecord* NextUnchecked(const RunRecord* run) { in NextUnchecked() argument 242 reinterpret_cast<const uint8_t*>(run) in NextUnchecked() 243 + StorageSize(run->glyphCount(), run->textSize(), run->positioning())); in NextUnchecked() 303 const auto* run = RunRecord::First(this); in ~SkTextBlob() local 305 const auto* nextRun = RunRecord::Next(run); in ~SkTextBlob() 306 SkDEBUGCODE(run->validate((uint8_t*)this + fStorageSize);) in ~SkTextBlob() 307 run->~RunRecord(); in ~SkTextBlob() 308 run = nextRun; in ~SkTextBlob() [all …]
|
/external/swiftshader/third_party/LLVM/unittests/VMCore/ |
D | PassManagerTest.cpp | 49 static char run; member 53 run++; in runOnModule() 61 char ModuleNDNM::run=0; member in llvm::__anonc6654b070111::ModuleNDNM 65 static char run; member 69 run++; in runOnModule() 74 char ModuleNDM::run=0; member in llvm::__anonc6654b070111::ModuleNDM 78 static char run; member 82 run++; in runOnModule() 87 char ModuleNDM2::run=0; member in llvm::__anonc6654b070111::ModuleNDM2 91 static char run; member [all …]
|
/external/llvm/unittests/IR/ |
D | LegacyPassManagerTest.cpp | 52 static char run; member 56 run++; in runOnModule() 64 char ModuleNDNM::run=0; member in llvm::__anon4dffe3bf0111::ModuleNDNM 68 static char run; member 72 run++; in runOnModule() 77 char ModuleNDM::run=0; member in llvm::__anon4dffe3bf0111::ModuleNDM 81 static char run; member 85 run++; in runOnModule() 90 char ModuleNDM2::run=0; member in llvm::__anon4dffe3bf0111::ModuleNDM2 94 static char run; member [all …]
|
/external/autotest/client/common_lib/cros/ |
D | avahi_utils.py | 41 run = utils.run if host is None else host.run 42 existing_config = run('cat %s 2> /dev/null' % src_file).stdout 54 tmp_conf_file = run('mktemp -t avahi-conf.XXXX').stdout.strip() 60 run('cat <<EOF >%s\n%s\nEOF\n' % (tmp_conf_file, '\n'.join(lines))) 94 run = utils.run if host is None else host.run 98 run('start avahi %s' % env, ignore_status=False) 115 run = utils.run if host is None else host.run 116 run('stop avahi', ignore_status=ignore_status) 126 run = utils.run if host is None else host.run 131 run('rm %s' % conf) [all …]
|
/external/toolchain-utils/go/patch/ |
D | go3.patch | 7 -// run 23 …"", "if non empty, use 'go_target' to compile test files and 'go_target_exec' to run the binaries") 34 + run(cmd[0], cmd[1:]...) 36 + run("go_"+*target+"_exec", cmd...) 49 - run("go", "tool", "compile", "bug0.go") 50 - run("go", "tool", "compile", "bug1.go") 51 - run("go", "tool", "compile", "bug2.go") 52 - run(errchk, "go", "tool", "compile", "-e", "bug3.go") 53 - run("go", "tool", "link", "bug2.o") 54 - run(fmt.Sprintf(".%ca.out", filepath.Separator)) [all …]
|
/external/eigen/blas/ |
D | level2_impl.h | 15 …static void run(Index rows, Index cols,const Scalar *lhs, Index lhsStride, const Scalar *rhs, Inde… in run() function 21 <Index,Scalar,LhsMapper,StorageOrder,ConjugateLhs,Scalar,RhsMapper,ConjugateRhs>::run( in run() 32 (general_matrix_vector_product_wrapper<int,Scalar,ColMajor,false,false>::run), in EIGEN_BLAS_FUNC() 34 (general_matrix_vector_product_wrapper<int,Scalar,RowMajor,false,false>::run), in EIGEN_BLAS_FUNC() 36 (general_matrix_vector_product_wrapper<int,Scalar,RowMajor,Conj ,false>::run), in EIGEN_BLAS_FUNC() 91 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Upper|0, false,ColMajor>::run), in EIGEN_BLAS_FUNC() 93 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|0, false,RowMajor>::run), in EIGEN_BLAS_FUNC() 95 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|0, Conj, RowMajor>::run), in EIGEN_BLAS_FUNC() 98 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|0, false,ColMajor>::run), in EIGEN_BLAS_FUNC() 100 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Upper|0, false,RowMajor>::run), in EIGEN_BLAS_FUNC() [all …]
|