Home
last modified time | relevance | path

Searched refs:stroff (Results 1 – 15 of 15) sorted by relevance

/freebsd-13.1/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_as.c96 ssize_t stroff; in dt_copyvar() local
103 stroff = dt_strtab_insert(pcb->pcb_strtab, idp->di_name); in dt_copyvar()
105 if (stroff == -1L) in dt_copyvar()
107 if (stroff > DIF_STROFF_MAX) in dt_copyvar()
110 dvp->dtdv_name = (uint_t)stroff; in dt_copyvar()
H A Ddt_cg.c1522 ssize_t stroff; in dt_cg_node() local
1930 stroff = dt_strtab_insert(yypcb->pcb_strtab, dnp->dn_string); in dt_cg_node()
1932 if (stroff == -1L) in dt_cg_node()
1934 if (stroff > DIF_STROFF_MAX) in dt_cg_node()
1937 instr = DIF_INSTR_SETS((ulong_t)stroff, dnp->dn_reg); in dt_cg_node()
/freebsd-13.1/sbin/restore/
H A Dsymtab.c445 long mynum = 1, stroff = 0; in dumpsymtable() local
474 stroff = 0; in dumpsymtable()
478 tep->e_name = (char *)stroff; in dumpsymtable()
479 stroff += allocsize(ep->e_namlen); in dumpsymtable()
509 hdr.stringsize = stroff; in dumpsymtable()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOWriter.cpp45 if (SymTabCommand.stroff) in totalSize()
46 Ends.push_back(SymTabCommand.stroff + SymTabCommand.strsize); in totalSize()
313 uint8_t *StrTable = (uint8_t *)Buf->getBufferStart() + SymTabCommand.stroff; in writeStringTable()
454 if (SymTabCommand.stroff) in writeTail()
455 Queue.push_back({SymTabCommand.stroff, &MachOWriter::writeStringTable}); in writeTail()
H A DMachOLayoutBuilder.cpp301 MLC.symtab_command_data.stroff = StartOfSymbolStrings; in layoutTail()
/freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryReader.cpp369 const char *strings = start + read32(&st->stroff, isBig); in readBinary()
372 if (read32((const uint8_t *)&st->stroff, isBig) + in readBinary()
H A DMachONormalizedFileBinaryWriter.cpp789 st->stroff = _startOfSymbolStrings; in writeLoadCommands()
876 st->stroff = _startOfSymbolStrings; in writeLoadCommands()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp457 std::make_pair(SymtabCmd->stroff, &MachOWriter::writeStringTable)); in writeLinkEditData()
H A DMachOYAML.cpp548 IO.mapRequired("stroff", LoadCommand.stroff); in mapping()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp441 if (Symtab.stroff > FileSize) in checkSymtabCommand()
445 BigSize = Symtab.stroff; in checkSymtabCommand()
451 if (Error Err = checkOverlappingElement(Elements, Symtab.stroff, in checkSymtabCommand()
4489 Cmd.stroff = 0; in getSymtabLoadCommand()
4632 return getData().substr(S.stroff, S.strsize); in getStringTableData()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h698 uint32_t stroff; member
1058 sys::swapByteOrder(lc.stroff); in swapStruct()
/freebsd-13.1/contrib/llvm-project/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c294 (char *)(baton->mach_header_start + symtab_cmd.stroff); in scan_macho_load_commands()
/freebsd-13.1/contrib/llvm-project/lld/MachO/
H A DWriter.cpp305 c->stroff = stringTableSection->fileOff; in writeTo()
H A DInputFiles.cpp788 const char *strtab = reinterpret_cast<const char *>(buf) + c->stroff; in parse()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp8811 outs() << " stroff " << st.stroff; in PrintSymtabLoadCommand()
8812 if (st.stroff > object_size) in PrintSymtabLoadCommand()
8817 big_size = st.stroff; in PrintSymtabLoadCommand()