OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fastMallocStatistics
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebKit/mac/Misc/
WebCoreStatistics.mm
197
WTF::
FastMallocStatistics
fastMallocStatistics
= WTF::
fastMallocStatistics
();
205
[NSNumber numberWithInt:
fastMallocStatistics
.reservedVMBytes], @"FastMallocReservedVMBytes",
206
[NSNumber numberWithInt:
fastMallocStatistics
.committedVMBytes], @"FastMallocCommittedVMBytes",
207
[NSNumber numberWithInt:
fastMallocStatistics
.freeListBytes], @"FastMallocFreeListBytes",
/external/webkit/Source/WebKit2/Shared/mac/
WebMemorySampler.mac.mm
112
FastMallocStatistics
fastMallocStatistics
= WTF::
fastMallocStatistics
();
113
size_t fastMallocBytesInUse =
fastMallocStatistics
.committedVMBytes -
fastMallocStatistics
.freeListBytes;
114
size_t fastMallocBytesCommitted =
fastMallocStatistics
.committedVMBytes;
/external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.h
85
struct
FastMallocStatistics
{
90
FastMallocStatistics
fastMallocStatistics
();
FastMalloc.cpp
377
FastMallocStatistics
fastMallocStatistics
()
379
FastMallocStatistics
statistics = { 0, 0, 0 };
[
all
...]
Completed in 2937 milliseconds