Searched defs:__get_tls (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/private/
H A D__get_tls.h33 # 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/
H A Dndk_cruft.cpp71 void** __get_tls() { function
72 #include "private/__get_tls.h"
73 return __get_tls();

Completed in 98 milliseconds