Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dembedder-tracing.h104 remote_stats_.used_size += bytes; in IncreaseAllocatedSize()
105 remote_stats_.allocated_size += bytes; in IncreaseAllocatedSize()
106 if (remote_stats_.allocated_size > in IncreaseAllocatedSize()
107 remote_stats_.allocated_size_limit_for_check) { in IncreaseAllocatedSize()
109 remote_stats_.allocated_size_limit_for_check = in IncreaseAllocatedSize()
110 remote_stats_.allocated_size + kEmbedderAllocatedThreshold; in IncreaseAllocatedSize()
115 DCHECK_GE(remote_stats_.used_size, bytes); in DecreaseAllocatedSize()
116 remote_stats_.used_size -= bytes; in DecreaseAllocatedSize()
121 size_t used_size() const { return remote_stats_.used_size; } in used_size()
122 size_t allocated_size() const { return remote_stats_.allocated_size; } in allocated_size()
[all …]
Dembedder-tracing.cc36 remote_stats_.used_size = summary.allocated_size; in TraceEpilogue()
39 remote_stats_.allocated_size_limit_for_check = 0; in TraceEpilogue()