| 1461 | } |
| 1462 | |
| 1463 | static void TrackDeallocation(void* ptr, int sizeIdx) { |
| 1464 | TAllocHeader* p = (TAllocHeader*)ptr; |
| 1465 | SampleDeallocation(p, sizeIdx); |
| 1466 | TrackPerTagDeallocation(p, sizeIdx); |
| 1467 | } |
| 1468 | |
| 1469 | struct TPerTagAllocInfo { |
| 1470 | ssize_t Count; |
no test coverage detected