/external/v8/test/mjsunit/tools/ |
profile.js | 194 assertEquals(totalTicks, node.totalWeight, 'total of ' + stack); 234 Driver.prototype.increment = function(func, self, total) { 236 this.counters[func] = { self: 0, total: 0 }; 239 this.counters[func].total += total; 289 assertEquals(testDriver.root.total, flatProfileRoot.totalWeight); 298 assertEquals(reference.total, rec.totalWeight, 'total of ' + rec.label); 344 assertEquals(reference[1], rec.totalWeight, 'total of ' + rec.label);
|
/dalvik/vm/ |
IndirectRefTable.c | 468 * cumulative total amount of pinned memory based on the unique entries. 472 int equiv, identical, total; local 473 total = equiv = identical = 0; 484 total += size; 488 total += size; 496 total += size; 499 LOGW("Memory held directly by native code is %d bytes\n", total);
|
/external/chromium/base/ |
process_util_unittest.cc | 130 // Typical values here is ~1900 for total and ~1000 for largest. Obviously 134 EXPECT_LT(10u, free_mem1.total); 136 EXPECT_GT(2048u, free_mem1.total); 138 EXPECT_GE(free_mem1.total, free_mem1.largest); 146 size_t expected_total = free_mem1.total - kAllocMB; 151 EXPECT_GE(free_mem2.total, free_mem2.largest); 152 EXPECT_GE(expected_total, free_mem2.total);
|
simple_thread_unittest.cc | 59 int total, base::WaitableEvent* event) 60 : seq_(seq), total_(total), event_(event) { }
|
/sdk/traceview/src/com/android/traceview/ |
ProfileProvider.java | 48 "Exclusive", "Calls+Recur\nCalls/Total", "Time/Call" }; 243 double total; local 246 total = context.getElapsedInclusive(); 247 double per = val * 100.0 / total; 261 double total; local 264 total = context.getElapsedInclusive(); 265 double per = val * 100.0 / total;
|
/dalvik/tools/ |
gclog.py | 123 # [35-24] mallinfo: total allocated space 127 total = unfloat12((value >> 24) & 0xfff) # currently disabled 131 return ( footprint, total, limit, bytes ) 161 print "+ foot=%d total=%d limit=%d alloc=%d" % \
|
/external/qemu/audio/ |
noaudio.c | 126 int total = sw->hw->total_samples_captured - sw->total_hw_samples_acquired; local 127 int to_clear = audio_MIN (samples, total);
|
/external/quake/quake/src/QW/client/ |
snd_dma.c | 727 int total; local 797 total = 0; 803 total++; 806 Con_Printf ("----(%i)----\n", total); 965 int size, total; local 967 total = 0; 974 total += size; 981 Con_Printf ("Total resident: %i\n", total);
|
/external/quake/quake/src/WinQuake/ |
snd_dma.cpp | 731 int total; local 801 total = 0; 807 total++; 810 Con_Printf ("----(%i)----\n", total); 972 int size, total; local 974 total = 0; 981 total += size; 988 Con_Printf ("Total resident: %i\n", total);
|
/external/webkit/WebKitTools/CodeCoverage/ |
cov.py | 51 (total, covered, annotated_data) = results[path] 54 w.writerow([path, total, covered])
|
/frameworks/base/media/libstagefright/codecs/aacenc/SampleCode/ |
AAC_E_SAMPLES.c | 149 int total = 0;
local 258 total += t2 - t1;
|
/external/openssl/crypto/evp/ |
encode.c | 135 unsigned int total=0; local 157 total=j+1; 167 total+=j+1; 172 *outl=total;
|
/external/qemu/ |
dcache.c | 125 uint64_t total = hits + misses; local 128 if (total) { 129 hit_per = 100.0 * hits / total; 130 miss_per = 100.0 * misses / total; 135 printf("Dcache total %10llu\n", hits + misses);
|
/external/webkit/SunSpider/resources/ |
sunspider-analyze-results.js | 31 var total = 0; variable 49 itemTotals = {total: []}; 75 itemTotals["total"][i] = 0; 92 itemTotals["total"][i] += time; 106 total += time; 115 mean = total / count; 137 stdDev = standardDeviation(mean, itemTotals["total"]); 191 var width = "Total".length; 250 print(resultLine(labelWidth, 0, "Total", meanWidth, mean, stdErr));
|
/libcore/dalvik/src/main/java/dalvik/system/ |
SamplingProfiler.java | 514 int total = 0; local 518 total += count; 525 // "CPU SAMPLES BEGIN (total = 826) Wed Jul 21 12:03:46 2010" 526 out.printf("CPU SAMPLES BEGIN (total = %d) %ta %tb %td %tT %tY\n", 527 total, now, now, now, now, now); 535 double self = (double)count/(double)total;
|
/system/extras/sound/ |
playwav.c | 198 unsigned total = 0; local 274 total += sz; 281 hdr.data_sz = total; 282 hdr.riff_sz = total + 8 + 16 + 8;
|
/external/libxml2/ |
xpath.c | 11925 int total = 0, hasNsNodes = 0; local 12555 int total = 0, cur; local 12679 int total = 0, cur; local 12799 int total = 0; local 13099 int total = 0; local [all...] |
xmlschemastypes.c | 92 unsigned int total:8; member in struct:_xmlSchemaValDecimal 106 unsigned int total; member in struct:_xmlSchemaValHex 113 unsigned int total; member in struct:_xmlSchemaValBase64 2925 int total, i = 0; local 2997 int total, i = 0, pad = 0; local [all...] |
/cts/tests/core/runner/src/android/test/ |
InstrumentationCtsTestRunner.java | 185 long total = runtime.totalMemory(); 187 long used = total - free; 189 Log.d(TAG, "Total memory : " + total);
|
/external/chromium/net/disk_cache/ |
stats.cc | 298 int total = 0; local 302 total += data_sizes_[bucket] * GetBucketRange(bucket); 304 return total;
|
/external/guava/src/com/google/common/io/ |
CharStreams.java | 194 long total = 0; 202 total += r; 204 return total;
|
/external/skia/src/core/ |
SkShader.cpp | 94 SkMatrix total; local 99 total.setConcat(matrix, *fLocalMatrix); 100 m = &total;
|
/frameworks/base/libs/rs/ |
rsElement.cpp | 59 size_t total = 0; local 61 total += mFields[ct].e->mBits; 63 return total;
|
/libcore/luni/src/main/java/java/security/ |
Policy.java | 428 PermissionCollection total = getPermissions(domain); local 433 total.add(en.nextElement()); 437 implies = total.implies(permission);
|
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/ |
DalvikExecTest.java | 228 int total = 0; local 233 total = total + count;
|