Lines Matching refs:wordsize

307                        config->wordsize, ".note.gnu.property") {}  in GnuPropertySection()
647 tlsIndexOff = numEntries * config->wordsize; in addTlsIndex()
653 return sym.getTlsDescIdx() * config->wordsize; in getTlsDescOffset()
661 return this->getVA() + b.getTlsGdIdx() * config->wordsize; in getGlobalDynAddr()
665 return b.getTlsGdIdx() * config->wordsize; in getGlobalDynOffset()
673 size = numEntries * config->wordsize; in finalizeContents()
773 return index * config->wordsize; in getPageEntryOffset()
781 return g.tls.lookup(sym) * config->wordsize; in getSymEntryOffset()
783 return g.global.lookup(sym) * config->wordsize; in getSymEntryOffset()
784 return g.local16.lookup({sym, addend}) * config->wordsize; in getSymEntryOffset()
789 return g.dynTlsSymbols.lookup(nullptr) * config->wordsize; in getTlsIndexOffset()
796 return g.dynTlsSymbols.lookup(sym) * config->wordsize; in getGlobalDynOffset()
829 if (count * config->wordsize > config->mipsGotSize) in tryMergeGots()
839 size = headerEntriesNum * config->wordsize; in updateAllocSize()
841 size += g.getEntriesNum() * config->wordsize; in updateAllocSize()
980 uint64_t offset = p.second * config->wordsize; in build()
991 uint64_t offset = p.second * config->wordsize; in build()
1009 offset += config->wordsize; in build()
1022 uint64_t offset = p.second * config->wordsize; in build()
1033 uint64_t offset = (l.second.firstIndex + pi) * config->wordsize; in build()
1039 uint64_t offset = p.second * config->wordsize; in build()
1059 return getVA() + gots[f->mipsGotIndex].startIndex * config->wordsize + 0x7ff0; in getGp()
1077 writeUint(buf + config->wordsize, (uint64_t)1 << (config->wordsize * 8 - 1)); in writeTo()
1083 writeUint(buf + i * config->wordsize, va); in writeTo()
1130 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_PROGBITS, config->wordsize, in GotPltSection()
1246 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_DYNAMIC, config->wordsize, in DynamicSection()
1587 : SyntheticSection(SHF_ALLOC, type, config->wordsize, name), in RelocationBaseSection()
1700 config->wordsize, ".relr.dyn"), in RelrBaseSection()
1814 } while (i != e && (i - 1)->r_offset + config->wordsize == i->r_offset); in updateAllocSize()
1900 add(config->wordsize); in updateAllocSize()
1970 this->entsize = config->wordsize; in RelrSection()
2009 const size_t wordsize = sizeof(typename ELFT::uint); in updateAllocSize() local
2013 const size_t nBits = wordsize * 8 - 1; in updateAllocSize()
2026 uint64_t base = offsets[i] + wordsize; in updateAllocSize()
2034 if (d >= nBits * wordsize || d % wordsize) in updateAllocSize()
2036 bitmap |= uint64_t(1) << (d / wordsize); in updateAllocSize()
2041 base += nBits * wordsize; in updateAllocSize()
2059 config->wordsize, in SymbolTableBaseSection()
2341 : SyntheticSection(SHF_ALLOC, SHT_GNU_HASH, config->wordsize, ".gnu.hash") { in GnuHashTableSection()
2354 maskWords = NextPowerOf2(numBits / (config->wordsize * 8)); in finalizeContents()
2358 size += config->wordsize * maskWords; // Bloom filter in finalizeContents()
2377 uint64_t val = readUint(buf + i * config->wordsize); in writeTo()
2380 writeUint(buf + i * config->wordsize, val); in writeTo()
2382 buf += config->wordsize * maskWords; in writeTo()
2739 DWARFDataExtractor data(obj, *pub, config->isLE, config->wordsize); in readPubNamesAndTypes()
3348 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_PROGBITS, config->wordsize, in MipsRldMapSection()
3353 config->wordsize, ".ARM.exidx") {} in ARMExidxSyntheticSection()