/external/llvm/lib/Object/ |
Archive.cpp | 393 uint32_t symbol_count = 0; local 394 symbol_count = *reinterpret_cast<const support::ubig32_t*>(buf); 395 buf += sizeof(uint32_t) + (symbol_count * (sizeof(uint32_t))); 400 uint32_t symbol_count = 0; local 403 symbol_count = *reinterpret_cast<const support::ulittle32_t*>(buf); 404 buf += 4 + (symbol_count * 2); // Skip indices. 415 uint32_t symbol_count = 0; local 417 symbol_count = *reinterpret_cast<const support::ubig32_t*>(buf); 424 symbol_count = *reinterpret_cast<const support::ulittle32_t*>(buf); 427 Symbol(this, symbol_count, 0)) [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/valgrind/main/coregrind/m_initimg/ |
simple_huffman.c | 453 UInt k, m, symbol_count, swaps; local 470 symbol_count = 0; 471 _Huffman_RecoverTree( sym, &stream, 0, 0, &symbol_count ); 477 for( k = 0; k < symbol_count-1; ++ k ) 497 for( m = 0; m < symbol_count; ++ m )
|
/system/core/libcorkscrew/ |
symbol_table.c | 142 size_t symbol_count = 0; local 151 symbol_count++; 157 table->num_symbols += symbol_count + dynsymbol_count;
|
/external/chromium_org/v8/src/ |
parser.h | 110 int symbol_count() { function in class:v8::internal::ScriptDataImpl 552 symbol_cache_.Initialize(data ? data->symbol_count() : 0, zone());
|
parser.cc | 351 int symbol_count = local 353 if (symbol_count < 0) return false; [all...] |
/external/v8/src/ |
parser.h | 129 int symbol_count() { function in class:v8::internal::ScriptDataImpl
|
parser.cc | 348 int symbol_count = local 350 if (symbol_count < 0) return false; 540 symbol_cache_(pre_data ? pre_data->symbol_count() : 0), [all...] |