Home
last modified time | relevance | path

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

/external/bison/src/
DLR0.c102 size_t *symbol_count = xcalloc (nsyms + nuseless_nonterminals, in allocate_itemsets() local
103 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()
/external/llvm/lib/Object/
DArchive.cpp598 uint32_t symbol_count = 0; in symbol_begin() local
599 symbol_count = read32be(buf); in symbol_begin()
600 buf += sizeof(uint32_t) + (symbol_count * (sizeof(uint32_t))); in symbol_begin()
602 uint64_t symbol_count = read64be(buf); in symbol_begin() local
603 buf += sizeof(uint64_t) + (symbol_count * (sizeof(uint64_t))); in symbol_begin()
638 uint32_t symbol_count = 0; in symbol_begin() local
641 symbol_count = read32le(buf); in symbol_begin()
642 buf += 4 + (symbol_count * 2); // Skip indices. in symbol_begin()
/external/mesa3d/src/gallium/drivers/radeon/
Dradeon_elf_util.c42 unsigned symbol_count = in parse_symbol_table() local
52 binary->global_symbol_offsets = CALLOC(symbol_count, sizeof(uint64_t)); in parse_symbol_table()
/external/mesa3d/src/amd/common/
Dac_binary.c48 unsigned symbol_count = in parse_symbol_table() local
58 binary->global_symbol_offsets = CALLOC(symbol_count, sizeof(uint64_t)); in parse_symbol_table()
/external/bison/
DChangeLog-201220279 `symbol_count' was used for two different purpose: once to count
20283 Deobfuscate, i.e., allocate, use and free `symbol_count' here
20286 (allocate_itemsets): symbol_count includes useless nonterminals.