Lines Matching defs:dst
189 char* dst = stringtable;
190 auto add_string = [&dst, &stringtable](std::string_view a) -> Elf32_Word {
191 const auto offset = dst - stringtable;
192 dst += a.copy(dst, 256u - offset);
193 *dst++ = '\0';
212 uint32_t stringTableSize = (uint32_t)((dst - stringtable) + 4);
274 char* dst = stringtable;
275 *dst = 0;
276 dst++;
277 auto add_string = [&dst, &stringtable](std::string_view a) -> Elf32_Word {
278 const auto offset = dst - stringtable;
279 dst += a.copy(dst, 256u - offset);
280 *dst++ = '\0';
321 o.sections[1].sh_size = static_cast<Elf32_Word>(dst - stringtable);