Lines Matching refs:bytes
22 void AllocatedObjectSizeIncreased(size_t bytes) final {
23 ProcessHeapStatisticsUpdater::IncreaseTotalAllocatedObjectSize(bytes);
24 object_size_changes_since_last_reset_ += bytes;
27 void AllocatedObjectSizeDecreased(size_t bytes) final {
28 ProcessHeapStatisticsUpdater::DecreaseTotalAllocatedObjectSize(bytes);
29 object_size_changes_since_last_reset_ -= bytes;
32 void ResetAllocatedObjectSize(size_t bytes) final {
35 ProcessHeapStatisticsUpdater::IncreaseTotalAllocatedObjectSize(bytes);
36 object_size_changes_since_last_reset_ = bytes;
39 void AllocatedSizeIncreased(size_t bytes) final {
40 ProcessHeapStatisticsUpdater::IncreaseTotalAllocatedSpace(bytes);
43 void AllocatedSizeDecreased(size_t bytes) final {
44 ProcessHeapStatisticsUpdater::DecreaseTotalAllocatedSpace(bytes);