search for: max_lifetime

Displaying 4 results from an estimated 4 matches for "max_lifetime".

2020 Jun 24
7
RFC: Sanitizer-based Heap Profiler
...total_access_count, min_access_count, max_access_count; // Allocated size (track total across all allocations, and the min and max). u64 total_size; u32 min_size, max_size; // Lifetime (track total across all allocations, and the min and max). u64 total_lifetime; u32 min_lifetime, max_lifetime; // Percent utilization of allocated 64-byte blocks (track total // across all allocations, and the min and max). The utilization is // defined as the percentage of 8-byte shadow counters corresponding to // the full allocation that are non-zero. u64 total_percent_utilized; u32 mi...
2020 Jul 05
2
RFC: Sanitizer-based Heap Profiler
...; > // Allocated size (track total across all allocations, and the min and > max). > > u64 total_size; > > u32 min_size, max_size; > > // Lifetime (track total across all allocations, and the min and max). > > u64 total_lifetime; > > u32 min_lifetime, max_lifetime; > > // Percent utilization of allocated 64-byte blocks (track total > > // across all allocations, and the min and max). The utilization is > > // defined as the percentage of 8-byte shadow counters corresponding to > > // the full allocation that are non-zero. >...
2020 Jun 25
1
RFC: Sanitizer-based Heap Profiler
...>   // Allocated size (track total across all allocations, and the min > and max). > >   u64 total_size; > >   u32 min_size, max_size; > >   // Lifetime (track total across all allocations, and the min and max). > >   u64 total_lifetime; > >   u32 min_lifetime, max_lifetime; > >   // Percent utilization of allocated 64-byte blocks (track total > >   // across all allocations, and the min and max). The utilization is > >   // defined as the percentage of 8-byte shadow counters corresponding to > >   // the full allocation that are non-zero. >...
2020 Jul 09
2
RFC: Sanitizer-based Heap Profiler
...ss all allocations, and the min and >> max). >> >> u64 total_size; >> >> u32 min_size, max_size; >> >> // Lifetime (track total across all allocations, and the min and max). >> >> u64 total_lifetime; >> >> u32 min_lifetime, max_lifetime; >> >> // Percent utilization of allocated 64-byte blocks (track total >> >> // across all allocations, and the min and max). The utilization is >> >> // defined as the percentage of 8-byte shadow counters corresponding to >> >> // the full al...