Lines Matching defs:builtin_tls
126 static struct builtin_tls {
130 } builtin_tls[1];
131 #define MIN_TLS_ALIGN offsetof(struct builtin_tls, pt)
1820 /* Setup early thread pointer in builtin_tls for ldso/libc itself to
1825 libc.tls_size = sizeof builtin_tls;
1827 if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
2072 void *initial_tls = builtin_tls;
2073 if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
2090 if (initial_tls != builtin_tls) {
2098 * builtin_tls so that __copy_tls will use the same layout
2100 libc.tls_size = sizeof builtin_tls;
2101 if (__copy_tls((void*)builtin_tls) != self) a_crash();