OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PartitionPage
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.h
186
struct
PartitionPage
{
189
PartitionPage
* freePageNext; // If the page is free.
191
PartitionPage
* activePageNext;
198
PartitionPage
* activePagesHead; // Accessed most in hot path => goes first.
199
PartitionPage
* freePagesHead;
226
PartitionPage
seedPage;
238
WTF_EXPORT NEVER_INLINE void partitionFreeSlowPath(
PartitionPage
*);
353
ALWAYS_INLINE
PartitionPage
* partitionPointerToPageNoAlignmentCheck(void* ptr)
361
PartitionPage
* page = reinterpret_cast<
PartitionPage
*>(partitionSuperPageToMetadataArea(superPagePtr) + (partitionPageIndex << kPageMetadataShift))
[
all
...]
PartitionAlloc.cpp
48
COMPILE_ASSERT(sizeof(WTF::
PartitionPage
) <= WTF::kPageMetadataSize, PartitionPage_not_too_big);
75
static ALWAYS_INLINE void partitionPageMarkFree(
PartitionPage
* page)
126
PartitionPage
* page = bucket->activePagesHead;
237
static ALWAYS_INLINE void partitionUnusePage(
PartitionPage
* page)
248
static ALWAYS_INLINE void partitionPageReset(
PartitionPage
* page, PartitionBucket* bucket)
259
static ALWAYS_INLINE char* partitionPageAllocAndFillFreelist(
PartitionPage
* page)
307
static ALWAYS_INLINE void partitionSetNewActivePage(PartitionBucket* bucket,
PartitionPage
* page)
331
static ALWAYS_INLINE void partitionPageSetFreePageNext(
PartitionPage
* page,
PartitionPage
* nextFree)
337
static ALWAYS_INLINE
PartitionPage
* partitionPageFreePageNext(PartitionPage* page
[
all
...]
PartitionAllocTest.cpp
79
static WTF::
PartitionPage
* GetFullPage(size_t size)
104
static void FreeFullPage(WTF::
PartitionPage
* page)
191
WTF::
PartitionPage
* page = GetFullPage(kTestAllocSize);
199
WTF::
PartitionPage
* page2 = GetFullPage(kTestAllocSize);
231
WTF::
PartitionPage
* page1 = GetFullPage(kTestAllocSize);
234
WTF::
PartitionPage
* page2 = GetFullPage(kTestAllocSize);
249
WTF::
PartitionPage
* page3 = GetFullPage(kTestAllocSize);
291
size_t numToFillFreeListPage = WTF::kPartitionPageSize / (sizeof(WTF::
PartitionPage
) + kExtraAllocSize);
295
OwnPtr<WTF::
PartitionPage
*[]> pages = adoptArrayPtr(new WTF::
PartitionPage
*[numToFillFreeListPage])
[
all
...]
Completed in 48 milliseconds