OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:freed_bytes
(Results
1 - 5
of
5
) sorted by null
/art/runtime/
runtime_stats.h
78
freed_bytes
= 0;
99
uint64_t
freed_bytes
;
variable
/external/chromium_org/tools/android/heap_profiler/
heap_profiler.c
262
uintptr_t
freed_bytes
= 0; // Bytes freed in this cycle.
local
272
freed_bytes
= alloc->end - alloc->start + 1;
288
freed_bytes
= del_end - alloc->start + 1;
300
freed_bytes
= alloc->end - del_start + 1;
307
freed_bytes
= del_end - del_start + 1;
313
freed_bytes
+= (old_end - del_end);
318
assert(st->alloc_bytes >=
freed_bytes
);
319
st->alloc_bytes -=
freed_bytes
;
322
stats->total_alloc_bytes -=
freed_bytes
;
/art/runtime/gc/allocator/
rosalloc.cc
1147
size_t
freed_bytes
= 0;
local
[
all
...]
/art/runtime/gc/
heap.cc
831
const uint64_t
freed_bytes
= collector->GetTotalFreedBytes();
local
[
all
...]
/external/chromium_org/v8/src/heap/
mark-compact.cc
640
intptr_t
freed_bytes
= space->free_list()->Concatenate(free_list);
local
641
space->AddToAccountingStats(
freed_bytes
);
642
space->DecrementUnsweptFreeBytes(
freed_bytes
);
3317
intptr_t
freed_bytes
= 0;
local
[
all
...]
Completed in 406 milliseconds