Searched refs:total (Results 151 - 175 of 930) sorted by relevance

1234567891011>>

/external/valgrind/main/memcheck/tests/linux/
H A Dlsframe2.stderr.exp7 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dsigqueue.stderr.exp6 total heap usage: 1 allocs, 1 frees, 128 bytes allocated
H A Dsys-openat.stderr.exp6 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
H A Dsyscalls-2007.stderr.exp5 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dsyslog-syscall.stderr.exp6 total heap usage: ... allocs, ... frees, ... bytes allocated
/external/valgrind/main/memcheck/tests/
H A Dmallinfo.stderr.exp6 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dnew_override.stderr.exp5 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dsbfragment.stderr.exp5 total heap usage: ... allocs, ... frees, ... bytes allocated
H A Dsem.stderr.exp5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
/external/valgrind/main/memcheck/tests/ppc32/
H A Dpower_ISA2_05.stderr.exp5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
/external/valgrind/main/memcheck/tests/ppc64/
H A Dpower_ISA2_05.stderr.exp5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
/external/chromium_org/net/base/
H A Dprioritized_dispatcher.cc101 size_t total = 0; local
103 total += limits.reserved_slots[i];
104 max_running_jobs_[i] = total;
107 DCHECK_LE(total, limits.total_jobs) << "sum(reserved_slots) <= total_jobs";
108 size_t spare = limits.total_jobs - total;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_batchbuffer.h129 intel->batch.total = n;
139 assert(batch->total != 0);
140 if (_n != batch->total) {
142 _n, batch->total);
145 batch->total = 0;
/external/chromium_org/third_party/skia/tests/
H A Dskia_test.cpp54 explicit DebugfReporter(int total) : fDone(0), fTotal(total) {} argument
159 int total = 0; local
169 total++;
182 for (int i = 0; i < total; i++) {
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoder.cs54 public void Encode(uint start, uint size, uint total) argument
56 Low += start * (Range /= total);
170 public uint GetThreshold(uint total) argument
172 return Code / (Range /= total);
175 public void Decode(uint start, uint size, uint total) argument
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_batchbuffer.h129 intel->batch.total = n;
139 assert(batch->total != 0);
140 if (_n != batch->total) {
142 _n, batch->total);
145 batch->total = 0;
/external/smack/src/org/xbill/DNS/
H A DRRset.java114 int size, start, total;
116 total = rrs.size();
119 size = total - nsigs;
134 start = total - nsigs;
143 list.addAll(rrs.subList(start, total));
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dheap-profiler.cc263 const HeapProfileTable::Stats& total = heap_profile->total(); local
264 const int64 inuse_bytes = total.alloc_size - total.free_size;
268 total.alloc_size >=
272 total.alloc_size >> 20, inuse_bytes >> 20);
275 total.free_size >=
279 total.free_size >> 20, inuse_bytes >> 20);
291 last_dump_alloc = total.alloc_size;
292 last_dump_free = total
[all...]
/external/openssl/crypto/x509v3/
H A Dv3_utl.c681 int total; member in struct:__anon28370
692 v6stat.total = 0;
707 if (v6stat.total != 16)
713 if (v6stat.total == 16)
721 if (v6stat.total > 0)
728 && (v6stat.zero_pos != v6stat.total))
735 || (v6stat.zero_pos == v6stat.total))
747 memset(v6 + v6stat.zero_pos, 0, 16 - v6stat.total);
749 if (v6stat.total != v6stat.zero_pos)
750 memcpy(v6 + v6stat.zero_pos + 16 - v6stat.total,
[all...]
/external/qemu/util/
H A Diov.c147 ssize_t total = 0; local
197 if (errno == EAGAIN && total > 0) {
198 return total;
211 total += ret;
215 return total;
299 * dst copies up to `sbytes' bytes total, or up to the end
333 * dst copies up to `sbytes' bytes total, or up to the end
384 size_t total = 0; local
391 total += bytes;
396 total
407 size_t total = 0; local
[all...]
H A Dosdep.c264 ssize_t total = 0; local
276 total += ret;
279 return total;
340 ssize_t total = 0; local
353 total += ret;
356 return total;
373 ssize_t total = 0; local
386 total += ret;
389 return total;
/external/chromium_org/base/
H A Dmd5_unittest.cc117 int total = 0; local
118 while (total < length) {
120 if (len > length - total)
121 len = length - total;
124 StringPiece(reinterpret_cast<char*>(data.get() + total), len));
125 total += len;
128 EXPECT_EQ(length, total);
/external/chromium_org/third_party/libaddressinput/src/cpp/test/util/
H A Dmd5_unittest.cc128 int total = 0; local
129 while (total < length) {
131 if (len > length - total)
132 len = length - total;
135 std::string(reinterpret_cast<char*>(data.get() + total), len));
136 total += len;
139 EXPECT_EQ(length, total);
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Drate_hist.c34 int total; member in struct:rate_hist
52 hist->total = 0;
117 hist->total++;
189 int buckets, int total, int scale) {
230 pct = (float)(100.0 * bucket[i].count / total);
250 int total = 0; local
259 total += counts[i];
265 show_histogram(bucket, buckets, total, scale);
281 show_histogram(hist->bucket, buckets, hist->total, scale);
188 show_histogram(const struct hist_bucket *bucket, int buckets, int total, int scale) argument
/external/libvpx/libvpx/
H A Drate_hist.c34 int total; member in struct:rate_hist
52 hist->total = 0;
117 hist->total++;
189 int buckets, int total, int scale) {
230 pct = (float)(100.0 * bucket[i].count / total);
250 int total = 0; local
259 total += counts[i];
265 show_histogram(bucket, buckets, total, scale);
281 show_histogram(hist->bucket, buckets, hist->total, scale);
188 show_histogram(const struct hist_bucket *bucket, int buckets, int total, int scale) argument

Completed in 429 milliseconds

1234567891011>>