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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/core/
bitmaptools.cc 143 // 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/
es3fVertexArrayTest.cpp 73 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); countNdx++
379 int counts[] = {1, 256}; local
479 int counts[] = {1, 256}; local
573 int counts[] = {1, 256}; local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasMoveItems.java 61 final int[] counts = new int[3]; local
96 messageIds[index][counts[index]] = mMove.getMessageId();
97 ++counts[index];
101 MessageMove.upsyncSuccessful(cr, messageIds[0], counts[0]);
102 MessageMove.upsyncFail(cr, messageIds[1], counts[1]);
103 MessageMove.upsyncRetry(cr, messageIds[2], counts[2]);
  /external/oprofile/pp/
opannotate.cpp 189 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, samples->samples_count())
547 count_array_t counts; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
trace.py 33 trace.py -c -f counts --ignore-dir '$prefix' spam.py eggs
93 and write the counts to <module>.cover for each
101 -r, --report Generate a report from a counts file; do not execute
107 -f, --file=<file> File to accumulate counts over several runs.
222 def __init__(self, counts=None, calledfuncs=None, infile=None,
224 self.counts = counts
225 if self.counts is None:
226 self.counts = {}
227 self.counter = self.counts.copy() # map (filename, lineno) to coun
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
trace.py 33 trace.py -c -f counts --ignore-dir '$prefix' spam.py eggs
93 and write the counts to <module>.cover for each
101 -r, --report Generate a report from a counts file; do not execute
107 -f, --file=<file> File to accumulate counts over several runs.
222 def __init__(self, counts=None, calledfuncs=None, infile=None,
224 self.counts = counts
225 if self.counts is None:
226 self.counts = {}
227 self.counter = self.counts.copy() # map (filename, lineno) to coun
    [all...]
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFDocument.cpp 263 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/
SkPDFDocument.cpp 263 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/
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);
sample_vector.h 59 SampleVectorIterator(const std::vector<HistogramBase::AtomicCount>* counts,
  /external/deqp/modules/gles2/functional/
es2fVertexArrayTest.cpp 73 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); countNdx++
282 int counts[] = {1, 256}; local
350 int counts[] = {1, 256}; local
413 int counts[] = {1, 256}; local
    [all...]
  /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/valgrind/main/memcheck/tests/
addressable.stderr.exp 9 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
partiallydefinedeq.stderr.exp 17 For counts of detected and suppressed errors, rerun with: -v
  /external/chromium_org/third_party/brotli/src/brotli/enc/
bit_cost.h 31 static inline int HuffmanTreeBitCost(const int* counts, const uint8_t* depth) {
34 nbits += counts[i] * (depth[i] + kHuffmanExtraBits[i]);
  /external/valgrind/main/gdbserver_tests/
mcsignopass.stderr.exp 21 For counts of detected and suppressed errors, rerun with: -v
mcsigpass.stderr.exp 21 For counts of detected and suppressed errors, rerun with: -v
mcwatchpoints.stderr.exp 27 For counts of detected and suppressed errors, rerun with: -v
  /external/valgrind/main/cachegrind/
cg_merge.c 212 ULong* counts; member in struct:__anon36085
214 Counts;
233 where innerMap is WordFM line-number=UWord Counts */
236 // Summary counts (computed whilst parsing)
238 Counts* summary;
271 static Counts* new_Counts ( Int n_counts, /*COPIED*/ULong* counts )
274 Counts* cts = malloc(sizeof(Counts));
279 cts->counts = malloc(n_counts * sizeof(ULong))
484 Counts* counts; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_decodeframe.c 400 ++cm->counts.partition[ctx][p];
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c 398 ++cm->counts.partition[ctx][p];
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decodeframe.c 400 ++cm->counts.partition[ctx][p];
    [all...]
  /art/runtime/base/
timing_logger.cc 236 size_t counts[2] = { 0 }; local
241 ++counts[timings_[i].IsStartTiming() ? 0 : 1];
243 CHECK_EQ(counts[0], counts[1]) << "Number of StartTiming and EndTiming doesn't match";
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_prob.h 83 const unsigned int *counts, unsigned int count_sat,

Completed in 2367 milliseconds

1 2 3 45 6 7 8 91011>>