HomeSort by relevance Sort by last modified time
    Searched refs:symbol (Results 476 - 500 of 1029) sorted by null

<<11121314151617181920>>

  /external/chromium_org/net/spdy/
hpack_huffman_table.cc 60 std::vector<Symbol> symbols(symbol_count);
61 // Validate symbol id sequence, and copy into |symbols|.
69 // Order on length and ID ascending, to verify symbol codes are canonical.
91 // At least one code (such as an EOS symbol) must be 8 bits or longer.
99 // Order on symbol ID ascending.
105 void HpackHuffmanTable::BuildEncodeTable(const std::vector<Symbol>& symbols) {
107 const Symbol& symbol = symbols[i]; local
108 CHECK_EQ(i, symbol.id);
109 code_by_id_.push_back(symbol.code)
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
annotate.c 14 #include "symbol.h"
423 int symbol__annotate_init(struct map *map __maybe_unused, struct symbol *sym)
430 int symbol__alloc_hist(struct symbol *sym)
456 void symbol__annotate_zero_histograms(struct symbol *sym)
467 int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
640 static int disasm_line__print(struct disasm_line *dl, struct symbol *sym, u64 start,
759 * The offset will be a relative offset from the start of the symbol and -1
763 static int symbol__parse_objdump_line(struct symbol *sym, struct map *map,
833 struct symbol *s;
849 static void delete_last_nop(struct symbol *sym
    [all...]
probe-event.h 12 char *symbol; /* Base symbol */ member in struct:probe_trace_point
14 unsigned long offset; /* Offset from symbol */
  /external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
ItaniumABILanguageRuntime.cpp 21 #include "lldb/Symbol/ClangASTContext.h"
22 #include "lldb/Symbol/Symbol.h"
23 #include "lldb/Symbol/TypeList.h"
53 // vtable.) We can then look up the symbol containing this "address point" and that symbol's name
96 // Now find the symbol that contains this address:
105 Symbol *symbol = sc.symbol; local
    [all...]
  /external/llvm/test/MC/ARM/
comment.s 12 @ the symver directive should allow @ in the second symbol name
  /external/oprofile/daemon/liblegacy/
p_module.h 33 /* The symbol format used by get_kernel_syms(2). */
57 struct old_module_symbol symbol[0]; /* actual size defined by n_symbols */ member in struct:old_symbol_table
  /external/valgrind/main/memcheck/tests/
varinfo3.stderr.exp 34 Address 0x........ is 5 bytes inside data symbol "static_local_def.XXXX"
49 Address 0x........ is 7 bytes inside data symbol "static_local_undef.XXXX"
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/discovery/
NdkScannerInfoCollector.java 94 public void deleteSymbol(IResource resource, String symbol) {
  /external/bison/src/
gram.c 40 symbol **symbols = NULL;
68 rule_lhs_print (rule *r, symbol *previous_lhs, FILE *out)
124 xml_printf (out, level + 1, "<symbol>%s</symbol>",
178 symbol *previous_lhs = NULL;
332 /* Free the symbol table data structure. */
  /external/chromium_org/native_client_sdk/src/libraries/xray/
report.c 71 struct XRaySymbol* symbol; local
72 symbol = XRaySymbolTableLookup(symbols, addr);
73 symbol_name = XRaySymbolGetName(symbol);
xray_priv.h 94 const char* symbol);
96 XRAY_NO_INSTRUMENT const char* XRaySymbolGetName(struct XRaySymbol* symbol);
99 XRAY_NO_INSTRUMENT void XRaySymbolFree(struct XRaySymbol* symbol);
  /external/chromium_org/third_party/angle/src/compiler/translator/depgraph/
DependencyGraphBuilder.cpp 72 // Push the leftmost symbol of this function call into the current set of
95 // Push this symbol into the set of dependent symbols for the current
97 TGraphSymbol *symbol = mGraph->getOrCreateSymbol(intermSymbol); local
98 mNodeSets.insertIntoTopSet(symbol);
100 // If this symbol is the current leftmost symbol under an assignment, replace
101 // the previous leftmost symbol with this symbol.
105 mLeftmostSymbols.push(symbol);
139 // have found a real leftmost symbol, and the leftmost symbol shoul
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
glslang.l 402 TSymbol* symbol = yyextra->symbolTable.find(yytext, yyextra->shaderVersion);
403 if (symbol && symbol->isVariable()) {
404 TVariable* variable = static_cast<TVariable*>(symbol);
409 yylval->lex.symbol = symbol;
  /external/chromium_org/tools/find_runtime_symbols/
find_runtime_symbols.py 204 for address, symbol in symbols_dict.iteritems():
205 if symbol:
206 print '%016x %s' % (address, symbol)
  /external/chromium_org/v8/src/
interface.cc 51 const AstRawString* symbol = static_cast<const AstRawString*>(name); local
52 PrintF("%*s%.*s : ", Nesting::current(), "", symbol->length(),
53 symbol->raw_data());
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
annotate.c 10 #include "../../util/symbol.h"
200 static bool disasm_line__is_valid_jump(struct disasm_line *dl, struct symbol *sym)
217 struct symbol *sym = ms->sym;
341 struct symbol *sym = ms->sym;
433 static int sym_title(struct symbol *sym, struct map *map, char *title,
445 struct symbol *sym = ms->sym;
447 struct symbol *target;
466 ui__warning("Not enough memory for annotating '%s' symbol!\n",
483 struct symbol *sym = ms->sym;
522 struct symbol *sym = ms->sym
    [all...]
  /external/lldb/source/Target/
ThreadPlanStepOverRange.cpp 20 #include "lldb/Symbol/Block.h"
21 #include "lldb/Symbol/CompileUnit.h"
22 #include "lldb/Symbol/Function.h"
23 #include "lldb/Symbol/LineTable.h"
138 else if (m_addr_context.symbol && m_addr_context.symbol == older_context.symbol)
  /external/lldb/test/python_api/value/
TestValueAPI.py 105 symbol = target.ResolveLoadAddress(int(pointed.GetLocation(), 0)).GetSymbol()
106 self.assertTrue(symbol)
107 self.expect(symbol.GetName(), exe=False,
  /external/mksh/src/
syn.c 72 static bool reject; /* token(cf) gets symbol again */
73 static int symbol; /* yylex value */ variable
78 #define token(cf) ((reject) ? (ACCEPT, symbol) : (symbol = yylex(cf)))
79 #define tpeek(cf) ((reject) ? (symbol) : (REJECT, symbol = yylex(cf)))
339 if (symbol != /*(*/ ')')
621 if (symbol != endtok) {
623 symbol == '}' ? Tcbrace : Tesac, ATEMP);
643 switch (symbol) {
    [all...]
  /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/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...]
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
picoloaddbg.lua 39 --- table with symbol name keys (not really used currently)
41 --- table with symbol name number keys (specified with property mapval)
43 --- array of symbol name numer keys used (to check for unique mapvals)
95 print("*** error: no symbol found")
picoloadphones.lua 37 --- table with symbol name keys (not really used currently)
39 --- table with symbol name number keys (specified with property mapval)
41 --- array of symbol name numer keys used (to check for unique mapvals)
93 print("*** error: no symbol found")
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/
FrameDecorator.py 150 Symbol/Value interface. If there are no frame arguments, or
166 Symbol/Value interface. If there are no frame locals, or if
181 pc. If symbol table/line information does not exist, or if
207 """A container class conforming to the Symbol/Value interface
209 def __init__(self, symbol, value):
210 self.sym = symbol
214 """ Return the value associated with this symbol, or None"""
217 def symbol(self): member in class:SymValueWrapper
218 """ Return the symbol, or Python text, associated with this
219 symbol, or None""
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/
FrameDecorator.py 150 Symbol/Value interface. If there are no frame arguments, or
166 Symbol/Value interface. If there are no frame locals, or if
181 pc. If symbol table/line information does not exist, or if
207 """A container class conforming to the Symbol/Value interface
209 def __init__(self, symbol, value):
210 self.sym = symbol
214 """ Return the value associated with this symbol, or None"""
217 def symbol(self): member in class:SymValueWrapper
218 """ Return the symbol, or Python text, associated with this
219 symbol, or None""
    [all...]

Completed in 828 milliseconds

<<11121314151617181920>>