Lines Matching refs:intptr_t

70 const intptr_t UNUSABLE = 0x1;
72 return (UNUSABLE|(intptr_t)ptr)!=UNUSABLE; in isSolidPtr()
75 return (intptr_t)ptr==UNUSABLE; in isNotForUse()
111 std::atomic<intptr_t> ThreadCount;
116 unsigned int result = reinterpret_cast<intptr_t>(TlsGetValue_func(Tid_key)); in tlsNumber()
170 intptr_t ThreadId::ThreadCount;
279 bool init(intptr_t poolId, const MemPoolPolicy* memPoolPolicy);
295 static intptr_t defaultMemPool_space[sizeof(MemoryPool)/sizeof(intptr_t) +
296 (sizeof(MemoryPool)%sizeof(intptr_t)? 1 : 0)];
376 void shareOrphaned(intptr_t binTag, unsigned index);
1073 bool ExtMemoryPool::init(intptr_t poolId, rawAllocType rawAlloc, in init()
1094 bool MemoryPool::init(intptr_t poolId, const MemPoolPolicy *policy) in init()
1455 const intptr_t endMarker = reset ? 0 : UNUSABLE; in privatizePublicFreeList()
1524 (intptr_t&)(publicFreeList) = UNUSABLE; in readyToShare()
1530 void Block::shareOrphaned(intptr_t binTag, unsigned index) in shareOrphaned()
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()
1608 void OrphanedBlocks::put(intptr_t binTag, Block *block) in put()
1793 memPool->extMemPool.orphanedBlocks.put(intptr_t(bin+index), threadlessBlock); in release()
1805 memPool->extMemPool.orphanedBlocks.put(intptr_t(bin+index), threadlessBlock); in release()
1949 static std::atomic<intptr_t> mallocInitialized{0}; // implicitly initialized to 0
1964 std::atomic<intptr_t> flag;
1965 static const intptr_t skipDtor = INTPTR_MIN/2;
2031 MALLOC_ASSERT( isAligned(defaultMemPool, sizeof(intptr_t)), in initMemoryManager()
2690 TBBMALLOC_EXPORT rml::MemoryPool *pool_create(intptr_t pool_id, const MemPoolPolicy *policy) in pool_create()
2699 rml::MemPoolError pool_create_v1(intptr_t pool_id, const MemPoolPolicy *policy, in pool_create_v1()
3253 extern "C" int scalable_allocation_mode(int param, intptr_t value) in scalable_allocation_mode()