/external/antlr/antlr-3.4/runtime/Perl5/ |
Makefile.PL | 8 ctags -f tags --recurse --totals \
|
/external/chromium_org/tools/perf/benchmarks/ |
sunspider.py | 25 totals = [] 34 totals.append(total) 37 results.Add('Total', 'ms', totals)
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FEConvolveMatrix.cpp | 232 ALWAYS_INLINE void setDestinationPixels(Uint8ClampedArray* image, int& pixel, float* totals, float divisor, float bias, Uint8ClampedArray* src) 234 unsigned char maxAlpha = preserveAlphaValues ? 255 : clampRGBAValue(totals[3] / divisor + bias); 236 image->set(pixel++, clampRGBAValue(totals[i] / divisor + bias, maxAlpha)); 247 // Incorrectly diagnosing overwrite of stack in |totals| due to |preserveAlphaValues|. 261 float totals[3 + (preserveAlphaValues ? 0 : 1)]; local 276 totals[0] = 0; 277 totals[1] = 0; 278 totals[2] = 0; 280 totals[3] = 0; 283 totals[0] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(kernelPixe (…) 345 float totals[3 + (preserveAlphaValues ? 0 : 1)]; local [all...] |
/external/chromium_org/native_client_sdk/src/libraries/xray/ |
report.c | 102 struct XRayTotal* totals; local 103 totals = (struct XRayTotal*) 124 totals[counter].index = counter; 125 totals[counter].frame = frame; 126 totals[counter].ticks = total_ticks; 137 qsort(totals, counter, sizeof(struct XRayTotal), qcompare); 146 int index = totals[i].index; 147 int frame = totals[i].frame;
|
/external/chromium_org/tools/telemetry/telemetry/core/timeline/ |
counter.py | 58 self.totals = [] 81 self.totals = [] 91 self.totals.append(total)
|
trace_event_importer_unittest.py | 490 self.assertEqual([0, 10, 0], ctr.totals) 562 3.1, 3.6], ctr.totals) 586 # We can't check ctr.totals here because it can change depending on [all...] |
/external/chromium_org/tools/perf/measurements/ |
loading_measurement_analyzer.py | 30 self.totals = collections.defaultdict(list) 68 self.totals[key].append((value, row['url'])) 74 self.totals['Network (ms)'].append((network_time, row['url'])) 95 for key, values in self.totals.iteritems(): 131 for key, values in sorted(self.totals.iteritems(), reverse=True,
|
/external/smack/src/org/jivesoftware/smack/util/ |
DNSUtil.java | 184 int[] totals = new int[bucket.size()]; local 196 totals[count] = running_total; 207 selectedPos = bisect(totals, rnd);
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/ |
options.js | 428 var totals = {}; 522 // Compute totals based on a data set. 527 totals.mean += obj.mean; 528 totals.paintMean += obj.paintMean; 529 totals.startLoadMean += obj.startLoadMean; 530 totals.commitLoadMean += obj.commitLoadMean; 531 totals.docLoadMean += obj.docLoadMean; 539 totals = {}; 540 totals.mean = 0; 541 totals.paintMean = 0 [all...] |
/external/valgrind/main/callgrind/ |
callgrind_control.in | 359 %totals = (); 390 $totals{$1} = line_to_CC($2); 427 $totals_width = compute_CC_col_widths(values %totals); 428 print "\n Totals:"; 433 print_CC($totals{$tid}, $totals_width);
|
callgrind_annotate.in | 85 # Totals for each function, for overall summary. 126 # Print out the function totals sorted by these events, eg. (D,C). 158 # Inclusive totals for each function, for overall summary. 672 } elsif (s/^totals:\s+//) { 699 # Correct inclusive totals 757 # Print summary and sorted function totals 839 # Prints summary and function totals (with separate column widths, so that 858 print(" PROGRAM TOTALS\n"); [all...] |
/external/chromium_org/tools/perf/metrics/ |
timeline.py | 90 total = sum(counter.totals) 92 results.Add(counter_name + '_avg', 'count', total / len(counter.totals))
|
/packages/apps/Email/src/com/android/email/provider/ |
ContentCache.java | 812 Statistics totals = new Statistics("Totals"); local 817 totals.addCacheStatistics(cache); 820 LogUtils.d(totals.mName, totals.toString());
|
/external/elfutils/src/ |
size.c | 83 { "totals", 't', NULL, 0, N_("Display the total sizes (bsd only)"), 0 }, 159 static bool totals; variable 207 if (totals && format == format_bsd && totals_class != 0) 284 totals = true; 607 gettext ("(TOTALS)\n"));
|
/packages/apps/Settings/src/com/android/settings/applications/ |
ProcessStatsUi.java | 451 ProcessStats.ProcessDataCollection totals = new ProcessStats.ProcessDataCollection( local 461 procs.add(new ProcStatsEntry(rawProcs.get(i), totals)); 484 ent = new ProcStatsEntry(proc, st.mPackageName, totals, mUseUss, 535 ProcStatsEntry ent = new ProcStatsEntry(st, totals, mUseUss, 576 proc.evaluateTargetPackage(pm, mStats, totals, sEntryCompare, mUseUss,
|
ProcStatsEntry.java | 102 ProcessStats.ProcessDataCollection totals, Comparator<ProcStatsEntry> compare, 126 subProcs.add(new ProcStatsEntry(pkgProc, pkgState.mPackageName, totals, useUss,
|
/packages/experimental/procstatlog/ |
procstatreport.py | 465 totals = [sum(ops.get(var, {}).values()) for var in yaffs_vars] 466 if not sum(totals): continue 474 values.update(zip(yaffs_vars, totals))
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
html.py | 219 totals = sum([f['nums'] for f in files])
|
/external/chromium/base/ |
tracked_objects.cc | 237 Aggregation totals; local 239 totals.AddDeathSnapshot(match_array[i]); 242 totals.Write(output); [all...] |
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/ |
progress_event_listener.js | 147 // will trigger a different series of progress events with different totals.
|
/external/chromium_org/third_party/sqlite/src/src/ |
main.c | 892 static const u8 totals[] = local 902 prior = totals[count]; 905 prior = totals[NDELAY-1] + delay*(count-(NDELAY-1)); [all...] |
/frameworks/base/core/java/com/android/internal/app/ |
ProcessStats.java | 759 ProcessDataCollection totals = new ProcessDataCollection(screenStates, local [all...] |
/external/chromium_org/chrome/browser/resources/profiler/ |
profiler.js | 214 * numeric fields, and then dividing the totals. 1029 // them using the diffed totals. [all...] |
/external/chromium-trace/ |
script.js | [all...] |