Searched refs:pointerAsUint (Results 1 – 1 of 1) sorted by relevance
383 uintptr_t pointerAsUint = reinterpret_cast<uintptr_t>(ptr); in partitionSuperPageToMetadataArea() local384 ASSERT(!(pointerAsUint & kSuperPageOffsetMask)); in partitionSuperPageToMetadataArea()387 return reinterpret_cast<char*>(pointerAsUint + kSystemPageSize); in partitionSuperPageToMetadataArea()392 uintptr_t pointerAsUint = reinterpret_cast<uintptr_t>(ptr); in partitionPointerToPageNoAlignmentCheck() local393 char* superPagePtr = reinterpret_cast<char*>(pointerAsUint & kSuperPageBaseMask); in partitionPointerToPageNoAlignmentCheck()394 uintptr_t partitionPageIndex = (pointerAsUint & kSuperPageOffsetMask) >> kPartitionPageShift; in partitionPointerToPageNoAlignmentCheck()407 uintptr_t pointerAsUint = reinterpret_cast<uintptr_t>(page); in partitionPageToPointer() local408 uintptr_t superPageOffset = (pointerAsUint & kSuperPageOffsetMask); in partitionPageToPointer()415 uintptr_t superPageBase = (pointerAsUint & kSuperPageBaseMask); in partitionPageToPointer()