Home
last modified time | relevance | path

Searched refs:post_size (Results 1 – 2 of 2) sorted by relevance

/freebsd-12-stable/lib/libc/gen/
Dtls.c200 size_t extra_size, post_size, pre_size, tls_block_size; in get_tls_block_ptr() local
205 post_size = roundup2(TLS_TCB_SIZE, tls_init_align) - TLS_TCB_SIZE; in get_tls_block_ptr()
207 post_size = 0; in get_tls_block_ptr()
209 tls_block_size = tcbsize + post_size; in get_tls_block_ptr()
257 size_t extra_size, maxalign, post_size, pre_size, tls_block_size; in __libc_allocate_tls() local
268 post_size = roundup2(TLS_TCB_SIZE, tls_init_align) - TLS_TCB_SIZE; in __libc_allocate_tls()
270 post_size = 0; in __libc_allocate_tls()
272 tls_block_size = tcbsize + post_size; in __libc_allocate_tls()
284 tls = (char *)tcb + TLS_TCB_SIZE + post_size; in __libc_allocate_tls()
/freebsd-12-stable/libexec/rtld-elf/
Drtld.c4880 size_t extra_size, post_size, pre_size, tls_block_size; in get_tls_block_ptr() local
4887 post_size = calculate_tls_post_size(tls_init_align); in get_tls_block_ptr()
4888 tls_block_size = tcbsize + post_size; in get_tls_block_ptr()
4912 size_t extra_size, maxalign, post_size, pre_size, tls_block_size; in allocate_tls() local
4924 post_size = calculate_tls_post_size(tls_init_align); in allocate_tls()
4925 tls_block_size = tcbsize + post_size; in allocate_tls()
4927 tls_block_size += pre_size + tls_static_space - TLS_TCB_SIZE - post_size; in allocate_tls()
4980 size_t post_size; in free_tls() local
4987 post_size = calculate_tls_post_size(tls_init_align); in free_tls()
4989 tlsstart = (Elf_Addr)tcb + TLS_TCB_SIZE + post_size; in free_tls()