Home
last modified time | relevance | path

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

/external/deqp-deps/glslang/glslang/OSDependent/Unix/
Dossource.cpp62 inline OS_TLSIndex PthreadKeyToTLSIndex(pthread_key_t key) in PthreadKeyToTLSIndex()
64 return (OS_TLSIndex)((uintptr_t)key + 1); in PthreadKeyToTLSIndex()
67 inline pthread_key_t TLSIndexToPthreadKey(OS_TLSIndex nIndex) in TLSIndexToPthreadKey()
72 OS_TLSIndex OS_AllocTLSIndex() in OS_AllocTLSIndex()
87 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue) in OS_SetTLSValue()
100 void* OS_GetTLSValue(OS_TLSIndex nIndex) in OS_GetTLSValue()
109 bool OS_FreeTLSIndex(OS_TLSIndex nIndex) in OS_FreeTLSIndex()
/external/deqp-deps/glslang/glslang/OSDependent/Windows/
Dossource.cpp56 inline OS_TLSIndex ToGenericTLSIndex (DWORD handle) in ToGenericTLSIndex()
58 return (OS_TLSIndex)((uintptr_t)handle + 1); in ToGenericTLSIndex()
61 inline DWORD ToNativeTLSIndex (OS_TLSIndex nIndex) in ToNativeTLSIndex()
69 OS_TLSIndex OS_AllocTLSIndex() in OS_AllocTLSIndex()
80 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue) in OS_SetTLSValue()
93 void* OS_GetTLSValue(OS_TLSIndex nIndex) in OS_GetTLSValue()
99 bool OS_FreeTLSIndex(OS_TLSIndex nIndex) in OS_FreeTLSIndex()
/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()
/external/deqp-deps/glslang/glslang/OSDependent/
Dosinclude.h43 typedef void* OS_TLSIndex; typedef
46 OS_TLSIndex OS_AllocTLSIndex();
47 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue);
48 bool OS_FreeTLSIndex(OS_TLSIndex nIndex);
49 void* OS_GetTLSValue(OS_TLSIndex nIndex);
/external/deqp-deps/glslang/OGLCompilersDLL/
DInitializeDll.cpp46 OS_TLSIndex ThreadInitializeIndex = OS_INVALID_TLS_INDEX;
/external/deqp-deps/glslang/glslang/MachineIndependent/
DPoolAlloc.cpp44 OS_TLSIndex PoolIndex;