Home
last modified time | relevance | path

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

/freebsd/usr.bin/gzip/
H A Dunpack.c72 int symbol_size; /* Size of the symbol table */ member
201 unpackd->symbol_size = 1; /* EOB */ in unpack_parse_header()
206 unpackd->symbol_size += unpackd->symbolsin[i]; in unpack_parse_header()
209 if (unpackd->symbol_size > 256) in unpack_parse_header()
214 unpackd->symbol_eob = unpackd->symbol = calloc(1, unpackd->symbol_size); in unpack_parse_header()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp170 uint32_t symbol_size = curr_symbol->GetByteSize(); in ParseFunctions() local
171 if (symbol_size != 0 && !curr_symbol->GetSizeIsSibling()) in ParseFunctions()
172 func_range.SetByteSize(symbol_size); in ParseFunctions()