Lines Matching defs:bytes
366 void GCTracer::AddIncrementalMarkingStep(double duration, size_t bytes) {
367 if (bytes > 0) {
368 incremental_marking_bytes_ += bytes;
697 uint64_t bytes = sum.first;
700 double speed = bytes / durations;
713 void GCTracer::RecordIncrementalMarkingSpeed(size_t bytes, double duration) {
714 if (duration == 0 || bytes == 0) return;
715 double current_speed = bytes / duration;
777 size_t bytes = new_space_allocation_in_bytes_since_gc_;
780 MakeBytesAndDuration(bytes, durations), time_ms);
785 size_t bytes = old_generation_allocation_in_bytes_since_gc_;
788 MakeBytesAndDuration(bytes, durations), time_ms);