Searched refs:counts (Results 76 - 100 of 234) sorted by relevance

12345678910

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_tokenize.c266 unsigned int *counts) {
272 ++counts[token];
279 unsigned int *counts) {
284 ++counts[token];
313 unsigned int (*const counts)[COEFF_CONTEXTS][ENTROPY_TOKENS] =
318 cpi->common.counts.eob_branch[tx_size][type][ref];
351 counts[band[c]][pt]);
365 counts[band[c]][pt]);
374 counts[band[c]][pt]);
418 cm->counts
263 add_token(TOKENEXTRA **t, const vp9_prob *context_tree, int16_t extra, uint8_t token, uint8_t skip_eob_node, unsigned int *counts) argument
275 add_token_no_extra(TOKENEXTRA **t, const vp9_prob *context_tree, uint8_t token, uint8_t skip_eob_node, unsigned int *counts) argument
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_tokenize.c182 unsigned int *counts) {
188 ++counts[token];
195 unsigned int *counts) {
200 ++counts[token];
229 unsigned int (*const counts)[COEFF_CONTEXTS][ENTROPY_TOKENS] =
234 cpi->common.counts.eob_branch[tx_size][type][ref];
255 counts[band[c]][pt]);
269 counts[band[c]][pt]);
279 counts[band[c]][pt]);
320 cm->counts
179 add_token(TOKENEXTRA **t, const vp9_prob *context_tree, int16_t extra, uint8_t token, uint8_t skip_eob_node, unsigned int *counts) argument
191 add_token_no_extra(TOKENEXTRA **t, const vp9_prob *context_tree, uint8_t token, uint8_t skip_eob_node, unsigned int *counts) argument
[all...]
/external/chromium_org/extensions/renderer/
H A Devent_bindings.cc39 // A map of extension IDs to listener counts for that extension.
50 // A map of extension IDs to filtered listener counts for that extension.
93 FilteredEventListenerCounts& counts = local
95 FilteredEventListenerCounts::iterator it = counts.find(event_name);
96 if (it == counts.end())
97 counts[event_name].reset(new ValueCounter);
99 int result = counts[event_name]->Add(*filter);
108 FilteredEventListenerCounts& counts = local
110 FilteredEventListenerCounts::iterator it = counts.find(event_name);
111 if (it == counts
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dopen-syscall-all-cpus.c70 * Here we need to explicitely preallocate the counts, as if
94 if (evsel->counts->cpu[cpu].val != expected) {
96 expected, cpus->map[cpu], evsel->counts->cpu[cpu].val);
/external/oprofile/libpp/
H A Dsymbol.h29 /// for storing sample counts
57 count_array_t counts; member in struct:sample_entry
101 * the sample counts replaced with the relevant arc counts, whilst
142 bool has_sample_counts(count_array_t const & counts, size_t lo, size_t hi);
H A Dcallgraph_container.cpp77 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[
[all...]
H A Dsymbol_container.cpp33 symbol->sample.counts += symb.sample.counts;
/external/valgrind/main/memcheck/tests/
H A Ddescribe-block.stderr.exp14 For counts of detected and suppressed errors, rerun with: -v
H A Daddressable.stderr.exp9 For counts of detected and suppressed errors, rerun with: -v
38 For counts of detected and suppressed errors, rerun with: -v
47 For counts of detected and suppressed errors, rerun with: -v
61 For counts of detected and suppressed errors, rerun with: -v
80 For counts of detected and suppressed errors, rerun with: -v
90 For counts of detected and suppressed errors, rerun with: -v
H A Dpartiallydefinedeq.stderr.exp17 For counts of detected and suppressed errors, rerun with: -v
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dbitmaptools.cc143 // These counts are in bytes.
178 int counts[kLength] = {}; local
186 ++(counts[256 * 0 + pixel[0]]);
187 ++(counts[256 * 1 + pixel[1]]);
188 ++(counts[256 * 2 + pixel[2]]);
192 WriteResponse(counts, sizeof(counts));
/external/deqp/modules/gles3/functional/
H A Des3fVertexArrayTest.cpp73 int counts[] = {1, 256}; local
79 for (int countNdx = 0; countNdx < DE_LENGTH_OF_ARRAY(counts); countNdx++)
85 const std::string name = "stride" + typeToString(stride) + "_" + Array::inputTypeToString(inputTypes[inputTypeNdx]) + "_quads" + typeToString(counts[countNdx]);
100 spec.drawCount = counts[countNdx];
171 int counts[] = {1, 256}; local
178 for (int countNdx = 0; countNdx < DE_LENGTH_OF_ARRAY(counts); countNdx++)
187 std::string name = Array::storageToString(storages[storageNdx]) + "_stride" + typeToString(stride) + "_components" + typeToString(componentCount) + "_quads" + typeToString(counts[countNdx]);
205 spec.drawCount = counts[countNdx];
275 int counts[] = {5, 256}; local
282 for (int countNdx = 0; countNdx < DE_LENGTH_OF_ARRAY(counts); countNd
379 int counts[] = {1, 256}; local
479 int counts[] = {1, 256}; local
573 int counts[] = {1, 256}; local
[all...]
/external/oprofile/pp/
H A Dopannotate.cpp189 string str = count_str(sample->counts, samples->samples_count());
231 prev_sample->counts += sample->counts;
232 str = count_str(prev_sample->counts, samples->samples_count());
234 str = count_str(sample->counts, samples->samples_count());
265 string annot = count_str(symbol->sample.counts,
272 str += count_str(symbol->sample.counts, samples->samples_count());
524 count_array_t counts = samples->samples_count(filename, linenr); local
525 if (!counts.zero()) {
526 str += count_str(counts, sample
547 count_array_t counts; local
[all...]
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFDocument.cpp263 int counts[SkAdvancedTypefaceMetrics::kOther_Font + 2]) const {
264 sk_bzero(counts, sizeof(int) *
275 counts[fontResources[font]->getType()]++;
283 counts[SkAdvancedTypefaceMetrics::kOther_Font + 1] = notEmbeddable;
287 int counts[SkAdvancedTypefaceMetrics::kOther_Font + 1],
290 sk_bzero(counts, sizeof(int) *
302 counts[fontResources[font]->getType()]++;
/external/skia/src/pdf/
H A DSkPDFDocument.cpp263 int counts[SkAdvancedTypefaceMetrics::kOther_Font + 2]) const {
264 sk_bzero(counts, sizeof(int) *
275 counts[fontResources[font]->getType()]++;
283 counts[SkAdvancedTypefaceMetrics::kOther_Font + 1] = notEmbeddable;
287 int counts[SkAdvancedTypefaceMetrics::kOther_Font + 1],
290 sk_bzero(counts, sizeof(int) *
302 counts[fontResources[font]->getType()]++;
/external/chromium_org/base/metrics/
H A Dsample_vector_unittest.cc182 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);
/external/chromium_org/chrome/browser/resources/print_preview/search/
H A Ddestination_search.js385 var getListsTotalHeight = function(lists, counts) {
387 return sum + list.getEstimatedHeightInPixels(counts[index]) +
408 var counts = getCounts(lists, i);
410 if (getListsTotalHeight(lists, counts) < availableHeight) {
411 for (var countIndex = 0; countIndex < counts.length; countIndex++) {
412 counts[countIndex]++;
413 if (getListsTotalHeight(lists, counts) > availableHeight) {
414 counts[countIndex]--;
421 list.updateShortListSize(counts[index]);
426 var listsHeight = getListsTotalHeight(lists, counts)
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fVertexArrayTest.cpp73 int counts[] = {1, 256}; local
79 for (int countNdx = 0; countNdx < DE_LENGTH_OF_ARRAY(counts); countNdx++)
101 spec.drawCount = counts[countNdx];
139 // Test strides with different input types, component counts and storage, Usage(?)
142 int counts[] = {1, 256}; local
151 for (int countNdx = 0; countNdx < DE_LENGTH_OF_ARRAY(counts); countNdx++)
171 spec.drawCount = counts[countNdx];
209 // Test strides with different input types, component counts and storage, Usage(?)
211 int counts[] = {5, 256}; local
220 for (int countNdx = 0; countNdx < DE_LENGTH_OF_ARRAY(counts); countNd
282 int counts[] = {1, 256}; local
350 int counts[] = {1, 256}; local
413 int counts[] = {1, 256}; local
[all...]
/external/chromium_org/chrome/browser/metrics/
H A Dandroid_metrics_provider.cc18 void IncrementListValue(base::ListValue* counts, int index) { argument
20 counts->GetInteger(index, &current_count);
21 counts->Set(index, new base::FundamentalValue(current_count + 1));
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dbit_cost.h31 static inline int HuffmanTreeBitCost(const int* counts, const uint8_t* depth) { argument
34 nbits += counts[i] * (depth[i] + kHuffmanExtraBits[i]);
/external/valgrind/main/gdbserver_tests/
H A Dmcsignopass.stderr.exp21 For counts of detected and suppressed errors, rerun with: -v
H A Dmcsigpass.stderr.exp21 For counts of detected and suppressed errors, rerun with: -v
H A Dmcwatchpoints.stderr.exp27 For counts of detected and suppressed errors, rerun with: -v
/external/valgrind/main/cachegrind/
H A Dcg_merge.c212 ULong* counts; member in struct:__anon32368
236 // Summary counts (computed whilst parsing)
271 static Counts* new_Counts ( Int n_counts, /*COPIED*/ULong* counts )
279 cts->counts = malloc(n_counts * sizeof(ULong));
280 if (cts->counts == NULL) {
287 cts->counts[i] = counts[i];
300 cts->counts = malloc(n_counts * sizeof(ULong));
301 if (cts->counts == NULL) {
308 cts->counts[
484 Counts* counts; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c407 ++cm->counts.partition[ctx][p];
1396 assert(!memcmp(cm->counts.y_mode, zero_counts.y_mode,
1397 sizeof(cm->counts.y_mode)));
1398 assert(!memcmp(cm->counts.uv_mode, zero_counts.uv_mode,
1399 sizeof(cm->counts.uv_mode)));
1400 assert(!memcmp(cm->counts.partition, zero_counts.partition,
1401 sizeof(cm->counts.partition)));
1402 assert(!memcmp(cm->counts.coef, zero_counts.coef,
1403 sizeof(cm->counts.coef)));
1404 assert(!memcmp(cm->counts
[all...]

Completed in 1687 milliseconds

12345678910