(&self, bytes: usize)
| 246 | |
| 247 | #[inline] |
| 248 | pub(crate) fn mark_gc_deallocated(&self, bytes: usize) { |
| 249 | cell_update(&self.0.total_gcs, |c| c - 1); |
| 250 | cell_update(&self.0.total_gc_bytes, |b| b - bytes); |
| 251 | cell_update(&self.0.freed_gc_bytes, |b| b.saturating_add(bytes)); |
| 252 | } |
| 253 | |
| 254 | #[inline] |
| 255 | pub(crate) fn mark_gc_remembered(&self, bytes: usize) { |
no test coverage detected