Symbol: TLS_TCB_SIZE
lib/libc/gen/tls.c
182
extra_size = tcbsize - TLS_TCB_SIZE;
lib/libc/gen/tls.c
184
post_size = roundup2(TLS_TCB_SIZE, libc_tls_init_align) - TLS_TCB_SIZE;
lib/libc/gen/tls.c
238
if (oldtcb != NULL && tcbsize == TLS_TCB_SIZE)
lib/libc/gen/tls.c
245
extra_size = tcbsize - TLS_TCB_SIZE;
lib/libc/gen/tls.c
247
post_size = roundup2(TLS_TCB_SIZE, libc_tls_init_align) - TLS_TCB_SIZE;
lib/libc/gen/tls.c
264
tls = (char *)tcb + TLS_TCB_SIZE + post_size;
lib/libc/gen/tls.c
446
tls = _rtld_allocate_tls(NULL, TLS_TCB_SIZE, TLS_TCB_ALIGN);
lib/libthr/thread/thr_ctrdtr.c
42
tcb = _rtld_allocate_tls(NULL, TLS_TCB_SIZE, TLS_TCB_ALIGN);
lib/libthr/thread/thr_ctrdtr.c
52
_rtld_free_tls(tcb, TLS_TCB_SIZE, TLS_TCB_ALIGN);
libexec/rtld-elf/aarch64/reloc.c
628
_tcb_set(allocate_tls(objs, NULL, TLS_TCB_SIZE, TLS_TCB_ALIGN));
libexec/rtld-elf/aarch64/rtld_machdep.h
92
round(TLS_TCB_SIZE, align) - TLS_TCB_SIZE
libexec/rtld-elf/amd64/reloc.c
543
addr = allocate_tls(objs, 0, TLS_TCB_SIZE, TLS_TCB_ALIGN);
libexec/rtld-elf/arm/reloc.c
462
_tcb_set(allocate_tls(objs, NULL, TLS_TCB_SIZE, TLS_TCB_ALIGN));
libexec/rtld-elf/arm/rtld_machdep.h
80
round(TLS_TCB_SIZE, align) - TLS_TCB_SIZE
libexec/rtld-elf/i386/reloc.c
518
tls = allocate_tls(objs, NULL, TLS_TCB_SIZE, TLS_TCB_ALIGN);
libexec/rtld-elf/powerpc/reloc.c
275
+ defobj->tlsoffset - TLS_TP_OFFSET - TLS_TCB_SIZE);
libexec/rtld-elf/powerpc/reloc.c
819
_tcb_set(allocate_tls(list, NULL, TLS_TCB_SIZE, TLS_TCB_ALIGN));
libexec/rtld-elf/powerpc/rtld_machdep.h
88
TLS_TCB_SIZE
libexec/rtld-elf/powerpc64/reloc.c
270
+ defobj->tlsoffset - TLS_TP_OFFSET - TLS_TCB_SIZE);
libexec/rtld-elf/powerpc64/reloc.c
716
_tcb_set(allocate_tls(list, NULL, TLS_TCB_SIZE, TLS_TCB_ALIGN));
libexec/rtld-elf/powerpc64/rtld_machdep.h
80
TLS_TCB_SIZE
libexec/rtld-elf/riscv/reloc.c
429
defobj->tlsoffset - TLS_TP_OFFSET - TLS_TCB_SIZE);
libexec/rtld-elf/riscv/reloc.c
468
_tcb_set(allocate_tls(objs, NULL, TLS_TCB_SIZE, TLS_TCB_ALIGN));
libexec/rtld-elf/riscv/rtld_machdep.h
101
TLS_TCB_SIZE
libexec/rtld-elf/rtld.c
5528
extra_size = tcbsize - TLS_TCB_SIZE;
libexec/rtld-elf/rtld.c
5561
if (oldtcb != NULL && tcbsize == TLS_TCB_SIZE)
libexec/rtld-elf/rtld.c
5564
assert(tcbsize >= TLS_TCB_SIZE);
libexec/rtld-elf/rtld.c
5569
extra_size = tcbsize - TLS_TCB_SIZE;
libexec/rtld-elf/rtld.c
5573
tls_block_size += pre_size + tls_static_space - TLS_TCB_SIZE -
libexec/rtld-elf/rtld.c
5640
assert(tcbsize >= TLS_TCB_SIZE);
libexec/rtld-elf/rtld.c
5646
tlsstart = (uintptr_t)tcb + TLS_TCB_SIZE + post_size;
sys/powerpc/include/tls.h
36
#define TLS_TCB_ALIGN TLS_TCB_SIZE
sys/powerpc/include/tls.h
44
"r" ((uint8_t *)tcb + TLS_TP_OFFSET + TLS_TCB_SIZE));
sys/powerpc/include/tls.h
47
"r" ((uint8_t *)tcb + TLS_TP_OFFSET + TLS_TCB_SIZE));
sys/powerpc/include/tls.h
58
"i" (-(TLS_TP_OFFSET + TLS_TCB_SIZE)));
sys/powerpc/include/tls.h
61
"i" (-(TLS_TP_OFFSET + TLS_TCB_SIZE)));
sys/riscv/include/tls.h
48
__asm __volatile("addi tp, %0, %1" :: "r" (tcb), "I" (TLS_TCB_SIZE));
sys/riscv/include/tls.h
56
__asm __volatile("addi %0, tp, %1" : "=r" (tcb) : "I" (-TLS_TCB_SIZE));