Home
last modified time | relevance | path

Searched refs:tlsIndex (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/gallium/frontends/wgl/
Dstw_tls.c35 static DWORD tlsIndex = TLS_OUT_OF_INDEXES; variable
63 tlsIndex = TlsAlloc(); in stw_tls_init()
64 if (tlsIndex == TLS_OUT_OF_INDEXES) { in stw_tls_init()
177 if (tlsIndex == TLS_OUT_OF_INDEXES) { in stw_tls_init_thread()
186 TlsSetValue(tlsIndex, data); in stw_tls_init_thread()
196 if (tlsIndex == TLS_OUT_OF_INDEXES) { in stw_tls_cleanup_thread()
200 data = (struct stw_tls_data *) TlsGetValue(tlsIndex); in stw_tls_cleanup_thread()
202 TlsSetValue(tlsIndex, NULL); in stw_tls_cleanup_thread()
216 if (tlsIndex != TLS_OUT_OF_INDEXES) { in stw_tls_cleanup()
228 TlsFree(tlsIndex); in stw_tls_cleanup()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DLLVMJIT.cpp95 auto tlsIndex = static_cast<MSanTLS>(reinterpret_cast<uintptr_t>(control)); in getTLSAddress() local
96 switch(tlsIndex) in getTLSAddress()
104 UNSUPPORTED("MemorySanitizer used an unrecognized TLS variable: %d", tlsIndex); in getTLSAddress()