Searched refs:tls (Results 1 - 10 of 10) sorted by relevance
/frameworks/native/opengl/libs/EGL/ |
H A D | egl_tls.cpp | 73 egl_tls_t* tls = getTLS(); local 74 if (tls->error != error) { 86 tls->error = error; 91 egl_tls_t* tls = getTLS(); local 92 if (tls->logCallWithNoContext == true) { 93 tls->logCallWithNoContext = false; 100 egl_tls_t* tls = (egl_tls_t*)pthread_getspecific(sKey); local 101 if (tls == 0) { 102 tls = new egl_tls_t; 103 pthread_setspecific(sKey, tls); 110 egl_tls_t* tls = (egl_tls_t*)pthread_getspecific(sKey); local [all...] |
H A D | getProcAddress.cpp | 54 "ldr r12, [r12, %[tls]] \n" \ 61 : [tls] "J"(TLS_SLOT_OPENGL_API*4), \
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
H A D | ARMRelocationFunctions.h | 34 DECL_ARM_APPLY_RELOC_FUNC(tls) \ 143 { &tls, 104, "R_ARM_TLS_GD32" }, \ 146 { &tls, 107, "R_ARM_TLS_IE32" }, \ 147 { &tls, 108, "R_ARM_TLS_LE32" }, \
|
H A D | ARMRelocationFactory.cpp | 848 ARMRelocationFactory::Result tls(Relocation& pReloc, function
|
/frameworks/native/opengl/libs/GLES2/ |
H A D | gl2.cpp | 60 "ldr r12, [r12, %[tls]] \n" \ 66 : [tls] "J"(TLS_SLOT_OPENGL_API*4), \
|
/frameworks/native/libs/utils/ |
H A D | BufferedTextOutput.cpp | 89 static thread_store_t tls; member in namespace:android 93 ThreadState* ts = (ThreadState*) thread_store_get( &tls ); 96 thread_store_set( &tls, ts, threadDestructor );
|
/frameworks/rs/ |
H A D | rsScriptC.cpp | 30 #define GET_TLS() Context::ScriptTLSStruct * tls = \ 32 Context * rsc = tls->mContext; \ 33 ScriptC * sc = (ScriptC *) tls->mScript
|
/frameworks/native/opengl/libs/GLES_CM/ |
H A D | gl.cpp | 114 "ldr r12, [r12, %[tls]] \n" \ 120 : [tls] "J"(TLS_SLOT_OPENGL_API*4), \
|
/frameworks/rs/driver/ |
H A D | rsdBcc.cpp | 59 ScriptTLSStruct * tls = (ScriptTLSStruct *)pthread_getspecific(rsdgThreadTLSKey); local 60 rsAssert(tls); 61 Script *old = tls->mScript; 62 tls->mScript = sc;
|
H A D | rsdRuntimeStubs.cpp | 36 #define GET_TLS() ScriptTLSStruct * tls = \ 38 Context * rsc = tls->mContext; \ 39 ScriptC * sc = (ScriptC *) tls->mScript
|
Completed in 646 milliseconds