Searched refs:plot (Results 1 - 25 of 71) sorted by relevance

123

/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A DplotJitterEstimate.m9 plot(x, slopes(x, 1).*(framestats(x, 1) - framestats(x, 2)) + 3*sqrt(randJitters(x,2)), 'b'); title('Estimate ms');
10 plot(x, filtjitter, 'r');
11 plot(x, slopes(x, 1).*(framestats(x, 1) - framestats(x, 2)), 'g');
14 plot(x, slopes(x, 1)); title('Line slope');
16 %plot(x, slopes(x, 2)); title('Line offset');
18 plot(x, framestats); plot(x, framedata(x, 1)); title('frame size and average frame size');
20 plot(x, framedata(x, 2)); title('Delay');
23 plot(x, randJitters(x,1),'r');
24 plot(
[all...]
H A DplotReceiveTrace.m116 plot(x, packetTime(:,3) - firstTime - slope, 'b.');
125 plot(x, firstPacketTime(:,2) - firstTime - slope, 'b.');
134 plot(x, completeTime(:,3) - firstTime - slope, 'ks');
143 plot(x, decodeTime(:,2) - firstTime - slope, 'r.');
152 plot(x, decodeCompleteTime(:,4) - firstTime - slope, 'g.');
161 plot(x, renderTime(:,2) - firstTime - slope, 'c-');
168 plot(x, renderTime(:,2) - firstTime - slope - renderTime(:, 3) - renderTime(:, 5), 'c--');
175 plot(x, renderTime(:,2) - firstTime - slope - renderTime(:, 3) - renderTime(:, 5), 'b-');
178 %plot(x, 90*x, 'r-');
189 % %plot(completeT
[all...]
H A DplotTimingTest.m59 plot(timeStamps, decTime(:, 2), 'r');
60 plot(timeStamps, waitTime(:, 3), 'g');
61 plot(timeStamps(2:end), diff(renderTime(:, 2)), 'b');
/external/skia/src/gpu/
H A DGrAtlas.cpp65 // once the plot is nearly full we will revert to uploading each subimage individually
198 void GrAtlasMgr::moveToHead(GrPlot* plot) { argument
199 if (fPlotList.head() == plot) {
203 fPlotList.remove(plot);
204 fPlotList.addToHead(plot);
210 // iterate through entire plot list for this atlas, see if we can find a hole
213 GrPlot* plot = atlas->fPlots[i]; local
214 if (plot->addSubImage(width, height, image, loc)) {
215 this->moveToHead(plot);
216 return plot;
238 GrPlot* plot; local
255 removePlot(GrAtlas* atlas, const GrPlot* plot) argument
272 GrPlot* plot; local
287 GrPlot* plot; local
[all...]
H A DGrLayerCache.h22 // means the plot in which it resides and its bounds inside the plot.
28 void set(GrPlot* plot, const GrIRect16& bounds) { argument
29 fPlot = plot;
33 const GrPlot* plot() const { function in class:GrAtlasLocation
H A DGrTextStrike.cpp129 GrPlot* plot = atlasMgr->getUnusedPlot(); local
130 if (NULL == plot) {
133 plot->resetRects();
145 strikeToPurge->removePlot(plot);
273 void GrTextStrike::removePlot(const GrPlot* plot) { argument
276 if (plot == glyphArray[i]->fPlot) {
281 fAtlasMgr->removePlot(&fAtlas, plot);
317 GrPlot* plot = fAtlasMgr->addToAtlas(&fAtlas, glyph->width(), local
321 if (NULL == plot) {
325 glyph->fPlot = plot;
[all...]
H A DGrAtlas.h60 SkIPoint16 fOffset; // the offset of the plot in the backing texture
81 // remove reference to this plot
82 bool removePlot(GrAtlas* atlas, const GrPlot* plot);
84 // get a plot that's not being used by the current draw
85 // this allows us to overwrite this plot without flushing
95 void moveToHead(GrPlot* plot);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrAtlas.cpp67 // once the plot is nearly full we will revert to uploading each subimage individually
203 void GrAtlas::makeMRU(GrPlot* plot) { argument
204 if (fPlotList.head() == plot) {
208 fPlotList.remove(plot);
209 fPlotList.addToHead(plot);
215 // iterate through entire plot list for this atlas, see if we can find a hole
218 GrPlot* plot = usage->fPlots[i]; local
219 if (plot->addSubImage(width, height, image, loc)) {
220 this->makeMRU(plot);
221 return plot;
243 GrPlot* plot; local
261 RemovePlot(ClientPlotUsage* usage, const GrPlot* plot) argument
272 GrPlot* plot; local
287 GrPlot* plot; local
[all...]
H A DGrLayerCache.cpp34 // If a layer has a plot (i.e., is atlased) then it must point to
174 fPlotLocks[layer->plot()->id()]++;
186 GrPlot* plot = fAtlas->addToAtlas(&pictInfo->fPlotUsage, local
191 if (plot) {
197 layer->setPlot(plot);
199 fPlotLocks[layer->plot()->id()]++;
204 // plausibly atlas-able). See if a plot can be purged and try again.
231 const int plotID = layer->plot()->id();
244 GrAtlas::RemovePlot(&pictInfo->fPlotUsage, layer->plot());
282 if (layer->plot()) {
344 GrPlot* plot; local
359 purgePlot(GrPlot* plot) argument
395 GrPlot* plot; local
[all...]
H A DGrAtlas.h36 // This returns a plot ID unique to each plot in a given GrAtlas. They are
65 SkIPoint16 fOffset; // the offset of the plot in the backing texture
85 bool contains(const GrPlot* plot) const {
86 return fPlots.contains(const_cast<GrPlot*>(plot));
108 // remove reference to this plot
109 static void RemovePlot(ClientPlotUsage* usage, const GrPlot* plot);
111 // get a plot that's not being used by the current draw
112 // this allows us to overwrite this plot without flushing
134 void makeMRU(GrPlot* plot);
[all...]
H A DGrTextStrike.cpp136 GrPlot* plot = atlas->getUnusedPlot(); local
137 if (NULL == plot) {
140 plot->resetRects();
152 strikeToPurge->removePlot(plot);
280 void GrTextStrike::removePlot(const GrPlot* plot) { argument
283 if (plot == (*iter).fPlot) {
289 GrAtlas::RemovePlot(&fPlotUsage, plot);
339 GrPlot* plot = fAtlas->addToAtlas(&fPlotUsage, glyph->width(), local
343 if (NULL == plot) {
347 glyph->fPlot = plot;
[all...]
H A DGrLayerCache.h26 // plot may be used to store layers from multiple pictures.
46 // Atlased layers also get a pointer to the plot in which they reside.
131 void setPlot(GrPlot* plot) { argument
132 SkASSERT(NULL == plot || NULL == fPlot);
133 fPlot = plot;
135 GrPlot* plot() { return fPlot; } function in struct:GrCachedLayer
142 SkDEBUGCODE(const GrPlot* plot() const { return fPlot; }) function in struct:GrCachedLayer
161 // For atlased layers, fPlot stores the atlas plot in which the layer rests.
167 // For atlased layers, 'fLocked' is true if the layer is in a plot and
168 // actively required for rendering. If the layer is in a plot bu
[all...]
/external/fio/tools/
H A Dfio_generate_plots78 plot () { function
112 echo " $PLOT_TITLE ; $YAXIS ; $DEFAULT_OPTS ; show style lines ; $OUTPUT ; plot " $PLOT_LINE | $GNUPLOT -
117 # plot <sub title> <file name tag> <y axis label> <y axis scale>
120 plot "I/O Latency" lat "Time (msec)" 1000
121 plot "I/O Operations Per Second" iops "IOPS" 1
122 plot "I/O Submission Latency" slat "Time (μsec)" 1
123 plot "I/O Completion Latency" clat "Time (msec)" 1000
124 plot "I/O Bandwidth" bw "Throughput (KB/s)" 1
/external/chromium_org/third_party/skia/tools/
H A DStats.h43 plot.append(kBars[0]);
53 plot.append(kBars[bar]);
62 SkString plot; // A single-line bar chart (_not_ histogram) of the samples.
/external/eigen/bench/btl/data/
H A Dmk_gnuplot_script.sh9 echo plot \\ >> $WHAT.gnuplot
33 echo plot \\ >> $WHAT.gnuplot
48 echo plot \\ >> $WHAT.gnuplot
/external/chromium_org/tools/git/
H A Dgraph.sh38 plot(count ~ ago, type="l", main="$target", xlab='days ago', data=data)
/external/chromium_org/v8/tools/
H A Dplot-timer-events84 -- $@ $options 2>/dev/null > timer-events.plot
88 cat timer-events.plot
90 cat timer-events.plot | gnuplot > timer-events.png
93 rm -f timer-events.plot
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dtextblit.c55 static void plot (const int x, const int y, unsigned char *image, const int pitch) function
106 plot(y,x, image, pitch);
120 plot(x,y, image, pitch);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_textblit.c27 static void plot(int x, int y, unsigned char *image, int pitch) { function
101 plot(y, x, image, pitch);
111 plot(x, y, image, pitch);
/external/libvpx/libvpx/vp8/common/
H A Dtextblit.c55 static void plot (const int x, const int y, unsigned char *image, const int pitch) function
106 plot(y,x, image, pitch);
120 plot(x,y, image, pitch);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_textblit.c27 static void plot(int x, int y, unsigned char *image, int pitch) { function
101 plot(y, x, image, pitch);
111 plot(x, y, image, pitch);
/external/chromium_org/third_party/skia/bench/
H A DChartBench.cpp28 // Generates a path to stroke along the top of each plot and a fill path for the area below each
29 // plot. The fill path is bounded below by the bottomData plot points or a horizontal line at
37 SkPath* plot, SkPath* fill) {
38 plot->rewind();
40 plot->incReserve(topData.count());
52 plot->moveTo(x, topData[leftShift]);
56 plot->lineTo(x, topData[i + leftShift]);
62 plot->lineTo(x, topData[i]);
85 // A set of scrolling line plots with the area between each plot fille
32 gen_paths(const SkTDArray<SkScalar>& topData, const SkTDArray<SkScalar>* bottomData, SkScalar yBase, SkScalar xLeft, SkScalar xDelta, int leftShift, SkPath* plot, SkPath* fill) argument
[all...]
/external/chromium_org/third_party/skia/samplecode/
H A DSampleChart.cpp24 // Generates a path to stroke along the top of each plot and a fill path for the area below each
25 // plot. The fill path is bounded below by the bottomData plot points or a horizontal line at
33 SkPath* plot, SkPath* fill) {
34 plot->rewind();
36 plot->incReserve(topData.count());
48 plot->moveTo(x, topData[leftShift]);
52 plot->lineTo(x, topData[i + leftShift]);
58 plot->lineTo(x, topData[i]);
81 // A set of scrolling line plots with the area between each plot fille
28 gen_paths(const SkTDArray<SkScalar>& topData, const SkTDArray<SkScalar>* bottomData, SkScalar yBase, SkScalar xLeft, SkScalar xDelta, int leftShift, SkPath* plot, SkPath* fill) argument
[all...]
/external/chromium_org/v8/tools/profviz/
H A Dprofviz.js104 "plot",
121 this.plot.style.webkitFilter = "grayscale(1)";
129 this.plot.style.webkitFilter = "";
141 this.toggle("plot");
142 this.plot.src = "";
148 if (this.toggledisplay.next_mode == "plot") {
150 this.plot.style.display = "block";
154 this.toggledisplay.next_mode = "plot";
155 this.plot.style.display = "none";
157 this.toggledisplay.innerHTML = "Show plot";
[all...]
/external/skia/bench/
H A DChartBench.cpp28 // Generates a path to stroke along the top of each plot and a fill path for the area below each
29 // plot. The fill path is bounded below by the bottomData plot points or a horizontal line at
37 SkPath* plot, SkPath* fill) {
38 plot->rewind();
40 plot->incReserve(topData.count());
52 plot->moveTo(x, topData[leftShift]);
56 plot->lineTo(x, topData[i + leftShift]);
62 plot->lineTo(x, topData[i]);
85 // A set of scrolling line plots with the area between each plot fille
32 gen_paths(const SkTDArray<SkScalar>& topData, const SkTDArray<SkScalar>* bottomData, SkScalar yBase, SkScalar xLeft, SkScalar xDelta, int leftShift, SkPath* plot, SkPath* fill) argument
[all...]

Completed in 575 milliseconds

123