Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/binutils/binutils/
H A Drddbg.c128 bfd_size_type stroff, next_stroff; in read_section_stabs_debugging_info() local
159 stroff = 0; in read_section_stabs_debugging_info()
181 stroff = next_stroff; in read_section_stabs_debugging_info()
190 if (stroff + strx > strsize) in read_section_stabs_debugging_info()
198 s = (char *) strings + stroff + strx; in read_section_stabs_debugging_info()
210 + stroff in read_section_stabs_debugging_info()
H A Dresbin.c284 rc_uint_type stroff; in bin_to_res_menuitems() local
298 stroff = 4; in bin_to_res_menuitems()
300 stroff = 2; in bin_to_res_menuitems()
302 if (length < stroff + 2) in bin_to_res_menuitems()
305 if (windres_get_16 (wrbfd, data + stroff, 2) == 0) in bin_to_res_menuitems()
311 mi->text = get_unicode (wrbfd, data + stroff, length - stroff, &slen); in bin_to_res_menuitems()
313 itemlen = stroff + slen * 2 + 2; in bin_to_res_menuitems()
/freebsd-12.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-12.1/contrib/binutils/bfd/
H A Dstabs.c160 bfd_size_type stroff, next_stroff, skip; in _bfd_link_section_stabs() local
232 stroff = 0; in _bfd_link_section_stabs()
259 stroff = next_stroff; in _bfd_link_section_stabs()
273 symstroff = stroff + bfd_get_32 (abfd, sym + STRDXOFF); in _bfd_link_section_stabs()
331 + stroff in _bfd_link_section_stabs()
H A Dsyms.c921 bfd_size_type stroff; in _bfd_stab_section_find_nearest_line() local
1127 for (i = 0, stroff = 0, stab = info->stabs, str = info->strs; in _bfd_stab_section_find_nearest_line()
1135 if ((bfd_size_type) ((info->strs + strsize) - str) < stroff) in _bfd_stab_section_find_nearest_line()
1137 str += stroff; in _bfd_stab_section_find_nearest_line()
1138 stroff = bfd_get_32 (abfd, stab + VALOFF); in _bfd_stab_section_find_nearest_line()
/freebsd-12.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-12.1/lib/libc/gen/
H A Dnlist.c112 off_t stroff, symoff; in __aout_fdnlist() local
151 stroff = symoff + symsize; in __aout_fdnlist()
154 strtab = a_out_mmap + stroff; in __aout_fdnlist()
/freebsd-12.1/contrib/binutils/gas/
H A Dstabs.c304 unsigned int stroff; in s_stab_generic() local
340 stroff = get_stab_string_offset (string, stabstr_secname); in s_stab_generic()
351 md_number_to_chars (p, (valueT) stroff, 4); in s_stab_generic()
H A DChangeLog-96975230 string. Pass string, not string + stroff, to OBJ_PROCESS_STAB in
/freebsd-12.1/sys/i386/ibcs2/
H A Dimgact_coff.c395 long stroff, nextoff; local
399 stroff = 4 * *(long *)(buf + j + sizeof(long));
401 libname = buf + j + stroff;
/freebsd-12.1/contrib/binutils/gas/config/
H A Dobj-coff.c1737 unsigned int stroff; in obj_coff_init_stab_section() local
1747 stroff = get_stab_string_offset (file, stabstr_name); in obj_coff_init_stab_section()
1748 know (stroff == 1); in obj_coff_init_stab_section()
1749 md_number_to_chars (p, stroff, 4); in obj_coff_init_stab_section()
H A Dobj-elf.c1635 unsigned int stroff; in obj_elf_init_stab_section() local
1649 stroff = get_stab_string_offset (file, stabstr_name); in obj_elf_init_stab_section()
1650 know (stroff == 1); in obj_elf_init_stab_section()
1651 md_number_to_chars (p, stroff, 4); in obj_elf_init_stab_section()
/freebsd-12.1/contrib/dtc/
H A Dflattree.c690 uint32_t proplen, stroff; in flat_read_property() local
695 stroff = flat_read_word(dtbuf); in flat_read_property()
697 name = flat_read_stringtable(strbuf, stroff); in flat_read_property()
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryReader.cpp370 const char *strings = start + read32(&st->stroff, isBig); in readBinary()
373 if (read32((const uint8_t *)&st->stroff, isBig) + in readBinary()
H A DMachONormalizedFileBinaryWriter.cpp783 st->stroff = _startOfSymbolStrings; in writeLoadCommands()
870 st->stroff = _startOfSymbolStrings; in writeLoadCommands()
/freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/
H A DMachO.h684 uint32_t stroff; member
1044 sys::swapByteOrder(lc.stroff); in swapStruct()
/freebsd-12.1/contrib/llvm/lib/Object/
H A DMachOObjectFile.cpp434 if (Symtab.stroff > FileSize) in checkSymtabCommand()
438 BigSize = Symtab.stroff; in checkSymtabCommand()
444 if (Error Err = checkOverlappingElement(Elements, Symtab.stroff, in checkSymtabCommand()
4450 Cmd.stroff = 0; in getSymtabLoadCommand()
4578 return getData().substr(S.stroff, S.strsize); in getStringTableData()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp525 IO.mapRequired("stroff", LoadCommand.stroff); in mapping()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c294 (char *)(baton->mach_header_start + symtab_cmd.stroff); in scan_macho_load_commands()
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp8378 outs() << " stroff " << st.stroff; in PrintSymtabLoadCommand()
8379 if (st.stroff > object_size) in PrintSymtabLoadCommand()
8384 big_size = st.stroff; in PrintSymtabLoadCommand()