HomeSort by relevance Sort by last modified time
    Searched defs:__get_tls (Results 1 - 3 of 3) sorted by null

  /bionic/libc/private/
__get_tls.h 33 # define __get_tls() ({ void** __val; __asm__("mrs %0, tpidr_el0" : "=r"(__val)); __val; }) macro
35 # define __get_tls() ({ void** __val; __asm__("mrc p15, 0, %0, c13, c0, 3" : "=r"(__val)); __val; }) macro
37 # define __get_tls() \ macro
46 # define __get_tls() ({ void** __val; __asm__("movl %%gs:0, %0" : "=r"(__val)); __val; }) macro
48 # define __get_tls() ({ void** __val; __asm__("mov %%fs:0, %0" : "=r"(__val)); __val; }) macro
  /bionic/libc/bionic/
ndk_cruft.cpp 74 void** __get_tls() { function
75 #include "private/__get_tls.h"
76 return __get_tls();
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 339 # define __get_tls() \ macro
342 # define __get_tls() \ macro
356 ThreadState* thr = (ThreadState*)__get_tls()[TLS_SLOT_TSAN];
362 thr = reinterpret_cast<ThreadState*>(__get_tls()[TLS_SLOT_TSAN]);
366 __get_tls()[TLS_SLOT_TSAN] = thr;
388 ThreadState* thr = (ThreadState*)__get_tls()[TLS_SLOT_TSAN];
390 __get_tls()[TLS_SLOT_TSAN] = dead_thread_state;

Completed in 3931 milliseconds