Home
last modified time | relevance | path

Searched refs:teb (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dthreadaux.d162 void** teb = getTEB( hnd ); in getTEB() local
164 return teb; in getTEB()
174 void** teb; in getTEB() local
175 asm pure nothrow @nogc { "movl %%fs:0x18, %0;" : "=r" (teb); } in getTEB()
176 return teb; in getTEB()
192 void** teb; in getTEB() local
193 asm pure nothrow @nogc { "movq %%gs:0x30, %0;" : "=r" (teb); } in getTEB()
194 return teb; in getTEB()
216 void** teb = getTEB( hnd ); in getThreadStackBottom() local
217 return teb[1]; in getThreadStackBottom()
[all …]
H A Ddll.d199 static bool addTlsData( void** teb, void* tlsstart, void* tlsend, int tlsindex ) nothrow in version()
208 void** peb = cast(void**) teb[12]; in version()
224 if ( tlsindex > 0 && teb[11] ) in version()
225 core.stdc.string.memcpy( array, teb[11], tlsindex * (void*).sizeof); in version()
227 teb[11] = cast(void*) array; in version()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_win.cpp224 PTEB teb = (PTEB)NtCurrentTeb(); in IsTlsInitialized() local
225 return teb->Reserved1[TEB_RESERVED_FIELDS_THREAD_LOCAL_STORAGE_OFFSET] != in IsTlsInitialized()