Searched defs:total (Results 1 - 6 of 6) sorted by relevance
/dalvik/vm/ |
H A D | ReferenceTable.c | 261 * cumulative total amount of pinned memory based on the unique entries. 264 int equiv, identical, total; local 265 total = equiv = identical = 0; 276 total += size; 280 total += size; 288 total += size; 291 LOGW("Memory held directly by tracked refs is %d bytes\n", total);
|
H A D | 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);
|
/dalvik/vm/alloc/ |
H A D | HeapDebug.c | 224 * [35-24] mallinfo: total allocated space 294 size_t total, zyg; local 301 total = 0; 304 total += madvisedSizes[i]; 313 * [ 2: 5] total madvise byte count 320 memcpy(c, &total, sizeof(total)); 321 c += sizeof(total);
|
H A D | Copying.c | 824 static void room(size_t *alloc, size_t *avail, size_t *total) argument 829 *total = heapSource->totalBlocks*BLOCK_SIZE; 831 *avail = *total - *alloc; 2189 size_t alloc, unused, total; local 2191 room(&alloc, &unused, &total); 2192 LOG_SCAV("BEFORE GC: %zu alloc, %zu free, %zu total.", 2193 alloc, unused, total); 2291 size_t alloc, rem, total; local 2293 room(&alloc, &rem, &total); 2294 LOG_SCAV("AFTER GC: %zu alloc, %zu free, %zu total [all...] |
H A D | HeapSource.c | 87 managed as "small actual" + "large actual" + "delta to allowed total footprint" 657 size_t total = 0; local 696 total += value; 698 return total; 1500 LOGD_HEAP("madvised %zd (GC) + %zd (native) = %zd total bytes\n",
|
/dalvik/tools/dmtracedump/ |
H A D | TraceDump.c | 1610 double total, sum, per, sum_per; local 1616 total = sumThreadTime; 1664 per = 100.0 * method->elapsedExclusive / total; 1665 sum_per = 100.0 * sum / total; 1771 double total, sum, per, sum_per; local 1776 total = sumThreadTime; 1797 printf("index %%/total %%/self index calls usecs name\n"); 1831 per = 100.0 * method->elapsedInclusive / total; 1867 double total, per, sum_per; local 1873 total 2086 double total, sum, per, sum_per; local 2322 double total, sum, per, sum_per; local [all...] |
Completed in 122 milliseconds