Searched refs:symbol_count (Results 1 – 3 of 3) sorted by relevance
453 uint32_t symbol_count = 0; in symbol_begin() local454 symbol_count = read32be(buf); in symbol_begin()455 buf += sizeof(uint32_t) + (symbol_count * (sizeof(uint32_t))); in symbol_begin()457 uint64_t symbol_count = read64be(buf); in symbol_begin() local458 buf += sizeof(uint64_t) + (symbol_count * (sizeof(uint64_t))); in symbol_begin()477 uint32_t symbol_count = 0; in symbol_begin() local480 symbol_count = read32le(buf); in symbol_begin()481 buf += 4 + (symbol_count * 2); // Skip indices. in symbol_begin()492 uint32_t symbol_count = 0; in symbol_end() local494 symbol_count = read32be(buf); in symbol_end()[all …]
102 size_t *symbol_count = xcalloc (nsyms + nuseless_nonterminals, in allocate_itemsets() local103 sizeof *symbol_count); in allocate_itemsets()109 symbol_count[*rhsp]++; in allocate_itemsets()125 count += symbol_count[i]; in allocate_itemsets()128 free (symbol_count); in allocate_itemsets()
20279 `symbol_count' was used for two different purpose: once to count20283 Deobfuscate, i.e., allocate, use and free `symbol_count' here20286 (allocate_itemsets): symbol_count includes useless nonterminals.