Home
last modified time | relevance | path

Searched refs:symbol_size (Results 1 – 5 of 5) sorted by relevance

/freebsd-11-stable/usr.bin/gzip/
HDunpack.c76 int symbol_size; /* Size of the symbol table */ member
208 unpackd->symbol_size = 1; /* EOB */ in unpack_parse_header()
213 unpackd->symbol_size += unpackd->symbolsin[i]; in unpack_parse_header()
216 if (unpackd->symbol_size > 256) in unpack_parse_header()
221 unpackd->symbol_eob = unpackd->symbol = calloc(1, unpackd->symbol_size); in unpack_parse_header()
/freebsd-11-stable/contrib/gdb/gdb/
HDgdb-stabs.h58 int symbol_size; /* Bytes in a single symbol */ member
84 #define DBX_SYMBOL_SIZE(o) (DBX_SYMFILE_INFO(o)->symbol_size)
HDdbxread.c86 int symbol_size; member
99 #define SYMBOL_SIZE(p) (SYMLOC(p)->symbol_size)
117 static unsigned symbol_size; variable
564 symbol_size = DBX_SYMBOL_SIZE (objfile); in dbx_symfile_read()
832 symbuf_end = nbytes / symbol_size; in fill_symbuf()
1373 symnum * symbol_size, in read_dbx_symtab()
1496 symnum * symbol_size, in read_dbx_symtab()
1532 first_so_symnum * symbol_size, in read_dbx_symtab()
2049 symnum * symbol_size, in read_dbx_symtab()
2122 symnum * symbol_size, in read_dbx_symtab()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
HDSymbolFileSymtab.cpp174 uint32_t symbol_size = curr_symbol->GetByteSize(); in ParseFunctions() local
175 if (symbol_size != 0 && !curr_symbol->GetSizeIsSibling()) in ParseFunctions()
176 func_range.SetByteSize(symbol_size); in ParseFunctions()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
HDMCAssembler.h355 size_t symbol_size() const { return Symbols.size(); } in symbol_size() function