Home
last modified time | relevance | path

Searched refs:threadData (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
DPoolAlloc.cpp25 TThreadGlobalPools* threadData = new TThreadGlobalPools(); in InitializeGlobalPools() local
26 threadData->globalPoolAllocator = 0; in InitializeGlobalPools()
28 OS_SetTLSValue(PoolIndex, threadData); in InitializeGlobalPools()
58 TThreadGlobalPools* threadData = static_cast<TThreadGlobalPools*>(OS_GetTLSValue(PoolIndex)); in GetGlobalPoolAllocator() local
60 return *threadData->globalPoolAllocator; in GetGlobalPoolAllocator()
65 TThreadGlobalPools* threadData = static_cast<TThreadGlobalPools*>(OS_GetTLSValue(PoolIndex)); in SetGlobalPoolAllocator() local
67 threadData->globalPoolAllocator = poolAllocator; in SetGlobalPoolAllocator()
/external/chromium-trace/trace-viewer/src/
Dtimeline_stream_importer.js121 var threadData = packet['td'];
122 var threadName = threadData['n'];
123 var threadSlices = threadData['s'];
/external/webkit/Source/WebCore/platform/audio/
DHRTFDatabaseLoader.cpp89 static void* databaseLoaderEntry(void* threadData) in databaseLoaderEntry() argument
91 HRTFDatabaseLoader* loader = reinterpret_cast<HRTFDatabaseLoader*>(threadData); in databaseLoaderEntry()
DReverbConvolver.cpp56 static void* backgroundThreadEntry(void* threadData) in backgroundThreadEntry() argument
58 ReverbConvolver* reverbConvolver = static_cast<ReverbConvolver*>(threadData); in backgroundThreadEntry()
/external/webkit/Source/WebCore/webaudio/
DOfflineAudioDestinationNode.cpp88 void* OfflineAudioDestinationNode::renderEntry(void* threadData) in renderEntry() argument
90 …AudioDestinationNode* destinationNode = reinterpret_cast<OfflineAudioDestinationNode*>(threadData); in renderEntry()
DOfflineAudioDestinationNode.h68 static void* renderEntry(void* threadData);