HomeSort by relevance Sort by last modified time
    Searched refs:symbol_count (Results 1 - 5 of 5) sorted by null

  /bionic/libc/bionic/
vdso.cpp 74 size_t symbol_count = 0; local
78 symbol_count = vdso_shdr[i].sh_size / sizeof(ElfW(Sym));
81 if (symbol_count == 0) {
115 for (size_t i = 0; i < symbol_count; ++i) {
  /external/llvm/lib/Object/
Archive.cpp 434 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 = *reinterpret_cast<const support::ulittle32_t*>(buf)
    [all...]
  /external/bison/src/
LR0.c 103 size_t *symbol_count = xcalloc (nsyms + nuseless_nonterminals,
104 sizeof *symbol_count);
110 symbol_count[*rhsp]++;
116 appears as an item, which is SYMBOL_COUNT[S].
126 count += symbol_count[i];
129 free (symbol_count);
102 size_t *symbol_count = xcalloc (nsyms + nuseless_nonterminals, local
  /external/chromium_org/net/spdy/
hpack_huffman_table.h 71 bool Initialize(const Symbol* input_symbols, size_t symbol_count);
hpack_huffman_table.cc 57 size_t symbol_count) {
60 std::vector<Symbol> symbols(symbol_count);
62 for (size_t i = 0; i != symbol_count; i++) {

Completed in 881 milliseconds