HomeSort by relevance Sort by last modified time
    Searched refs:counts (Results 1 - 25 of 373) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
inspector_memory_unittest.py 23 counts = self._tab.dom_stats
24 self.assertEqual(counts['document_count'], 1)
25 self.assertEqual(counts['node_count'], 14)
26 self.assertEqual(counts['event_listener_count'], 2)
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_prob.c 36 const unsigned int *counts,
42 ? counts[-l]
43 : tree_merge_probs_impl(l, tree, pre_probs, counts,
47 ? counts[-r]
48 : tree_merge_probs_impl(r, tree, pre_probs, counts,
57 const unsigned int *counts, unsigned int count_sat,
59 tree_merge_probs_impl(0, tree, pre_probs, counts, count_sat,
vp9_entropymode.c 345 const vp9_prob *pre_probs, const unsigned int *counts,
347 vp9_tree_merge_probs(tree, pre_probs, counts, COUNT_SAT, MAX_UPDATE_FACTOR,
355 const FRAME_COUNTS *counts = &cm->counts; local
359 counts->intra_inter[i]);
362 counts->comp_inter[i]);
365 counts->comp_ref[i]);
369 counts->single_ref[i][j]);
373 counts->inter_mode[i], fc->inter_mode_probs[i]);
377 counts->y_mode[i], fc->y_mode_prob[i])
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_prob.c 36 const unsigned int *counts,
42 ? counts[-l]
43 : tree_merge_probs_impl(l, tree, pre_probs, counts,
47 ? counts[-r]
48 : tree_merge_probs_impl(r, tree, pre_probs, counts,
57 const unsigned int *counts, unsigned int count_sat,
59 tree_merge_probs_impl(0, tree, pre_probs, counts, count_sat,
vp9_entropymode.c 345 const vp9_prob *pre_probs, const unsigned int *counts,
347 vp9_tree_merge_probs(tree, pre_probs, counts, COUNT_SAT, MAX_UPDATE_FACTOR,
355 const FRAME_COUNTS *counts = &cm->counts; local
359 counts->intra_inter[i]);
362 counts->comp_inter[i]);
365 counts->comp_ref[i]);
369 counts->single_ref[i][j]);
373 counts->inter_mode[i], fc->inter_mode_probs[i]);
377 counts->y_mode[i], fc->y_mode_prob[i])
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_prob.c 36 const unsigned int *counts,
42 ? counts[-l]
43 : tree_merge_probs_impl(l, tree, pre_probs, counts,
47 ? counts[-r]
48 : tree_merge_probs_impl(r, tree, pre_probs, counts,
57 const unsigned int *counts, unsigned int count_sat,
59 tree_merge_probs_impl(0, tree, pre_probs, counts, count_sat,
vp9_entropymode.c 345 const vp9_prob *pre_probs, const unsigned int *counts,
347 vp9_tree_merge_probs(tree, pre_probs, counts, COUNT_SAT, MAX_UPDATE_FACTOR,
355 const FRAME_COUNTS *counts = &cm->counts; local
359 counts->intra_inter[i]);
362 counts->comp_inter[i]);
365 counts->comp_ref[i]);
369 counts->single_ref[i][j]);
373 counts->inter_mode[i], fc->inter_mode_probs[i]);
377 counts->y_mode[i], fc->y_mode_prob[i])
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_setcomps.py 143 counts = [None] * 5
144 for i in range(len(counts)):
147 counts[i] = sys.gettotalrefcount()
148 print(counts)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_setcomps.py 143 counts = [None] * 5
144 for i in range(len(counts)):
147 counts[i] = sys.gettotalrefcount()
148 print(counts)
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/bin/
syscall-counts-report 2 # description: system-wide syscall counts
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts.py $comm
syscall-counts-by-pid-report 2 # description: system-wide syscall counts, by pid
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts-by-pid.py $comm
  /external/smack/src/org/xbill/DNS/
