Searched refs:post_size (Results 1 – 3 of 3) sorted by relevance
/freebsd/lib/libc/gen/ |
H A D | tls.c | 180 size_t extra_size, post_size, pre_size, tls_block_size; in get_tls_block_ptr() local 185 post_size = roundup2(TLS_TCB_SIZE, libc_tls_init_align) - TLS_TCB_SIZE; in get_tls_block_ptr() 187 post_size = 0; in get_tls_block_ptr() 189 tls_block_size = tcbsize + post_size; in get_tls_block_ptr() 238 size_t extra_size, maxalign, post_size, pre_size, tls_block_size; in __libc_allocate_tls() local 249 post_size = roundup2(TLS_TCB_SIZE, libc_tls_init_align) - TLS_TCB_SIZE; in __libc_allocate_tls() 251 post_size = 0; in __libc_allocate_tls() 253 tls_block_size = tcbsize + post_size; in __libc_allocate_tls() 266 tls = (char *)tcb + TLS_TCB_SIZE + post_size; in __libc_allocate_tls()
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | dmu_direct.c | 53 size_t post_size = buf_size - size; in make_abd_for_dbuf() local 54 post_buf = abd_alloc_for_io(post_size, B_TRUE); in make_abd_for_dbuf() 55 buf_size -= post_size; in make_abd_for_dbuf()
|
/freebsd/libexec/rtld-elf/ |
H A D | rtld.c | 5336 size_t extra_size, post_size, pre_size, tls_block_size; in get_tls_block_ptr() local 5343 post_size = calculate_tls_post_size(tls_init_align); in get_tls_block_ptr() 5344 tls_block_size = tcbsize + post_size; in get_tls_block_ptr() 5368 size_t extra_size, maxalign, post_size, pre_size, tls_block_size; in allocate_tls() local 5380 post_size = calculate_tls_post_size(tls_init_align); in allocate_tls() 5381 tls_block_size = tcbsize + post_size; in allocate_tls() 5384 post_size; in allocate_tls() 5441 size_t post_size; in free_tls() local 5448 post_size = calculate_tls_post_size(tls_init_align); in free_tls() 5450 tlsstart = (Elf_Addr)tcb + TLS_TCB_SIZE + post_size; in free_tls()
|