Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dzone-pool.cc33 return std::max(max_allocated_bytes_, GetCurrentAllocatedBytes()); in GetMaxAllocatedBytes()
37 size_t ZonePool::StatsScope::GetCurrentAllocatedBytes() { in GetCurrentAllocatedBytes() function in v8::internal::compiler::ZonePool::StatsScope
57 size_t current_total = GetCurrentAllocatedBytes(); in ZoneReturned()
81 return std::max(max_allocated_bytes_, GetCurrentAllocatedBytes()); in GetMaxAllocatedBytes()
85 size_t ZonePool::GetCurrentAllocatedBytes() { in GetCurrentAllocatedBytes() function in v8::internal::compiler::ZonePool
95 return total_deleted_bytes_ + GetCurrentAllocatedBytes(); in GetTotalAllocatedBytes()
115 size_t current_total = GetCurrentAllocatedBytes(); in ReturnZone()
Dzone-pool.h47 size_t GetCurrentAllocatedBytes();
69 size_t GetCurrentAllocatedBytes();
Dpipeline-statistics.cc22 pipeline_stats->zone_pool_->GetCurrentAllocatedBytes(); in Begin()
/external/v8/test/unittests/compiler/
Dzone-pool-unittest.cc21 ASSERT_EQ(current, zone_pool()->GetCurrentAllocatedBytes()); in ExpectForPool()
28 ASSERT_EQ(current, stats->GetCurrentAllocatedBytes()); in Expect()