HomeSort by relevance Sort by last modified time
    Searched refs:syms (Results 51 - 75 of 209) sorted by null

1 23 4 5 6 7 8 9

  /external/grub/stage2/
boot.c 485 mbi.syms.a.tabsize = 0;
486 mbi.syms.a.strsize = 0;
487 mbi.syms.a.addr = 0;
488 mbi.syms.a.pad = 0;
543 mbi.syms.a.addr = cur_addr;
554 mbi.syms.a.tabsize = pu.aout->a_syms;
561 mbi.syms.a.strsize = i;
581 mbi.syms.a.tabsize = 0;
582 mbi.syms.a.strsize = 0;
583 mbi.syms.a.addr = 0
    [all...]
  /external/llvm/tools/gold/
gold-plugin.cpp 62 std::vector<ld_plugin_symbol> syms; member in struct:__anon25076::claimed_file
286 cf.syms.reserve(sym_count);
293 cf.syms.push_back(ld_plugin_symbol());
294 ld_plugin_symbol &sym = cf.syms.back();
345 cf.syms.reserve(cf.syms.size());
347 if (!cf.syms.empty()) {
348 if ((*add_symbols)(cf.handle, cf.syms.size(), &cf.syms[0]) != LDPS_OK) {
380 if (I->syms.empty()
    [all...]
  /external/openfst/src/include/fst/extensions/far/
compile-strings.h 56 const SymbolTable *syms = 0,
59 token_type_(token_type), symbols_(syms), done_(false),
60 compiler_(token_type, syms, unknown_label, allow_negative_labels) {
189 const SymbolTable *syms = 0; local
194 syms = SymbolTable::ReadText(symbols_fname, opts);
195 if (!syms) {
201 unknown_label = syms->Find(unknown_symbol);
234 delete syms;
247 syms, unknown_label);
268 delete syms;
    [all...]
  /external/wpa_supplicant_8/src/utils/
trace.c 29 static asymbol **syms = NULL; variable
79 if (syms)
97 syms = malloc(storage);
98 if (syms == NULL) {
104 symcount = bfd_canonicalize_dynamic_symtab(abfd, syms);
106 symcount = bfd_canonicalize_symtab(abfd, syms);
110 free(syms);
111 syms = NULL;
146 data->found = bfd_find_nearest_line(abfd, section, syms,
233 if (!syms) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 25 from ..fixer_util import Assign, Name, Newline, Number, Subscript, syms namespace
75 new_lines.append(pytree.Node(syms.simple_stmt,
78 if args.type == syms.tfpdef:
80 elif args.type == syms.typedargslist:
82 if arg.type == syms.tfpdef:
131 new = pytree.Node(syms.power,
140 if node.type in (syms.vfplist, token.NAME):
142 elif node.type == syms.vfpdef:
145 while node.type == syms.vfpdef:
151 if node.type == syms.vfpdef
    [all...]
fix_itertools_imports.py 5 from lib2to3.fixer_util import BlankLine, syms, token namespace
16 if imports.type == syms.import_as_name or not imports.children:
28 assert child.type == syms.import_as_name
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms namespace
32 if n.type == syms.except_clause:
48 syms = self.syms
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 25 from ..fixer_util import Assign, Name, Newline, Number, Subscript, syms namespace
75 new_lines.append(pytree.Node(syms.simple_stmt,
78 if args.type == syms.tfpdef:
80 elif args.type == syms.typedargslist:
82 if arg.type == syms.tfpdef:
131 new = pytree.Node(syms.power,
140 if node.type in (syms.vfplist, token.NAME):
142 elif node.type == syms.vfpdef:
145 while node.type == syms.vfpdef:
151 if node.type == syms.vfpdef
    [all...]
fix_itertools_imports.py 5 from lib2to3.fixer_util import BlankLine, syms, token namespace
16 if imports.type == syms.import_as_name or not imports.children:
28 assert child.type == syms.import_as_name
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms namespace
32 if n.type == syms.except_clause:
48 syms = self.syms
  /external/oprofile/libutil++/
op_bfd.cpp 223 if (!interesting_symbol(ibfd.syms[i]))
226 ibfd.syms[i]->section) != filtered_section.end())
228 symbols.push_back(op_bfd_symbol(ibfd.syms[i]));
232 if (!interesting_symbol(dbfd.syms[i]))
239 u32 filepos = filepos_map[dbfd.syms[i]->section->name];
241 dbfd.syms[i]->section->filepos = filepos;
242 symbols.push_back(op_bfd_symbol(dbfd.syms[i]));
294 copy(symbols.begin(), it, back_inserter(syms));
297 << dec << syms.size() << hex << endl;
318 op_bfd_symbol const & bfd_sym = syms[sym_idx]
    [all...]
bfd_support.cpp 226 void fixup_linenr(bfd * abfd, asection * section, asymbol ** syms,
247 bool ret = bfd_find_nearest_line(abfd, section, syms, pc + i,
549 syms.reset(new asymbol *[nr_syms + 1]);
552 syms[i] = mini_syms[i];
556 syms[nr_mini_syms + i] = synth_syms + i;
562 syms[nr_syms] = NULL;
596 syms.reset(new asymbol *[nr_syms]);
598 nr_syms = bfd_canonicalize_symtab(abfd, syms.get());
601 translate_debuginfo_syms(syms.get(), nr_syms);
617 asymbol ** syms; local
    [all...]
  /external/oprofile/libpp/
symbol_sort.cpp 132 sort(symbol_collection & syms, bool reverse_sort, bool lf) const
143 stable_sort(syms.begin(), syms.end(),
149 sort(diff_collection & syms, bool reverse_sort, bool lf) const
160 stable_sort(syms.begin(), syms.end(),
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
parsecvs.php 88 $count = preg_match_all("/^\t(\S+): ([0-9\.]+)$\n/m", $props[8], $syms);
91 array_push($filetags, "('{$syms[1][$i]}', '{$syms[2][$i]}')");
95 $syms[1] = preg_replace("/^(.+)$/e", "fixup('$1')", $syms[1]);
96 wmysql_query("INSERT INTO `tags` (`tagname`, `tagdate`) VALUES " . join($syms[1], ",") . " ON DUPLICATE KEY UPDATE `tid` = `tid`");
  /external/openfst/src/include/fst/script/
print-impl.h 77 void PrintId(int64 id, const SymbolTable *syms,
79 if (syms) {
80 string symbol = syms->Find(id);
84 << ", symbol table = " << syms->Name()
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
wrap_yasm.py 30 syms = get_syms( ['yasm'], [YASM_DIR] )
34 return name in syms
  /external/oprofile/opjitconv/
conversion.c 50 syms = NULL;
85 free(syms);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 51 self.syms = pygram.Symbols(self.grammar)
75 if node.type == self.syms.Matcher:
78 if node.type == self.syms.Alternatives:
86 if node.type == self.syms.Alternative:
93 if node.type == self.syms.NegatedUnit:
98 assert node.type == self.syms.Unit
106 if len(nodes) >= 2 and nodes[-1].type == self.syms.Repeater:
114 assert repeat.type == self.syms.Repeater
btm_utils.py 7 syms = pattern_symbols variable
114 if node.type == syms.Matcher:
118 if node.type == syms.Alternatives :
133 elif node.type == syms.Alternative:
148 elif node.type == syms.Unit:
170 if child.type == syms.Details:
173 elif child.type == syms.Repeater:
176 elif child.type == syms.Alternatives:
210 elif name_leaf.type == syms.Alternatives:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 51 self.syms = pygram.Symbols(self.grammar)
75 if node.type == self.syms.Matcher:
78 if node.type == self.syms.Alternatives:
86 if node.type == self.syms.Alternative:
93 if node.type == self.syms.NegatedUnit:
98 assert node.type == self.syms.Unit
106 if len(nodes) >= 2 and nodes[-1].type == self.syms.Repeater:
114 assert repeat.type == self.syms.Repeater
btm_utils.py 7 syms = pattern_symbols variable
114 if node.type == syms.Matcher:
118 if node.type == syms.Alternatives :
133 elif node.type == syms.Alternative:
148 elif node.type == syms.Unit:
170 if child.type == syms.Details:
173 elif child.type == syms.Repeater:
176 elif child.type == syms.Alternatives:
210 elif name_leaf.type == syms.Alternatives:
  /sdk/emulator/qtools/
profile_trace.cpp 95 symbol_type *syms = trace->GetSymbols(&nsyms); local
98 qsort(syms, nsyms, sizeof(symbol_type), cmp_sym_elapsed);
102 symbol_type *sym = syms;
113 sym = syms;
127 delete[] syms;
  /external/chromium_org/tools/tcmalloc/
print-live-objects.py 50 syms = subprocess.Popen([
55 for address, symbol, location in zip(addresses, syms[::2], syms[1::2]):
  /external/openfst/src/lib/
symbol-table-ops.cc 85 SymbolTable *CompactSymbolTable(const SymbolTable &syms) {
87 SymbolTableIterator stiter(syms);
91 SymbolTable *compact = new SymbolTable(syms.Name() + "_compact");
  /hardware/ti/omap3/dspbridge/inc/
dynamic_loader.h 81 * syms Host-side symbol table and malloc/free functions
90 * managed using *syms. The image is then relocated and references resolved
97 * errors are reported during the load process using syms->Error_Report().
103 struct Dynamic_Loader_Sym * syms,
118 * syms Host-side symbol table and malloc/free functions
127 * managed using *syms. The image is then relocated and references resolved
134 * errors are reported during the load process using syms->Error_Report().
137 struct Dynamic_Loader_Sym * syms, // host support for symbols and storage
150 * syms Host-side symbol table and malloc/free functions
161 * Individual errors are reported using syms->Error_Report()
    [all...]

Completed in 1240 milliseconds

1 23 4 5 6 7 8 9