Lines Matching +full:576 +full:i
141 * There are two versions of variant I of TLS
143 * - ARM and aarch64 uses original variant I as is described in [1] and [2],
150 * - PowerPC and RISC-V use modified version of variant I, described in [3]
165 * https://members.openpowerfoundation.org/document/dl/576
196 * Free Static TLS using the Variant I method. The tcbsize
211 * Allocate Static TLS using the Variant I method.
409 int i; in _init_tls() local
436 for (i = 0; (unsigned) i < phnum; i++) { in _init_tls()
437 if (phdr[i].p_type == PT_TLS) { in _init_tls()
438 libc_tls_static_space = roundup2(phdr[i].p_memsz, in _init_tls()
439 phdr[i].p_align); in _init_tls()
440 libc_tls_init_size = phdr[i].p_filesz; in _init_tls()
441 libc_tls_init_align = phdr[i].p_align; in _init_tls()
442 libc_tls_init = (void *)phdr[i].p_vaddr; in _init_tls()