OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OS_TLSIndex
(Results
1 - 2
of
2
) sorted by null
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/OSDependent/
osinclude.h
43
typedef void*
OS_TLSIndex
;
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/swiftshader/src/OpenGL/compiler/
osinclude.h
52
typedef DWORD
OS_TLSIndex
;
55
typedef pthread_key_t
OS_TLSIndex
;
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)
Completed in 235 milliseconds