Searched refs:symOffset (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/lld/lib/ReaderWriter/MachO/ |
D | MachONormalizedFileBinaryReader.cpp | 377 const uint32_t symOffset = read32(&st->symoff, isBig); in readBinary() local 379 if ( symOffset+(symCount*sizeof(nlist_64)) > objSize) in readBinary() 382 reinterpret_cast<const nlist_64 *>(start + symOffset); in readBinary() 409 const uint32_t symOffset = read32(&st->symoff, isBig); in readBinary() local 411 if ( symOffset+(symCount*sizeof(nlist)) > objSize) in readBinary() 414 reinterpret_cast<const nlist *>(start + symOffset); in readBinary()
|
D | MachONormalizedFileBinaryWriter.cpp | 150 uint32_t &symOffset, uint32_t &strOffset); 1048 uint32_t &symOffset, uint32_t &strOffset) { in appendSymbols() argument 1051 nlist_64* nb = reinterpret_cast<nlist_64*>(&_buffer[symOffset]); in appendSymbols() 1059 symOffset += sizeof(nlist_64); in appendSymbols() 1061 nlist* nb = reinterpret_cast<nlist*>(&_buffer[symOffset]); in appendSymbols() 1069 symOffset += sizeof(nlist); in appendSymbols() 1100 uint32_t symOffset = _startOfSymbols; in writeSymbolTable() local 1105 appendSymbols(_file.stabsSymbols, symOffset, strOffset); in writeSymbolTable() 1106 appendSymbols(_file.localSymbols, symOffset, strOffset); in writeSymbolTable() 1107 appendSymbols(_file.globalSymbols, symOffset, strOffset); in writeSymbolTable() [all …]
|
/external/llvm-project/lld/COFF/ |
D | PDB.cpp | 463 unsigned symOffset, const CVSymbol &sym) { in addGlobalSymbol() argument 486 ps.SymOffset = symOffset; in addGlobalSymbol()
|