Searched refs:pointerAsUint (Results 1 – 1 of 1) sorted by relevance
346 uintptr_t pointerAsUint = reinterpret_cast<uintptr_t>(ptr); in partitionSuperPageToMetadataArea() local347 ASSERT(!(pointerAsUint & kSuperPageOffsetMask)); in partitionSuperPageToMetadataArea()350 return reinterpret_cast<char*>(pointerAsUint + kSystemPageSize); in partitionSuperPageToMetadataArea()355 uintptr_t pointerAsUint = reinterpret_cast<uintptr_t>(ptr); in partitionPointerToPageNoAlignmentCheck() local356 char* superPagePtr = reinterpret_cast<char*>(pointerAsUint & kSuperPageBaseMask); in partitionPointerToPageNoAlignmentCheck()357 uintptr_t partitionPageIndex = (pointerAsUint & kSuperPageOffsetMask) >> kPartitionPageShift; in partitionPointerToPageNoAlignmentCheck()375 uintptr_t pointerAsUint = reinterpret_cast<uintptr_t>(page); in partitionPageToPointer() local376 uintptr_t superPageOffset = (pointerAsUint & kSuperPageOffsetMask); in partitionPageToPointer()383 uintptr_t superPageBase = (pointerAsUint & kSuperPageBaseMask); in partitionPageToPointer()