OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:superpagebase
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.cpp
104
root->firstExtent.
superPageBase
= 0;
157
char* superPage = entry->
superPageBase
;
218
if (currentExtent->
superPageBase
) {
220
PartitionSuperPageExtentEntry* newEntry = reinterpret_cast<PartitionSuperPageExtentEntry*>(partitionSuperPageToMetadataArea(currentExtent->
superPageBase
));
226
currentExtent->
superPageBase
= superPage;
231
ASSERT(ret >= currentExtent->
superPageBase
&& ret < currentExtent->superPagesEnd);
PartitionAlloc.h
209
char*
superPageBase
;
383
uintptr_t
superPageBase
= (pointerAsUint & kSuperPageBaseMask);
384
void* ret = reinterpret_cast<void*>(
superPageBase
+ (partitionPageIndex << kPartitionPageShift));
400
if (LIKELY(ptr >= root->firstExtent.
superPageBase
) && LIKELY(ptr < root->firstExtent.superPagesEnd))
406
if (ptr >= entry->
superPageBase
&& ptr < entry->superPagesEnd)
Completed in 30 milliseconds