Lines Matching refs:Offset
59 uintptr_t offset = uintptr_t(addr) - uintptr_t(base());
60 if (offset < Header->PointerToSymbolTable
61 || offset >= Header->PointerToSymbolTable
65 assert((offset - Header->PointerToSymbolTable) % sizeof(coff_symbol)
81 uintptr_t offset = uintptr_t(addr) - uintptr_t(SectionTable);
82 assert(offset % sizeof(coff_section) == 0 &&
315 uint32_t Offset;
316 name.substr(1).getAsInteger(10, Offset);
317 if (error_code ec = getString(Offset, name))
563 error_code COFFObjectFile::getString(uint32_t offset,
568 if (offset >= StringTableSize)
570 Result = StringRef(StringTable + offset);
586 if (symbol->Name.Offset.Zeroes == 0) {
587 uint32_t Offset = symbol->Name.Offset.Offset;
588 if (error_code ec = getString(Offset, Res))