Lines Matching full:wordsize

318                        config->wordsize, ".note.gnu.property") {}  in GnuPropertySection()
682 tlsIndexOff = numEntries * config->wordsize; in addTlsIndex()
688 return sym.getTlsDescIdx() * config->wordsize; in getTlsDescOffset()
696 return this->getVA() + b.getTlsGdIdx() * config->wordsize; in getGlobalDynAddr()
700 return b.getTlsGdIdx() * config->wordsize; in getGlobalDynOffset()
708 size = numEntries * config->wordsize; in finalizeContents()
808 return index * config->wordsize; in getPageEntryOffset()
816 return g.tls.lookup(sym) * config->wordsize; in getSymEntryOffset()
818 return g.global.lookup(sym) * config->wordsize; in getSymEntryOffset()
819 return g.local16.lookup({sym, addend}) * config->wordsize; in getSymEntryOffset()
824 return g.dynTlsSymbols.lookup(nullptr) * config->wordsize; in getTlsIndexOffset()
831 return g.dynTlsSymbols.lookup(sym) * config->wordsize; in getGlobalDynOffset()
864 if (count * config->wordsize > config->mipsGotSize) in tryMergeGots()
874 size = headerEntriesNum * config->wordsize; in updateAllocSize()
876 size += g.getEntriesNum() * config->wordsize; in updateAllocSize()
1015 uint64_t offset = p.second * config->wordsize; in build()
1026 uint64_t offset = p.second * config->wordsize; in build()
1044 offset += config->wordsize; in build()
1057 uint64_t offset = p.second * config->wordsize; in build()
1068 uint64_t offset = (l.second.firstIndex + pi) * config->wordsize; in build()
1074 uint64_t offset = p.second * config->wordsize; in build()
1094 return getVA() + gots[f->mipsGotIndex].startIndex * config->wordsize + 0x7ff0; in getGp()
1112 writeUint(buf + config->wordsize, (uint64_t)1 << (config->wordsize * 8 - 1)); in writeTo()
1118 writeUint(buf + i * config->wordsize, va); in writeTo()
1165 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_PROGBITS, config->wordsize, in GotPltSection()
1281 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_DYNAMIC, config->wordsize, in DynamicSection()
1630 : SyntheticSection(SHF_ALLOC, type, config->wordsize, name), in RelocationBaseSection()
1748 config->wordsize, isAArch64Auth ? ".relr.auth.dyn" : ".relr.dyn"), in RelrBaseSection()
1862 } while (i != e && (i - 1)->r_offset + config->wordsize == i->r_offset); in updateAllocSize()
1948 add(config->wordsize); in updateAllocSize()
2018 this->entsize = config->wordsize; in RelrSection()
2055 // Same as Config->Wordsize but faster because this is a compile-time in updateAllocSize()
2057 const size_t wordsize = sizeof(typename ELFT::uint); in updateAllocSize() local
2061 const size_t nBits = wordsize * 8 - 1; in updateAllocSize()
2074 uint64_t base = offsets[i] + wordsize; in updateAllocSize()
2082 if (d >= nBits * wordsize || d % wordsize) in updateAllocSize()
2084 bitmap |= uint64_t(1) << (d / wordsize); in updateAllocSize()
2089 base += nBits * wordsize; in updateAllocSize()
2107 config->wordsize, in SymbolTableBaseSection()
2389 : SyntheticSection(SHF_ALLOC, SHT_GNU_HASH, config->wordsize, ".gnu.hash") { in GnuHashTableSection()
2402 maskWords = NextPowerOf2(numBits / (config->wordsize * 8)); in finalizeContents()
2406 size += config->wordsize * maskWords; // Bloom filter in finalizeContents()
2425 uint64_t val = readUint(buf + i * config->wordsize); in writeTo()
2428 writeUint(buf + i * config->wordsize, val); in writeTo()
2430 buf += config->wordsize * maskWords; in writeTo()
3985 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_PROGBITS, config->wordsize, in MipsRldMapSection()
3990 config->wordsize, ".ARM.exidx") {} in ARMExidxSyntheticSection()
4673 Out::programHeaders->addralign = config->wordsize; in createSyntheticSections()