Home | History | Annotate | Download | only in src

Lines Matching defs:MiB

363   static const double MiB = 1048576.0;
382 "MALLOC: %12" PRIu64 " (%7.1f MiB) Bytes in use by application\n"
383 "MALLOC: + %12" PRIu64 " (%7.1f MiB) Bytes in page heap freelist\n"
384 "MALLOC: + %12" PRIu64 " (%7.1f MiB) Bytes in central cache freelist\n"
385 "MALLOC: + %12" PRIu64 " (%7.1f MiB) Bytes in transfer cache freelist\n"
386 "MALLOC: + %12" PRIu64 " (%7.1f MiB) Bytes in thread cache freelists\n"
387 "MALLOC: + %12" PRIu64 " (%7.1f MiB) Bytes in malloc metadata\n"
389 "MALLOC: = %12" PRIu64 " (%7.1f MiB) Actual memory used (physical + swap)\n"
390 MiB) Bytes released to OS (aka unmapped)\n"
392 "MALLOC: = %12" PRIu64 " (%7.1f MiB) Virtual address space used\n"
402 bytes_in_use_by_app, bytes_in_use_by_app / MiB,
403 stats.pageheap.free_bytes, stats.pageheap.free_bytes / MiB,
404 stats.central_bytes, stats.central_bytes / MiB,
405 stats.transfer_bytes, stats.transfer_bytes / MiB,
406 stats.thread_bytes, stats.thread_bytes / MiB,
407 stats.metadata_bytes, stats.metadata_bytes / MiB,
408 physical_memory_used, physical_memory_used / MiB,
409 stats.pageheap.unmapped_bytes, stats.pageheap.unmapped_bytes / MiB,
410 virtual_memory_used, virtual_memory_used / MiB,
426 "%8" PRIu64 " objs; %5.1f MiB; %5.1f cum MiB\n",
429 class_bytes / MiB,
430 cumulative / MiB);
442 out->printf("PageHeap: %d sizes; %6.1f MiB free; %6.1f MiB unmapped\n",
443 nonempty_sizes, stats.pageheap.free_bytes / MiB,
444 stats.pageheap.unmapped_bytes / MiB);
456 out->printf("%6u pages * %6u spans ~ %6.1f MiB; %6.1f MiB cum"
457 "; unmapped: %6.1f MiB; %6.1f MiB cum\n",
469 out->printf(">255 large * %6u spans ~ %6.1f MiB; %6.1f MiB cum"
470 "; unmapped: %6.1f MiB; %6.1f MiB cum\n",