Home
last modified time | relevance | path

Searched refs:TLSData (Results 1 – 3 of 3) sorted by relevance

/oneTBB/src/tbbmalloc/
H A Dfrontend.cpp282 void onThreadShutdown(TLSData *tlsData);
284 inline TLSData *getTLS(bool create);
335 std::atomic<TLSData*> tlsPtr;
435 inline void markOwned(TLSData *tls) { in markOwned()
446 friend class TLSData;
586 class TLSData : public TLSRemote { class
618 TLSData* tls = (TLSData*) memPool->bootStrapBlocks.allocate(memPool, sizeof(TLSData)); in createTLS()
621 new(tls) TLSData(memPool, backend); in createTLS()
632 bool TLSData::cleanupBlockBins() in cleanupBlockBins()
990 TLSData* MemoryPool::getTLS(bool create) in getTLS()
[all …]
H A Dtbbmalloc_internal.h141 class TLSData; variable
156 TLSData* getThreadMallocTLS() const;
157 void setThreadMallocTLS( TLSData * newvalue );
158 TLSData* createTLS(MemoryPool *memPool, Backend *backend);
282 Block *get(TLSData *tls, unsigned int size);
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_whitebox.cpp890 TLSData *tlsCurr = defaultMemPool->getTLS(/*create=*/false); in operator ()()
1357 TLSData *tls = defaultMemPool->getTLS(/*create=*/false); in TestReallocDecreasing()