Lines Matching refs:committed
516 ", committed: %6zu KB\n",
522 ", committed: %6zu KB\n",
528 ", committed: %6zu KB\n",
535 ", committed: %6zu KB\n",
541 ", committed: %6zu KB\n",
548 ", committed: %6zu KB\n",
555 ", committed: %6zu KB\n",
561 ", committed: %6zu KB\n",
569 ", committed: %6zu KB\n",
574 "Unmapper buffering %zu chunks of committed: %6zu KB\n",
1885 // Calculate used memory first, then committed memory. Following code
1886 // assumes that committed >= used, which might not hold when this is
1895 // - this GC decreased committed memory,
3830 size_t committed = CommittedOldGenerationMemory();
3831 return HasHighFragmentation(used, committed);
3834 bool Heap::HasHighFragmentation(size_t used, size_t committed) {
3836 // Fragmentation is high if committed > 2 * used + kSlack.
3838 DCHECK_GE(committed, used);
3839 return committed - used > used + kSlack;
3852 // - the committed memory can be potentially reduced.