Home
last modified time | relevance | path

Searched refs:nextPrivatizable (Results 1 – 2 of 2) sorted by relevance

/oneTBB/src/tbbmalloc/
H A Dfrontend.cpp322 std::atomic<Block*> nextPrivatizable; member in rml::internal::GlobalBlockFields
1283 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 …]
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_whitebox.cpp1238 REQUIRE_MESSAGE(findCacheLine(&block->next) != findCacheLine(&block->nextPrivatizable), in TestSlabAlignment()