Searched refs:nextPrivatizable (Results 1 – 2 of 2) sorted by relevance
322 std::atomic<Block*> nextPrivatizable; member in rml::internal::GlobalBlockFields1283 block->nextPrivatizable.store((Block*)this, std::memory_order_relaxed); in getPrivatizedFreeListBlock()1317 Block* tmp = block->nextPrivatizable.load(std::memory_order_relaxed); in cleanPublicFreeLists()1318 block->nextPrivatizable.store((Block*)this, std::memory_order_relaxed); in cleanPublicFreeLists()1428 Block* next = nextPrivatizable.load(std::memory_order_acquire); in freePublicObject()1501 MALLOC_ASSERT( isNotForUse(nextPrivatizable.load(std::memory_order_relaxed)), ASSERT_TEXT ); in privatizeOrphaned()1502 nextPrivatizable.store((Block*)bin, std::memory_order_relaxed); in privatizeOrphaned()1537 if ((intptr_t)nextPrivatizable.load(std::memory_order_relaxed) == binTag) { in shareOrphaned()1547 while ((intptr_t)nextPrivatizable.load(std::memory_order_relaxed) == binTag) { in shareOrphaned()1561 nextPrivatizable.store((Block*)UNUSABLE, std::memory_order_relaxed); in shareOrphaned()[all …]
1238 REQUIRE_MESSAGE(findCacheLine(&block->next) != findCacheLine(&block->nextPrivatizable), in TestSlabAlignment()