HomeSort by relevance Sort by last modified time
    Searched defs:syms (Results 1 - 25 of 41) sorted by null

1 2

  /external/clang/test/CodeGen/
2003-08-21-WideString.c 16 } syms = { L"NUL" }; variable in typeref:struct:__anon5207
  /external/openfst/src/include/fst/extensions/far/
print-strings.h 54 const SymbolTable *syms = 0; local
57 syms = SymbolTable::ReadText(symbols_fname, true);
58 if (!syms) {
65 StringPrinter<Arc> string_printer(token_type, syms);
111 delete syms;
compile-strings.h 56 const SymbolTable *syms = 0,
60 compiler_(token_type, syms, unknown_label, allow_negative_labels) {
175 const SymbolTable *syms = 0; local
178 syms = SymbolTable::ReadText(symbols_fname,
180 if (!syms) {
186 unknown_label = syms->Find(unknown_symbol);
219 allow_negative_labels, syms, unknown_label);
238 delete syms;
  /external/oprofile/libutil++/
bfd_support.h 46 scoped_array<asymbol *> syms; member in struct:bfd_info
60 * structs returned from bfd_get_synthetic_symtab. The syms
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...]
op_bfd.h 183 std::vector<op_bfd_symbol> syms; member in class:op_bfd
  /external/icu4c/test/intltest/
sdtfmtts.cpp 178 const DateFormatSymbols *syms = pat.getDateFormatSymbols(); local
179 if(!syms) {
183 if(syms->getDynamicClassID() != DateFormatSymbols::getStaticClassID()) {
186 DateFormatSymbols *newSyms = new DateFormatSymbols(*syms);
dcfmapts.cpp 192 const DecimalFormatSymbols *syms = pat.getDecimalFormatSymbols(); local
193 DecimalFormatSymbols *newSyms = new DecimalFormatSymbols(*syms);
  /external/oprofile/libpp/
diff_container.cpp 45 add_sym(diff_collection & syms, diff_symbol const & sym,
56 syms.push_back(sym);
62 symbol_old(diff_collection & syms, symbol_entry const & sym,
67 add_sym(syms, symbol, choice);
73 symbol_new(diff_collection & syms, symbol_entry const & sym,
78 add_sym(syms, symbol, choice);
83 void symbol_diff(diff_collection & syms,
100 add_sym(syms, symbol, choice);
118 diff_collection syms; local
134 symbol_old(syms, *it1, choice)
    [all...]
callgraph_container.cpp 99 upper_bound(bfd.syms.begin(), bfd.syms.end(), tmpsym);
101 if (it != bfd.syms.begin())
104 if (it == bfd.syms.end()) {
120 i = distance(bfd.syms.begin(), it);
166 sym.name = symbol_names.create(b.syms[i].name());
167 sym.sample.vma = b.syms[i].vma();
173 << b.syms[i].name() << " filepos " << start
548 for (symbol_index_t i = 0; i < caller_bfd.syms.size(); ++i) {
586 symbol_collection syms = recorder.get_symbols() local
    [all...]
  /external/qemu/
elf_ops.h 78 struct elf_sym *syms = glue(s->disas_symtab.elf, SZ); local
84 sym = bsearch(&key, syms, s->disas_num_syms, sizeof(*syms), glue(symfind, SZ));
104 struct elf_sym *syms = NULL; local
123 syms = load_at(fd, symtab->sh_offset, symtab->sh_size);
124 if (!syms)
132 glue(bswap_sym, SZ)(&syms[i]);
135 if (syms[i].st_shndx == SHN_UNDEF ||
136 syms[i].st_shndx >= SHN_LORESERVE ||
137 ELF_ST_TYPE(syms[i].st_info) != STT_FUNC)
    [all...]
  /frameworks/compile/mclinker/unittests/
StrSymPoolTest.cpp 212 LDSymbol *syms[128][128]; local
217 syms[i][j] = m_pTestee->insertSymbol(name,
226 ASSERT_STREQ(name, syms[i][j]->name());
241 ASSERT_EQ(sym, syms[i][j]);
256 ASSERT_EQ(sym, syms[i][j]);
  /dalvik/tests/092-locale/src/
Main.java 102 DateFormatSymbols syms = DateFormatSymbols.getInstance(usa); local
103 String[] list = syms.getAmPmStrings();
  /external/zlib/examples/
enough.c 116 syms: number of symbols remaining to code
122 syms: 3..totsym (totsym == total symbols to code)
123 left: 2..syms - 1, but only the evens (so syms == 8 -> 2, 4, 6)
126 syms == 2 is not saved since that immediately leads to a single code. left
129 left ends at syms-1 since left == syms immediately results in a single code.
134 first one (syms) being outermost, and the last one (len) being innermost.
135 We build the array with length max-1 lists for the len index, with syms-3
148 to the num[] array as described above for the (syms, left, len) triplet
457 int syms; \/* total number of symbols to code *\/ local
    [all...]
  /sdk/emulator/qtools/
coverage.cpp 122 symbol_type *syms = trace->GetSymbols(&nsyms); local
125 qsort(syms, nsyms, sizeof(symbol_type), cmp_sym_names);
127 symbol_type *psym = syms;
149 delete[] syms;
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;
  /system/core/libcorkscrew/
symbol_table.c 106 Elf32_Sym *syms = NULL; local
110 syms = (Elf32_Sym*)(base + shdr[sym_idx].sh_offset);
132 if (syms[i].st_shndx != SHN_UNDEF
133 && str[syms[i].st_name]
134 && syms[i].st_value
135 && syms[i].st_size) {
169 if (syms[i].st_shndx != SHN_UNDEF
170 && str[syms[i].st_name]
171 && syms[i].st_value
172 && syms[i].st_size)
    [all...]
  /external/bison/src/
reader.c 99 merger_list *syms;
110 for (syms = &head, n = 1; syms->next; syms = syms->next, n += 1)
111 if (UNIQSTR_EQ (name, syms->next->name))
113 if (syms->next == NULL)
115 syms->next = xmalloc (sizeof syms->next[0]);
116 syms->next->name = uniqstr_new (name)
97 merger_list *syms; local
    [all...]
  /external/icu4c/i18n/
unum.cpp 65 DecimalFormatSymbols *syms = new DecimalFormatSymbols(Locale(locale), *status); local
66 if(syms == NULL) {
71 delete syms;
75 retVal = new DecimalFormat(pat, syms, *parseErr, *status);
77 delete syms;
udat.cpp 388 const DateFormatSymbols *syms; local
392 syms = sdtfmt->getDateFormatSymbols();
394 syms = rdtfmt->getDateFormatSymbols();
403 res = syms->getEras(count);
407 res = syms->getEraNames(count);
411 res = syms->getMonths(count);
415 res = syms->getShortMonths(count);
419 res = syms->getWeekdays(count);
423 res = syms->getShortWeekdays(count);
427 res = syms->getAmPmStrings(count)
503 const DateFormatSymbols *syms; local
    [all...]
  /external/llvm/tools/gold/
gold-plugin.cpp 64 std::vector<ld_plugin_symbol> syms; member in struct:__anon9443::claimed_file
287 cf.syms.reserve(sym_count);
294 cf.syms.push_back(ld_plugin_symbol());
295 ld_plugin_symbol &sym = cf.syms.back();
346 cf.syms.reserve(cf.syms.size());
348 if (!cf.syms.empty()) {
349 if ((*add_symbols)(cf.handle, cf.syms.size(), &cf.syms[0]) != LDPS_OK) {
384 if (I->syms.empty()
    [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...]
  /external/grub/stage2/
mb_info.h 147 syms; member in struct:multiboot_info
  /external/oprofile/daemon/liblegacy/
p_module.h 146 unsigned tgt_long syms; member in struct:module
  /external/oprofile/opjitconv/
opjitconv.c 47 asymbol ** syms; variable

Completed in 754 milliseconds

1 2