Searched refs:dtv (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.3-release/lib/libc/gen/
H A Dtls.c123 Elf_Addr *dtv; local
127 dtv = tls[0];
128 __jemalloc_a0free(dtv);
138 Elf_Addr *dtv; local
153 dtv = tls[0];
154 dtv[2] = (Elf_Addr)tls + TLS_TCB_SIZE;
156 dtv = __jemalloc_a0malloc(3 * sizeof(Elf_Addr));
157 tls[0] = dtv;
158 dtv[0] = 1;
159 dtv[
185 Elf_Addr* dtv; local
209 Elf_Addr *dtv; local
[all...]
/freebsd-10.3-release/libexec/rtld-elf/
H A Drtld.c252 int tls_dtv_generation = 1; /* Used to detect when dtv size changes */
4265 Elf_Addr *newdtv, *dtv; local
4269 dtv = *dtvp;
4270 /* Check dtv generation in case new modules have arrived */
4271 if (dtv[0] != tls_dtv_generation) {
4274 to_copy = dtv[1];
4277 memcpy(&newdtv[2], &dtv[2], to_copy * sizeof(Elf_Addr));
4280 free(dtv);
4282 dtv = *dtvp = newdtv;
4286 if (dtv[inde
4299 Elf_Addr *dtv; local
4320 Elf_Addr *dtv; local
4368 Elf_Addr *dtv; local
4401 Elf_Addr *dtv, *olddtv; local
4466 Elf_Addr* dtv; local
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp484 addr_t dtv = ReadPointer (dtv_ptr); local
485 if (dtv == LLDB_INVALID_ADDRESS)
489 addr_t dtv_slot = dtv + metadata.dtv_slot_size*modid;

Completed in 71 milliseconds