Searched defs:syms (Results 1 - 25 of 57) sorted by relevance

123

/external/clang/test/CodeGen/
H A D2003-08-21-WideString.c16 } syms = { L"NUL" }; variable in typeref:struct:__anon18528
/external/openfst/src/include/fst/
H A Dsymbol-table-ops.h38 SymbolTable *PruneSymbolTable(const Fst<Arc> &fst, const SymbolTable &syms, argument
51 SymbolTable *pruned = new SymbolTable(syms.Name() + "_pruned");
52 for (SymbolTableIterator stiter(syms); !stiter.Done(); stiter.Next()) {
62 SymbolTable *CompactSymbolTable(const SymbolTable &syms);
/external/oprofile/libutil++/
H A Dbfd_support.h46 scoped_array<asymbol *> syms; member in struct:bfd_info
60 * structs returned from bfd_get_synthetic_symtab. The syms
H A Dop_bfd.h183 std::vector<op_bfd_symbol> syms; member in class:op_bfd
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dsdtfmtts.cpp178 const DateFormatSymbols *syms = pat.getDateFormatSymbols(); local
179 if(!syms) {
183 if(syms->getDynamicClassID() != DateFormatSymbols::getStaticClassID()) {
186 DateFormatSymbols *newSyms = new DateFormatSymbols(*syms);
/external/icu/icu4c/source/test/intltest/
H A Dsdtfmtts.cpp178 const DateFormatSymbols *syms = pat.getDateFormatSymbols(); local
179 if(!syms) {
183 if(syms->getDynamicClassID() != DateFormatSymbols::getStaticClassID()) {
186 DateFormatSymbols *newSyms = new DateFormatSymbols(*syms);
/external/openfst/src/include/fst/extensions/far/
H A Dprint-strings.h58 const SymbolTable *syms = 0; local
63 syms = SymbolTable::ReadText(symbols_fname, opts);
64 if (!syms) {
90 if (i == 1 && initial_symbols && syms == 0 && fst.InputSymbols() != 0)
91 syms = fst.InputSymbols()->Copy();
95 token_type, syms ? syms : fst.InputSymbols());
122 delete syms;
131 delete syms;
H A Dcompile-strings.h56 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/openfst/src/lib/
H A Dsymbol-table-ops.cc85 SymbolTable *CompactSymbolTable(const SymbolTable &syms) { argument
87 SymbolTableIterator stiter(syms);
91 SymbolTable *compact = new SymbolTable(syms.Name() + "_compact");
/external/oprofile/libpp/
H A Ddiff_container.cpp45 add_sym(diff_collection & syms, diff_symbol const & sym, argument
56 syms.push_back(sym);
62 symbol_old(diff_collection & syms, symbol_entry const & sym, argument
67 add_sym(syms, symbol, choice);
73 symbol_new(diff_collection & syms, symbol_entry const & sym, argument
78 add_sym(syms, symbol, choice);
83 void symbol_diff(diff_collection & syms, argument
100 add_sym(syms, symbol, choice);
118 diff_collection syms; local
134 symbol_old(syms, *it
[all...]
H A Dsymbol_sort.cpp132 sort(symbol_collection & syms, bool reverse_sort, bool lf) const argument
143 stable_sort(syms.begin(), syms.end(),
149 sort(diff_collection & syms, bool reverse_sort, bool lf) const argument
160 stable_sort(syms.begin(), syms.end(),
/external/qemu/include/hw/
H A Delf_ops.h78 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[
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/
H A Dkernel.cpp64 auto &syms = prog->binaries().begin()->second.syms; local
66 if (kerns && count < syms.size())
70 std::transform(syms.begin(), syms.end(), kerns,
77 *count_ret = syms.size();
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dmodule.hpp101 clover::compat::vector<symbol> syms; member in struct:clover::module
/external/mesa3d/src/gallium/state_trackers/clover/api/
H A Dkernel.cpp64 auto &syms = prog->binaries().begin()->second.syms; local
66 if (kerns && count < syms.size())
70 std::transform(syms.begin(), syms.end(), kerns,
77 *count_ret = syms.size();
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dmodule.hpp101 clover::compat::vector<symbol> syms; member in struct:clover::module
/external/openfst/src/include/fst/script/
H A Dprint-impl.h77 void PrintId(int64 id, const SymbolTable *syms, argument
79 if (syms) {
80 string symbol = syms->Find(id);
84 << ", symbol table = " << syms->Name()
H A Dcompile-impl.h138 int64 StrToId(const char *s, const SymbolTable *syms, argument
142 if (syms) {
143 n = syms->Find(s);
147 << ", symbol table = " << syms->Name()
H A Ddraw-impl.h127 void PrintId(int64 id, const SymbolTable *syms, argument
129 if (syms) {
130 string symbol = syms->Find(id);
134 << ", symbol table = " << syms->Name()
/external/zlib/src/examples/
H A Denough.c119 syms: number of symbols remaining to code
125 syms: 3..totsym (totsym == total symbols to code)
126 left: 2..syms - 1, but only the evens (so syms == 8 -> 2, 4, 6)
129 syms == 2 is not saved since that immediately leads to a single code. left
132 left ends at syms-1 since left == syms immediately results in a single code.
137 first one (syms) being outermost, and the last one (len) being innermost.
138 We build the array with length max-1 lists for the len index, with syms-3
151 to the num[] array as described above for the (syms, lef
203 count(int syms, int len, int left) argument
258 beenhere(int syms, int len, int left, int mem, int rem) argument
322 examine(int syms, int len, int left, int mem, int rem) argument
403 enough(int syms) argument
460 int syms; /* total number of symbols to code */ local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_debug_symbol.c166 char** syms = backtrace_symbols((void**)&addr, 1); local
167 strncpy(buf, syms[0], size);
169 free(syms);
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dnm-pdb.c70 SYM *syms; member in struct:__anon15580
98 ctx->syms = realloc(ctx->syms, sizeof(ctx->syms[0]) * ctx->syms_cap);
100 ctx->syms[ctx->syms_len].name = _strdup(symbol_info->Name);
101 ctx->syms[ctx->syms_len].addr = symbol_info->Address;
102 ctx->syms[ctx->syms_len].flags = symbol_info->Flags;
257 qsort(ctx.syms, ctx.syms_len, sizeof(ctx.syms[0]), sym_cmp);
259 printf("%016I64x X %s\n", ctx.syms[
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dnm-pdb.c70 SYM *syms; member in struct:__anon15629
98 ctx->syms = realloc(ctx->syms, sizeof(ctx->syms[0]) * ctx->syms_cap);
100 ctx->syms[ctx->syms_len].name = _strdup(symbol_info->Name);
101 ctx->syms[ctx->syms_len].addr = symbol_info->Address;
102 ctx->syms[ctx->syms_len].flags = symbol_info->Flags;
264 qsort(ctx.syms, ctx.syms_len, sizeof(ctx.syms[0]), sym_cmp);
266 printf("%016I64x X %s\n", ctx.syms[
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dhists_link.c69 struct fake_sym *syms; member in struct:__anon25168
130 struct fake_sym *fsym = &fake_symbols[i].syms[k];
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_symbol.c166 char** syms = backtrace_symbols((void**)&addr, 1); local
167 strncpy(buf, syms[0], size);
169 free(syms);

Completed in 4909 milliseconds

123