/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
symbol_table.c | 28 struct symbol { struct 30 * Link to the next symbol in the table with the same name 35 struct symbol *next_with_same_name; 39 * Link to the next symbol in the table with the same scope 44 struct symbol *next_with_same_scope; 54 * Name space of the symbol 61 /** Scope depth where this symbol was defined. */ 74 /** Linkage in list of all headers in a given symbol table. */ 77 /** Symbol name. */ 81 struct symbol *symbols [all...] |
/external/linux-tools-perf/util/ |
probe-event.h | 12 char *symbol; /* Base symbol */ member in struct:probe_trace_point 13 unsigned long offset; /* Offset from symbol */
|
/external/llvm/bindings/python/llvm/ |
object.py | 19 Section, Symbol, and Relocation, respectively. 40 To aid working around this limitation, each Section, Symbol, and Relocation 60 for symbol in symbols: 61 print symbol.name # This raises because the object has expired. 65 for symbol in obj.get_symbols(): 66 symbols.append(symbol) 67 print symbol.name 69 for symbol in symbols: 70 print symbol.name # OK 71 print symbol.address # NOT OK. We didn't look up this property before 392 def symbol(self): member in class:Relocation [all...] |
/external/lzma/CPP/7zip/Compress/ |
RangeCoder.h | 89 void EncodeBit(UInt32 size0, UInt32 numTotalBits, UInt32 symbol)
92 if (symbol == 0)
184 UInt32 symbol;
local 187 symbol = 0;
192 symbol = 1;
197 return symbol;
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
module.hpp | 78 struct symbol { struct in struct:clover::module 79 symbol(const clover::compat::vector<char> &name, resource_id section, function in struct:clover::module::symbol 82 symbol() : name(), section(0), offset(0), args() { } function in struct:clover::module::symbol 93 /// Look up a symbol by name. Throws module::noent_error if not 95 const symbol &sym(compat::string name) const; 101 clover::compat::vector<symbol> syms;
|
/external/mesa3d/src/mesa/program/ |
symbol_table.c | 28 struct symbol { struct 30 * Link to the next symbol in the table with the same name 35 struct symbol *next_with_same_name; 39 * Link to the next symbol in the table with the same scope 44 struct symbol *next_with_same_scope; 54 * Name space of the symbol 61 /** Scope depth where this symbol was defined. */ 74 /** Linkage in list of all headers in a given symbol table. */ 77 /** Symbol name. */ 81 struct symbol *symbols [all...] |
/external/openfst/src/include/fst/script/ |
print-impl.h | 80 string symbol = syms->Find(id); local 81 if (symbol == "") { 83 << " is not mapped to any textual symbol" 84 << ", symbol table = " << syms->Name() 86 symbol = "?"; 88 *ostrm_ << symbol; local 137 const SymbolTable *isyms_; // ilabel symbol table 138 const SymbolTable *osyms_; // olabel symbol table 139 const SymbolTable *ssyms_; // slabel symbol table
|
/external/openfst/src/include/fst/ |
string.h | 42 enum TokenType { SYMBOL = 1, BYTE = 2, UTF8 = 3 }; 131 VLOG(1) << "StringCompiler::ConvertSymbolToLabel: Symbol \"" << s 132 << "\" is not mapped to any integer label, symbol table = " 149 TokenType token_type_; // Token type: symbol, byte or utf8 encoded 150 const SymbolTable *syms_; // Symbol table used when token type is symbol 151 Label unknown_label_; // Label for token missing from symbol table 166 enum TokenType { SYMBOL = 1, BYTE = 2, UTF8 = 3 }; 182 if (token_type_ == SYMBOL) { 248 string symbol = syms_->Find(lab) local 255 ostrm << symbol; local [all...] |
/external/openfst/src/lib/ |
symbol-table.cc | 20 // Classes to provide symbol-to-integer and integer-to-symbol mappings. 22 #include <fst/symbol-table.h> 27 "Require symbol tables to match when appropriate"); 36 // Identifies stream data as a symbol table (and its endianity) 64 const char *symbol = col[0]; local 76 impl->AddSymbol(symbol, key); 122 int64 SymbolTableImpl::AddSymbol(const string& symbol, int64 key) { 124 symbol_map_.find(symbol.c_str()); 128 char *csymbol = new char[symbol.size() + 1] 180 string symbol; local [all...] |
/external/oprofile/libpp/ |
format_output.h | 3 * outputting format for symbol lists 22 #include "symbol.h" 55 /// use global count rather symbol count for details percent 89 : symbol(sym), sample(s), pclass(pc), 91 symbol_entry const & symbol; member in struct:format_output::formatter::field_datum 135 void do_output(std::ostream & out, symbol_entry const & symbol, 167 /// symbol count 191 /** output one symbol symb to out according to the output format 195 /// output details for the symbol 231 /// output a single symbol [all...] |
profile_container.cpp | 20 #include "symbol.h" 71 // the range of sample_entry inside each symbol entry are valid 125 symbol_entry const * symbol = symbols->insert(symb_entry); local 128 add_samples(abfd, i, p_it, symbol, pclass, start); 136 symbol_entry const * symbol, size_t pclass, 159 samples->insert(symbol, sample); 201 // contain sample does not work: a symbol can contain samples and this 202 // symbol is in a source file that contain zero sample because only 276 profile_container::find_sample(symbol_entry const * symbol, bfd_vma vma) const 278 return samples->find_by_vma(symbol, vma) [all...] |
/external/qemu/android/ |
opengles.c | 75 void* symbol; local 79 symbol = adynamicLibrary_findSymbol(rendererLib, #name, &error); \ 80 if (symbol != NULL) { \ 81 name = symbol; \ 83 derror("GLES emulation: Could not find required symbol (%s): %s", #name, error); \
|
/external/qemu/ |
disas.c | 320 /* Look up symbol for debugging purpose. Returns "" if unknown. */ 323 const char *symbol = ""; local 327 symbol = s->lookup_symbol(s, orig_addr); 328 if (symbol[0] != '\0') { 333 return symbol;
|
/external/stlport/stlport/stl/ |
_monetary.h | 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
|
/external/valgrind/main/coregrind/m_initimg/ |
simple_huffman.c | 22 * 12 bits per symbol (for 8 bit symbols), meaning a maximum of 384 71 UInt Symbol; 189 sym[k].Symbol = k; 201 /* Sort histogram - most frequent symbol first (bubble sort) */ 233 /* Append symbol to tree description */ 235 _Huffman_WriteBits( stream, sym[first].Symbol, 8 ); 237 /* Store code info in symbol array */ 313 UInt symbol; local 318 /* Get symbol from tree description */ 319 symbol = _Huffman_ReadBits( stream, 8 ) 371 UInt k, total_bytes, swaps, symbol, last_symbol; local [all...] |
/frameworks/compile/mclinker/include/mcld/LD/ |
BranchIsland.h | 119 const LDSymbol* symbol() const { return m_pSymbol; } function in class:mcld::BranchIsland::Key 127 llvm::StringRef sym_name(KEY.symbol()->name()); 140 (KEY1.symbol() == KEY2.symbol()) &&
|
/frameworks/compile/mclinker/lib/Fragment/ |
FragmentLinker.cpp | 59 Module::sym_iterator symbol, symEnd = m_Module.sym_end(); local 60 for (symbol = m_Module.sym_begin(); symbol != symEnd; ++symbol) { 62 if ((*symbol)->resolveInfo()->isAbsolute() || 63 (*symbol)->resolveInfo()->type() == ResolveInfo::File) { 66 (*symbol)->setValue(0x0); 70 if ((*symbol)->resolveInfo()->type() == ResolveInfo::ThreadLocal) { 71 m_Backend.finalizeTLSSymbol(**symbol); 75 if ((*symbol)->hasFragRef()) [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_monetary.h | 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_monetary.h | 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_monetary.h | 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_monetary.h | 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_monetary.h | 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_monetary.h | 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
|
/sdk/emulator/qtools/ |
coverage.cpp | 13 struct symbol { struct 17 typedef TraceReader<symbol> TraceReaderType; 87 TraceReader<symbol> *trace = new TraceReader<symbol>;
|
profile_trace.cpp | 12 struct symbol { struct 17 typedef TraceReader<symbol> TraceReaderType; 56 TraceReader<symbol> *trace = new TraceReader<symbol>; 74 // Assign the elapsed time to the previous function symbol
|