HomeSort by relevance Sort by last modified time
    Searched defs:__get_tls (Results 1 - 2 of 2) 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 66 extern "C" void** __get_tls() { function
67 #include "private/__get_tls.h"
68 return __get_tls();

Completed in 111 milliseconds