OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:resident_page_count
(Results
1 - 2
of
2
) sorted by null
/external/libchrome/base/trace_event/
process_memory_dump.cc
99
size_t
resident_page_count
= 0;
local
106
resident_page_count
+= vec[i] & MINCORE_INCORE ? 1 : 0;
117
resident_page_count
+= vec[i].VirtualAttributes.Valid;
129
resident_page_count
+= vec[i] & 1;
135
total_resident_size +=
resident_page_count
* page_size;
/art/dexlayout/
dexdiag.cc
371
size_t
resident_page_count
= 0;
local
375
++
resident_page_count
;
390
double percent_of_total = 100.0 *
resident_page_count
/ size;
392
printer->PrintOne("EXECUTABLE",
resident_page_count
, size, percent_of_total, percent_of_total);
Completed in 579 milliseconds