Home
last modified time | relevance | path

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

/external/swiftshader/src/OpenGL/compiler/
Dosinclude.h52 typedef DWORD OS_TLSIndex; typedef
55 typedef pthread_key_t OS_TLSIndex; typedef
56 #define OS_INVALID_TLS_INDEX (static_cast<OS_TLSIndex>(-1))
59 OS_TLSIndex OS_AllocTLSIndex();
60 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue);
61 bool OS_FreeTLSIndex(OS_TLSIndex nIndex);
63 inline void* OS_GetTLSValue(OS_TLSIndex nIndex) in OS_GetTLSValue()
Dossource_posix.cpp27 OS_TLSIndex OS_AllocTLSIndex() in OS_AllocTLSIndex()
44 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue) in OS_SetTLSValue()
58 bool OS_FreeTLSIndex(OS_TLSIndex nIndex) in OS_FreeTLSIndex()
Dossource_win.cpp28 OS_TLSIndex OS_AllocTLSIndex() in OS_AllocTLSIndex()
40 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue) in OS_SetTLSValue()
54 bool OS_FreeTLSIndex(OS_TLSIndex nIndex) in OS_FreeTLSIndex()
DInitializeParseContext.cpp19 OS_TLSIndex GlobalParseContextIndex = OS_INVALID_TLS_INDEX;
DPoolAlloc.cpp25 OS_TLSIndex PoolIndex = OS_INVALID_TLS_INDEX;
/external/deqp/external/glslang/
Dosinclude.cpp33 DE_STATIC_ASSERT(sizeof(deThreadLocal) == sizeof(OS_TLSIndex));
38 OS_TLSIndex OS_AllocTLSIndex (void) in OS_AllocTLSIndex()
40 return (OS_TLSIndex)deThreadLocal_create(); in OS_AllocTLSIndex()
43 bool OS_SetTLSValue (OS_TLSIndex nIndex, void* lpvValue) in OS_SetTLSValue()
49 bool OS_FreeTLSIndex (OS_TLSIndex nIndex) in OS_FreeTLSIndex()
55 void* OS_GetTLSValue (OS_TLSIndex nIndex) in OS_GetTLSValue()