Searched defs:pointerAsUint (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DPartitionAlloc.h383 uintptr_t pointerAsUint = reinterpret_cast<uintptr_t>(ptr); local
384 ASSERT(!(pointerAsUint & kSuperPageOffsetMask));
387 return reinterpret_cast<char*>(pointerAsUint + kSystemPageSize);
392 uintptr_t pointerAsUint = reinterpret_cast<uintptr_t>(ptr); local
393 char* superPagePtr = reinterpret_cast<char*>(pointerAsUint & kSuperPageBaseMask);
394 uintptr_t partitionPageIndex = (pointerAsUint & kSuperPageOffsetMask) >> kPartitionPageShift;
407 uintptr_t pointerAsUint = reinterpret_cast<uintptr_t>(page);
408 uintptr_t superPageOffset = (pointerAsUint & kSuperPageOffsetMask);
415 uintptr_t superPageBase = (pointerAsUint & kSuperPageBaseMask);

Completed in 103 milliseconds