Searched refs:symbol_count (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Object/
H A DArchive.cpp434 uint32_t symbol_count = 0; local
435 symbol_count = *reinterpret_cast<const support::ubig32_t*>(buf);
436 buf += sizeof(uint32_t) + (symbol_count * (sizeof(uint32_t)));
456 uint32_t symbol_count = 0; local
459 symbol_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
460 buf += 4 + (symbol_count * 2); // Skip indices.
471 uint32_t symbol_count = 0; local
473 symbol_count = *reinterpret_cast<const support::ubig32_t*>(buf);
475 symbol_count = (*reinterpret_cast<const support::ulittle32_t *>(buf)) /
481 symbol_count
[all...]
/external/bison/src/
H A DLR0.c103 size_t *symbol_count = xcalloc (nsyms + nuseless_nonterminals,
104 sizeof *symbol_count);
110 symbol_count[*rhsp]++;
126 count += symbol_count[i];
129 free (symbol_count);
102 size_t *symbol_count = xcalloc (nsyms + nuseless_nonterminals, local
/external/chromium_org/net/spdy/
H A Dhpack_huffman_table.h71 bool Initialize(const Symbol* input_symbols, size_t symbol_count);
H A Dhpack_huffman_table.cc57 size_t symbol_count) {
60 std::vector<Symbol> symbols(symbol_count);
62 for (size_t i = 0; i != symbol_count; i++) {
56 Initialize(const HpackHuffmanSymbol* input_symbols, size_t symbol_count) argument

Completed in 133 milliseconds