Lines Matching defs:builtin_tls
152 static struct builtin_tls {
156 } builtin_tls[1];
157 #define MIN_TLS_ALIGN offsetof(struct builtin_tls, pt)
3081 /* Setup early thread pointer in builtin_tls for ldso/libc itself to
3086 libc.tls_size = sizeof builtin_tls;
3088 if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
3372 void *initial_tls = builtin_tls;
3373 if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
3393 if (initial_tls != builtin_tls) {
3404 * builtin_tls so that __copy_tls will use the same layout
3406 libc.tls_size = sizeof builtin_tls;
3407 if (__copy_tls((void*)builtin_tls) != self) a_crash();