HomeSort by relevance Sort by last modified time
    Searched full:counts (Results 251 - 275 of 2525) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/test/functional/media/
media_basic_playback.py 63 counts = [(item, events.count(item)) for item in sorted(set(events))]
68 self.assertEqual(counts, _EXPECTED_EVENTS_0)
70 self.assertEqual(counts, _EXPECTED_EVENTS_n)
  /external/chromium_org/tools/
multi-process-rss.py 6 # Counts a resident set size (RSS) of multiple processes without double-counts.
17 # The command line above counts the RSS of 1) process 12345, 2) process 23456
  /external/chromium_org/ui/aura/test/
test_window_delegate.h 121 // Returns the counts of mouse motion events in the
125 // Returns the counts of mouse button events in the
129 // Returns the counts of key events in the form of
  /external/oprofile/libpp/
callgraph_container.cpp 77 return lhs.sample.counts[0] < rhs.sample.counts[0];
84 return rhs.sample.counts[0] < lhs.sample.counts[0];
228 sym.sample.counts = self->sample.counts;
312 sym.total_callee_count += self.sample.counts;
323 while (cit != cend && op_ratio(cit->sample.counts[0],
333 while (cit != cend && op_ratio(cit->sample.counts[0],
354 if (op_ratio(sym.sample.counts[0], total[0]) < threshold
    [all...]
symbol_container.cpp 33 symbol->sample.counts += symb.sample.counts;
  /external/chromium/webkit/glue/
site_isolation_metrics.cc 108 // For comparison, we keep counts of:
113 // - Counts for MIME types of interest
114 // - Counts of those MIME types that carry CORS headers
115 // - Counts of mislabeled text/html responses (without CORS)
117 // - Counts of verified text/html responses (without CORS)
118 // - Counts of XML/JSON responses (without CORS)
  /external/chromium_org/base/metrics/
sample_vector_unittest.cc 182 vector<HistogramBase::Count> counts(3);
183 counts[0] = 1;
184 counts[1] = 0; // Iterator will bypass this empty bucket.
185 counts[2] = 2;
187 // BucketRanges can have larger size than counts.
188 SampleVectorIterator it(&counts, &ranges);
histogram_samples.h 45 // Based on |op| type, add or subtract sample counts data from the iterator.
57 // this count to the sum of the counts (TotalCount() function), and detect
  /external/chromium_org/ppapi/api/
ppb_audio_config.idl 102 * smaller frame counts will yield lower latency, but higher CPU utilization.
107 * Sample counts less than
130 * smaller frame counts will yield lower latency, but higher CPU utilization.
132 * Supported sample frame counts will vary by hardware and system (consider
134 * audio workstation). Sample counts less than
194 * RecommendSampleFrameCount() for more on sample frame counts.
  /external/chromium_org/chrome/browser/autocomplete/
bookmark_provider.h 21 // titles, URLs, and typed and visit counts of the bookmarks are not currently
26 // and visit counts and last visit dates, etc. into consideration while scoring.
  /external/chromium_org/ppapi/tests/
test_audio_config.cc 46 // Include some "okay-looking" frame counts; check their validity below.
89 // Test invalid frame counts.
  /external/chromium_org/third_party/re2/re2/testing/
regexp_test.cc 14 // Test that overflowed ref counts work.
27 // Depends on overflowed ref counts working.
  /external/chromium_org/tools/gn/
tokenizer.h 21 // Counts lines in the given buffer (the first line is "1") and returns
30 // Returns true if the given offset of the string piece counts as a newline.
  /external/linux-tools-perf/scripts/python/
failed-syscalls-by-pid.py 1 # failed system call counts, by pid
18 usage = "perf script -s syscall-counts-by-pid.py [comm|pid]\n";
syscall-counts-by-pid.py 1 # system call counts, by pid
17 usage = "perf script -s syscall-counts-by-pid.py [comm]\n";
  /external/regex-re2/re2/testing/
regexp_test.cc 14 // Test that overflowed ref counts work.
27 // Depends on overflowed ref counts working.
  /external/svox/pico/lib/
picorsrc.h 173 /* create voice, given a voice name. the corresponding lock counts are incremented */
176 /* dispose voice. the corresponding lock counts are decremented. */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
collections.py 383 or multiset. Elements are stored as dictionary keys and their counts
394 >>> sum(c.values()) # total of all counts
399 >>> for elem in 'shazam': # update counts from an iterable
435 of elements to their counts.
452 '''List the n most common elements and their counts from the most
453 common to the least. If n is None, then list all element counts.
496 '''Like dict.update() but add counts instead of replacing them.
509 # replace behavior results in the some of original untouched counts
510 # being mixed-in with all of the other counts for a mismash that
513 # and outputs are allowed to contain zero and negative counts
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
collections.py 383 or multiset. Elements are stored as dictionary keys and their counts
394 >>> sum(c.values()) # total of all counts
399 >>> for elem in 'shazam': # update counts from an iterable
435 of elements to their counts.
452 '''List the n most common elements and their counts from the most
453 common to the least. If n is None, then list all element counts.
496 '''Like dict.update() but add counts instead of replacing them.
509 # replace behavior results in the some of original untouched counts
510 # being mixed-in with all of the other counts for a mismash that
513 # and outputs are allowed to contain zero and negative counts
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodframe.c 476 ++cm->counts.partition[ctx][p];
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_entropymv.c 178 void vp9_inc_mv(const MV *mv, nmv_context_counts *counts) {
179 if (counts != NULL) {
181 ++counts->joints[j];
184 inc_mv_component(mv->row, &counts->comps[0], 1, 1);
188 inc_mv_component(mv->col, &counts->comps[1], 1, 1);
198 const unsigned int *counts, vp9_prob *probs) {
199 tree_merge_probs(tree, pre_probs, counts, MV_COUNT_SAT, MV_MAX_UPDATE_FACTOR,
208 const nmv_context_counts *counts = &cm->counts.mv; local
210 adapt_probs(vp9_mv_joint_tree, pre_fc->joints, counts->joints, fc->joints)
    [all...]
vp9_entropymode.c 357 const vp9_prob *pre_probs, const unsigned int *counts,
359 tree_merge_probs(tree, pre_probs, counts, COUNT_SAT, MAX_UPDATE_FACTOR,
367 const FRAME_COUNTS *counts = &cm->counts; local
371 counts->intra_inter[i]);
374 counts->comp_inter[i]);
377 counts->comp_ref[i]);
381 counts->single_ref[i][j]);
385 counts->inter_mode[i], fc->inter_mode_probs[i]);
389 counts->y_mode[i], fc->y_mode_prob[i])
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
display-profiler-output 51 @topCounts = [] # "source" counts
52 @bottomCounts = {} # "machine" counts, maps compilations to counts
98 | counts |
100 counts.each {
112 | compilation, counts |
115 counts.each {
478 # Figure out how many columns we need for the code block names, and for counts
497 countCols = [maxCountDigits * $engines.size, "Source Counts".size].max
504 machineCountCols = [maxCountDigits * $engines.size, "Machine Counts".size].ma
    [all...]
  /external/blktrace/btreplay/
Makefile 3 # COUNT_IOS - Counts struct io's left at end
  /external/chromium/net/disk_cache/
stats_histogram.h 28 Counts* GetCounts() {

Completed in 273 milliseconds

<<11121314151617181920>>