Home
last modified time | relevance | path

Searched refs:run (Results 1 – 25 of 5692) sorted by relevance

12345678910>>...228

/external/valgrind/none/tests/
Dunit_debuglog.c19 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/
DMakefile.am73 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 …]
DChangeLog28 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/
DDriver.java39 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 …]
/external/libcxx/test/libcxx/utilities/function.objects/func.require/
Dbullet_1_2_3.pass.cpp143 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/google-benchmark/src/
Dcsv_reporter.cc50 for (const auto& run : reports) { in ReportRuns() local
51 for (const auto& cnt : run.counters) { in ReportRuns()
69 for (const auto& run : reports) { in ReportRuns() local
70 for (const auto& cnt : run.counters) { in ReportRuns()
80 for (const auto& run : reports) { in ReportRuns() local
81 PrintRunData(run); in ReportRuns()
86 void CSVReporter::PrintRunData(const Run & run) { in PrintRunData() argument
91 std::string name = run.benchmark_name; in PrintRunData()
94 if (run.error_occurred) { in PrintRunData()
97 std::string msg = run.error_message; in PrintRunData()
[all …]
Djson_reporter.cc117 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/libcxx/utils/google-benchmark/src/
Dcsv_reporter.cc52 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 …]
Djson_reporter.cc117 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/
DDeviceRuntime.java41 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 …]
DHostRuntime.java43 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 File localTempDir = run.localDir(name); in installTasks()
72 result.add(createCreateDexJarTask(run.classpath, classpathElement, name, in installTasks()
[all …]
DInstallApkTask.java35 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()
74 File localTempDir = run.localDir(action.getName()); in createDex()
80 run.androidSdk.dex(run.multidex, dex, localTempDir, classesToDex, dependentCp); in createDex()
91 ((run.debugging) ? " android:debuggable=\"true\"" : "") + ">\n" + in createApk()
100 File androidManifestFile = run.localFile(action, "classes", "AndroidManifest.xml"); in createApk()
[all …]
DJackDexTask.java35 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/icu/icu4c/source/layoutex/
DParagraphLayout.cpp59 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/vogar/src/vogar/tasks/
DBuildActionTask.java51 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 …]
DRunActionTask.java47 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 …]
DPrepareTarget.java26 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/swiftshader/third_party/LLVM/unittests/VMCore/
DPassManagerTest.cpp49 static char run; member
53 run++; in runOnModule()
61 char ModuleNDNM::run=0; member in llvm::__anon6eb8bdc60111::ModuleNDNM
65 static char run; member
69 run++; in runOnModule()
74 char ModuleNDM::run=0; member in llvm::__anon6eb8bdc60111::ModuleNDM
78 static char run; member
82 run++; in runOnModule()
87 char ModuleNDM2::run=0; member in llvm::__anon6eb8bdc60111::ModuleNDM2
91 static char run; member
[all …]
/external/llvm/unittests/IR/
DLegacyPassManagerTest.cpp52 static char run; member
56 run++; in runOnModule()
64 char ModuleNDNM::run=0; member in llvm::__anone0c6d53e0111::ModuleNDNM
68 static char run; member
72 run++; in runOnModule()
77 char ModuleNDM::run=0; member in llvm::__anone0c6d53e0111::ModuleNDM
81 static char run; member
85 run++; in runOnModule()
90 char ModuleNDM2::run=0; member in llvm::__anone0c6d53e0111::ModuleNDM2
94 static char run; member
[all …]
/external/skia/src/core/
DSkTextBlob.cpp210 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/autotest/client/common_lib/cros/
Davahi_utils.py41 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/trappy/trappy/
Dplot_utils.py132 for run in runs:
133 if len(run.devfreq_in_power.data_frame) > 0:
155 for run in runs:
156 gov_dfr = run.thermal_governor.data_frame
168 run.thermal.plot_temperature(control_temperature=control_series,
169 ax=ax, legend_label=run.name,
172 run.thermal_governor.plot_temperature(ax=ax, legend_label=run.name)
199 for ax, run in zip(axis, runs):
200 run.plot_load(map_label, title=run.name, ax=ax[0])
201 run.plot_normalized_load(map_label, title=run.name, ax=ax[1])
[all …]
/external/toolchain-utils/go/patch/
Dgo3.patch7 -// 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/skia/infra/bots/recipe_modules/run/examples/
Dfull.py17 api.run(api.step, 'run %d' % i, cmd=['echo', str(i)])
23 api.run(api.step, 'fail', cmd=['false'])
26 api.run(api.step, 'fail again', cmd=['false'], abort_on_failure=False)
27 api.run(api.step, 'do a thing', cmd=['echo', 'do the thing'])
28 assert len(api.run.failed_steps) == 2
32 api.run.run_once(myfunc, api, i)
35 api.run.readfile('myfile.txt')
36 api.run.writefile('myfile.txt', 'contents')
37 api.run.rmtree('mydir')
41 api.run(api.step, 'env', cmd=['env'])
[all …]
/external/eigen/blas/
Dlevel2_impl.h15 …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 …]

12345678910>>...228