Lines Matching defs:wordsize

325                        ctx.arg.wordsize) {}
674 authEntries.push_back({(numEntries - 1) * ctx.arg.wordsize, sym.isFunc()});
685 authEntries.push_back({(numEntries - 2) * ctx.arg.wordsize, true});
686 authEntries.push_back({(numEntries - 1) * ctx.arg.wordsize, false});
702 tlsIndexOff = numEntries * ctx.arg.wordsize;
708 return sym.getTlsDescIdx(ctx) * ctx.arg.wordsize;
716 return this->getVA() + b.getTlsGdIdx(ctx) * ctx.arg.wordsize;
720 return b.getTlsGdIdx(ctx) * ctx.arg.wordsize;
729 size = numEntries * ctx.arg.wordsize;
845 return index * ctx.arg.wordsize;
853 return g.tls.lookup(sym) * ctx.arg.wordsize;
855 return g.global.lookup(sym) * ctx.arg.wordsize;
856 return g.local16.lookup({sym, addend}) * ctx.arg.wordsize;
861 return g.dynTlsSymbols.lookup(nullptr) * ctx.arg.wordsize;
868 return g.dynTlsSymbols.lookup(sym) * ctx.arg.wordsize;
901 if (count * ctx.arg.wordsize > ctx.arg.mipsGotSize)
911 size = headerEntriesNum * ctx.arg.wordsize;
913 size += g.getEntriesNum() * ctx.arg.wordsize;
1052 uint64_t offset = p.second * ctx.arg.wordsize;
1063 uint64_t offset = p.second * ctx.arg.wordsize;
1082 offset += ctx.arg.wordsize;
1095 uint64_t offset = p.second * ctx.arg.wordsize;
1106 uint64_t offset = (l.second.firstIndex + pi) * ctx.arg.wordsize;
1112 uint64_t offset = p.second * ctx.arg.wordsize;
1132 return getVA() + gots[f->mipsGotIndex].startIndex * ctx.arg.wordsize + 0x7ff0;
1150 writeUint(ctx, buf + ctx.arg.wordsize,
1151 (uint64_t)1 << (ctx.arg.wordsize * 8 - 1));
1157 writeUint(ctx, buf + i * ctx.arg.wordsize, va);
1205 ctx.arg.wordsize) {
1322 ctx.arg.wordsize) {
1676 : SyntheticSection(ctx, name, type, SHF_ALLOC, ctx.arg.wordsize),
1796 SHF_ALLOC, ctx.arg.wordsize),
1910 } while (i != e && (i - 1)->r_offset + ctx.arg.wordsize == i->r_offset);
1996 add(ctx.arg.wordsize);
2067 this->entsize = ctx.arg.wordsize;
2104 const size_t wordsize = sizeof(typename ELFT::uint);
2108 const size_t nBits = wordsize * 8 - 1;
2121 uint64_t base = offsets[i] + wordsize;
2129 if (d >= nBits * wordsize || d % wordsize)
2131 bitmap |= uint64_t(1) << (d / wordsize);
2136 base += nBits * wordsize;
2156 ctx.arg.wordsize),
2445 ctx.arg.wordsize) {}
2457 maskWords = NextPowerOf2(numBits / (ctx.arg.wordsize * 8));
2461 size += ctx.arg.wordsize * maskWords; // Bloom filter
2481 uint64_t val = readUint(ctx, buf + i * ctx.arg.wordsize);
2484 writeUint(ctx, buf + i * ctx.arg.wordsize, val);
2486 buf += ctx.arg.wordsize * maskWords;
4059 ctx.arg.wordsize) {}
4063 SHF_ALLOC | SHF_LINK_ORDER, ctx.arg.wordsize) {}
4720 ctx.out.programHeaders->addralign = ctx.arg.wordsize;