Home
last modified time | relevance | path

Searched refs:accumulated_bytes (Results 1 – 1 of 1) sorted by relevance

/external/libchrome/base/sampling_heap_profiler/
Dsampling_heap_profiler.cc300 intptr_t accumulated_bytes = in RecordAlloc() local
302 accumulated_bytes += size; in RecordAlloc()
303 if (LIKELY(accumulated_bytes < 0)) { in RecordAlloc()
304 AccumulatedBytesTLS().Set(reinterpret_cast<void*>(accumulated_bytes)); in RecordAlloc()
309 size_t samples = accumulated_bytes / mean_interval; in RecordAlloc()
310 accumulated_bytes %= mean_interval; in RecordAlloc()
313 accumulated_bytes -= GetNextSampleInterval(mean_interval); in RecordAlloc()
315 } while (accumulated_bytes >= 0); in RecordAlloc()
317 AccumulatedBytesTLS().Set(reinterpret_cast<void*>(accumulated_bytes)); in RecordAlloc()