Lines Matching defs:wordsize

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