Lines Matching defs:wordsize

302                        config->wordsize, ".note.gnu.property") {}
451 size_t aligned = alignTo(d.size(), config->wordsize);
487 off += alignTo(rec->cie->size, config->wordsize);
491 off += alignTo(fde->size, config->wordsize);
600 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_PROGBITS, config->wordsize,
628 tlsIndexOff = numEntries * config->wordsize;
634 return this->getVA() + b.globalDynIndex * config->wordsize;
638 return b.globalDynIndex * config->wordsize;
642 size = numEntries * config->wordsize;
742 return index * config->wordsize;
750 return g.tls.lookup(sym) * config->wordsize;
752 return g.global.lookup(sym) * config->wordsize;
753 return g.local16.lookup({sym, addend}) * config->wordsize;
758 return g.dynTlsSymbols.lookup(nullptr) * config->wordsize;
765 return g.dynTlsSymbols.lookup(sym) * config->wordsize;
798 if (count * config->wordsize > config->mipsGotSize)
808 size = headerEntriesNum * config->wordsize;
810 size += g.getEntriesNum() * config->wordsize;
943 uint64_t offset = p.second * config->wordsize;
949 uint64_t offset = p.second * config->wordsize;
966 offset += config->wordsize;
978 uint64_t offset = p.second * config->wordsize;
988 uint64_t offset = (l.second.firstIndex + pi) * config->wordsize;
994 uint64_t offset = p.second * config->wordsize;
1013 return getVA() + gots[*f->mipsGotIndex].startIndex * config->wordsize +
1032 writeUint(buf + config->wordsize, (uint64_t)1 << (config->wordsize * 8 - 1));
1038 writeUint(buf + i * config->wordsize, va);
1084 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_PROGBITS, config->wordsize,
1100 return (target->gotPltHeaderEntriesNum + entries.size()) * config->wordsize;
1105 buf += target->gotPltHeaderEntriesNum * config->wordsize;
1108 buf += config->wordsize;
1136 config->wordsize, getIgotPltName()) {}
1144 return entries.size() * config->wordsize;
1150 buf += config->wordsize;
1194 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_DYNAMIC, config->wordsize,
1532 : SyntheticSection(SHF_ALLOC, type, config->wordsize, name),
1578 config->wordsize, ".relr.dyn") {}
1717 } while (i != e && (i - 1)->r_offset + config->wordsize == i->r_offset);
1803 add(config->wordsize);
1871 this->entsize = config->wordsize;
1910 const size_t wordsize = sizeof(typename ELFT::uint);
1914 const size_t nBits = wordsize * 8 - 1;
1927 uint64_t base = offsets[i] + wordsize;
1938 if (delta >= nBits * wordsize)
1941 // If it is not a multiple of wordsize away, it cannot be folded.
1942 if (delta % wordsize)
1946 bitmap |= 1ULL << (delta / wordsize);
1954 base += nBits * wordsize;
1972 config->wordsize,
2271 : SyntheticSection(SHF_ALLOC, SHT_GNU_HASH, config->wordsize, ".gnu.hash") {
2284 maskWords = NextPowerOf2(numBits / (config->wordsize * 8));
2288 size += config->wordsize * maskWords; // Bloom filter
2308 buf += config->wordsize * maskWords;
2325 uint64_t val = readUint(buf + i * config->wordsize);
2328 writeUint(buf + i * config->wordsize, val);
3258 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_PROGBITS, config->wordsize,
3263 config->wordsize, ".ARM.exidx") {}