Header.java 19 private int [] counts; field in class:Header
28 counts = new int[4];
57 for (int i = 0; i < counts.length; i++)
58 counts[i] = in.readU16();
74 for (int i = 0; i < counts.length; i++)
75 out.writeU16(counts[i]);
212 counts[field] = value;
217 if (counts[field] == 0xFFFF)
220 counts[field]++;
225 if (counts[field] == 0
    [all...]
  /external/strace/
count.c 46 #define counts (countv[current_personality]) macro
61 if (!counts) {
62 counts = calloc(nsyscalls, sizeof(*counts));
63 if (!counts)
66 cc = &counts[scno];
111 return -tv_cmp(&counts[*((int *) a)].time,
112 &counts[*((int *) b)].time);
125 int m = counts[*((int *) a)].calls;
126 int n = counts[*((int *) b)].calls
    [all...]
  /external/chromium_org/third_party/smhasher/src/
AvalancheTest.cpp 37 double maxBias ( std::vector<int> & counts, int reps )
41 for(int i = 0; i < (int)counts.size(); i++)
43 double c = double(counts[i]) / double(reps);
Bitslice.cpp 83 std::vector<int> counts(slices.size(),0);
87 counts[i] = countbits(slices[i]);
103 if((d < counts[i]) && (d < counts[j]))
105 if(counts[i] < counts[j])
111 else if(d < counts[i])
  /external/chromium_org/third_party/brotli/src/brotli/enc/
entropy_encode.h 29 // The (data,length) contains the population counts.
41 // Change the population counts in a way that the consequent
46 // counts contains the population counts.
47 int OptimizeHuffmanCountsForRle(int length, int* counts);
90 int counts[kSize]; local
91 memcpy(counts, &histogram.data_[0], sizeof(counts[0]) * kSize);
92 OptimizeHuffmanCountsForRle(alphabet_size, counts);
93 CreateHuffmanTree(counts, alphabet_size, tree_limit, &code->depth_[0])
    [all...]
entropy_encode.cc 79 // especially when population counts are longer than 2**tree_limit, but
245 int OptimizeHuffmanCountsForRle(int length, int* counts) {
256 if (counts[length - 1] != 0) {
257 // Now counts[0..length - 1] does not have trailing zeros.
265 if (counts[i] != 0) {
267 if (smallest_nonzero > counts[i]) {
268 smallest_nonzero = counts[i];
280 if (counts[i - 1] != 0 && counts[i] == 0 && counts[i + 1] != 0)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactsSectionIndexer.java 26 * their respective counts.
39 * @param counts a non-null array of the same size as <code>sections</code>
41 public ContactsSectionIndexer(String[] sections, int[] counts) {
42 if (sections == null || counts == null) {
46 if (sections.length != counts.length) {
48 "The sections and counts arrays must have the same length");
51 // TODO process sections/counts based on current locale and/or specific section titles
54 mPositions = new int[counts.length];
56 for (int i = 0; i < counts.length; i++) {
64 position += counts[i]
    [all...]
  /external/oprofile/libpp/
symbol.cpp 35 bool has_sample_counts(count_array_t const & counts, size_t lo, size_t hi)
38 if (counts[i] != 0)
  /external/chromium_org/chrome/browser/profiles/
profile_metrics.cc 58 bool CountProfileInformation(ProfileManager* manager, ProfileCounts* counts) {
61 counts->total = number_of_profiles;
73 counts->unused++;
76 counts->supervised++;
78 counts->signedin++;
80 counts->gaia_icon++;
147 ProfileCounts counts; local
148 if (CountProfileInformation(manager, &counts)) {
149 int limited_total = counts.total;
150 int limited_signedin = counts.signedin
162 ProfileCounts counts; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
rate_hist.h 31 void show_q_histogram(const int counts[64], int max_buckets);
  /external/libvpx/libvpx/
rate_hist.h 31 void show_q_histogram(const int counts[64], int max_buckets);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
rate_hist.h 31 void show_q_histogram(const int counts[64], int max_buckets);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
manual.js 22 var counts = {passed: 0, failed: 0};
31 counts.passed += run.tests[i].success ? 1 : 0;
32 counts.failed += run.tests[i].success ? 0 : 1;
49 passed.textContent = counts.passed;
50 passed.setAttribute('class', counts.passed ? 'passed' : 'passed none');
51 failed.textContent = counts.failed;
52 failed.setAttribute('class', counts.failed ? 'failed' : 'failed none');
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
open-syscall.c 41 if (evsel->counts->cpu[0].val != nr_open_calls) {
43 nr_open_calls, evsel->counts->cpu[0].val);

Completed in 992 milliseconds

1 2 3 4 5 6 7 8 91011>>