/external/eigen/bench/btl/data/ |
mk_gnuplot_script.sh | 5 cat $WHAT.hh > $WHAT.gnuplot 9 echo plot \\ >> $WHAT.gnuplot 23 echo "'"$FILE"'" title "'"$TITLE"'" ",\\" >> $WHAT.gnuplot 27 echo "'"$LAST"'" title "'"$TITLE"'" >> $WHAT.gnuplot 29 #echo set term postscript color >> $WHAT.gnuplot 30 #echo set output "'"$WHAT.ps"'" >> $WHAT.gnuplot 31 echo set term pbm small color >> $WHAT.gnuplot 32 echo set output "'"$WHAT.ppm"'" >> $WHAT.gnuplot 33 echo plot \\ >> $WHAT.gnuplot 40 echo "'"$FILE"'" title "'"$TITLE"'" ",\\" >> $WHAT.gnuplot [all...] |
mk_new_gnuplot.sh | 5 cat ../gnuplot_common_settings.hh > ${WHAT}.gnuplot 7 echo "set title " `grep ${WHAT} ../action_settings.txt | head -n 1 | cut -d ";" -f 2` >> $WHAT.gnuplot 8 echo "set xlabel " `grep ${WHAT} ../action_settings.txt | head -n 1 | cut -d ";" -f 3` " offset 0,0" >> $WHAT.gnuplot 9 echo "set xrange [" `grep ${WHAT} ../action_settings.txt | head -n 1 | cut -d ";" -f 4` "]" >> $WHAT.gnuplot 13 echo "set xrange [2:16]" >> $WHAT.gnuplot 14 echo "set nologscale" >> $WHAT.gnuplot 21 echo set term postscript color rounded enhanced >> $WHAT.gnuplot 22 echo set output "'"../${DIR}/$WHAT.ps"'" >> $WHAT.gnuplot 24 # echo set term svg color rounded enhanced >> $WHAT.gnuplot 25 # echo "set terminal svg enhanced size 1000 1000 fname \"Times\" fsize 36" >> $WHAT.gnuplot [all...] |
mk_mean_script.sh | 35 rm -f *.gnuplot
|
/external/v8/tools/ |
draw_instruction_graph.sh | 35 gnuplot=/usr/bin/gnuplot 78 # Check for gnuplot, and warn if not available. 79 if [ ! -e $gnuplot ]; then 80 echo "Can't find gnuplot at $gnuplot." 81 echo "Gnuplot version 4.6.3 or later required." 85 # Initialise gnuplot, and give it the data to draw. 86 echo | $gnuplot <<EOF
|
gc-nvp-trace-processor.py | 33 # run with flags --trace-gc --trace-gc-nvp. Relies on gnuplot for actual 49 def gnuplot(script): function 50 gnuplot = subprocess.Popen(["gnuplot"], stdin=subprocess.PIPE) 51 gnuplot.stdin.write(script) 52 gnuplot.stdin.close() 53 gnuplot.wait() 181 gnuplot(script)
|
plot-timer-events | 90 cat timer-events.plot | gnuplot > timer-events.png
|
/external/autotest/tko/ |
plotgraph | 59 open (GNUPLOT, "> ${file}.gnuplot"); 61 print GNUPLOT "set terminal png size $x_res,$y_res\n"; 62 print GNUPLOT "set key below\n"; 63 print GNUPLOT "set title \"$title\"\n"; 64 print GNUPLOT "set xlabel \"Kernel\"\n"; 65 print GNUPLOT "set ylabel \"${y_label}\"\n"; 66 print GNUPLOT "set output \"${file}.png\"\n"; 67 print GNUPLOT "set style data yerrorlines\n"; 68 print GNUPLOT "set grid\n" [all...] |
machine_test_attribute_graph.cgi | 33 graph = plotgraph.gnuplot(title, 'Kernel', key, xsort = sort_kernels)
|
machine_aggr.cgi | 59 graph = plotgraph.gnuplot(title, 'Kernel', 'normalized throughput (%)', xsort = sort_kernels, size = "600,500")
|
plotgraph.py | 4 Class to draw gnuplot graphs for autotest performance analysis. 22 class gnuplot: class in inherits: 38 # prepend 2 blanks to work around gnuplot bug 72 p = Popen("/usr/bin/gnuplot", stdin = subprocess.PIPE)
|
nightly.py | 105 # arrange by plotline (ie platform) for gnuplot 399 graph = plotgraph.gnuplot(title, xlegend, ylegend, size=size, 415 graph = plotgraph.gnuplot(title, xlegend, ylegend, size=size) [all...] |
/external/fio/tools/ |
fio_generate_plots | 5 # benchmark utiliy. I only retained how GNUplot is used to generate graphs, as 12 # This script supports GNUPLOT 4.4 and higher. 24 GNUPLOT=$(which gnuplot) 25 if [ ! -x "$GNUPLOT" ] 27 echo You need gnuplot installed to generate graphs 112 echo " $PLOT_TITLE ; $YAXIS ; $DEFAULT_OPTS ; show style lines ; $OUTPUT ; plot " $PLOT_LINE | $GNUPLOT -
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
plot_dynamics.sh | 87 gen_gnuplot_input | gnuplot -persist
|
plot_bars.sh | 286 gen_gnuplot_bar_input | gnuplot -persist
|
/external/autotest/client/tests/iozone/ |
postprocessing.py | 6 graphs. The graph generation functionality depends on gnuplot, and if it 335 Plots graphs based on the results of an IOzone run. Uses gnuplot to 341 self.gnuplot = os_dep.command("gnuplot") 343 logging.error("Command gnuplot not found, disabling graph " 363 Creates data file without headers for gnuplot consumption. 382 For each one of the throughput parameters, generate a set of gnuplot 403 utils.system("%s %s" % (self.gnuplot, commands_path)) 411 For each one of the throughput parameters, generate a set of gnuplot 442 utils.system("%s %s" % (self.gnuplot, commands_path) [all...] |
/external/v8/tools/profviz/ |
worker.js | 158 time("Running gnuplot (" + objects + " objects)",
|
profviz.js | 38 "gnuplot-4.6.3-emscripten.js"
|
composer.js | 381 // to make it easier for gnuplot.
|
gnuplot-4.6.3-emscripten.js | 29 // This Javascript port of gnuplot 4.6.3 [1] has been generated using 31 // whose changes to gnuplot's source files can be found below [4] in 32 // accordance to gnuplot's copyright. 34 // [1] http://www.gnuplot.info/ 36 // [3] https://github.com/chhu/gnuplot-JS 37 // [4] Patch to gnuplot 4.6.3 38 // --- gnuplot-4.6.3/src/axis.c 2012-11-08 18:13:08.000000000 +0100 39 // +++ gnuplot-4.6.3_mod/src/axis.c 2013-05-11 11:08:08.791587160 +0200 [all...] |
/external/fio/tools/plot/ |
fio2gnuplot | 52 compare=open(gnuplot_output_dir + 'compare.gnuplot','w') 69 shutil.copy(gnuplot_output_dir+'compare.gnuplot',gnuplot_output_dir+compare_raw_filename+".gnuplot") 70 shutil.copy(gnuplot_output_dir+'compare.gnuplot',gnuplot_output_dir+compare_smooth_filename+".gnuplot") 71 shutil.copy(gnuplot_output_dir+'compare.gnuplot',gnuplot_output_dir+compare_trend_filename+".gnuplot") 72 temporary_files.append(gnuplot_output_dir+compare_raw_filename+".gnuplot") 73 temporary_files.append(gnuplot_output_dir+compare_smooth_filename+".gnuplot") 74 temporary_files.append(gnuplot_output_dir+compare_trend_filename+".gnuplot") [all...] |
/external/blktrace/btt/doc/ |
btt.tex | [all...] |