Lines Matching refs:nextPrivatizable
322 std::atomic<Block*> nextPrivatizable; member in rml::internal::GlobalBlockFields
1281 …MALLOC_ASSERT( !isNotForUse(block->nextPrivatizable.load(std::memory_order_relaxed)), ASSERT_TEXT … in getPrivatizedFreeListBlock()
1282 … mailbox.store(block->nextPrivatizable.load(std::memory_order_relaxed), std::memory_order_relaxed); in getPrivatizedFreeListBlock()
1283 block->nextPrivatizable.store((Block*)this, std::memory_order_relaxed); in getPrivatizedFreeListBlock()
1297 … block->nextPrivatizable.store(mailbox.load(std::memory_order_relaxed), std::memory_order_relaxed); in addPublicFreeListBlock()
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()
1591 nextPrivatizable.store( tls? (Block*)(tls->bin + index) : nullptr, std::memory_order_relaxed); in initEmptyBlock()
1721 nextPrivatizable.store(nullptr, std::memory_order_relaxed); in reset()