Searched defs:symbols (Results 26 - 50 of 119) sorted by relevance

12345

/external/llvm/include/llvm/Object/
H A DSymbolicFile.h1 //===- SymbolicFile.h - Interface that only provides symbols ----*- C++ -*-===//
75 /// symbols in the object file.
91 // (e.g. section symbols)
140 basic_symbol_iterator_range symbols() const { function in class:llvm::object::BasicSymbolRef::SymbolicFile
H A DObjectFile.h126 /// the list of symbols in the object file.
304 symbol_iterator_range symbols() const { function in class:llvm::object::ObjectFile
/external/ltrace/
H A Dlibrary.h60 /* This is relevant for PLT symbols. Latent PLT symbols are
67 /* Delayed symbols are those for which a breakpoint shouldn't
68 * be enabled yet. They are similar to latent symbols, but
94 /* Compare two library symbols. Returns a negative value, 0, or a
97 * those are equal, too, the symbols are considered equal. */
151 * symbols that don't have a breakpoint attached (yet). */
152 struct library_symbol *symbols; member in struct:library
195 /* Iterate through list of symbols of library LIB. See callback.h for
/external/mesa3d/src/mesa/program/
H A Dsymbol_table.c32 * The linked list of symbols with the same name is ordered by scope
41 * The linked list of symbols with the same scope is unordered. Symbols
48 * Header information for the list of symbols with the same name.
56 * Name space are arbitrary user assigned integers. No two symbols can
80 /** Linked list of symbols with the same name. */
81 struct symbol *symbols; member in struct:symbol_header
92 /** Linked list of symbols with the same scope. */
93 struct symbol *symbols; member in struct:scope_level
101 /** Hash table containing all symbols in the symbol table. */
117 * Name space of symbols returne
[all...]
/external/oprofile/libutil++/
H A Dop_spu_bfd.cpp59 symbols_found_t symbols; local
169 get_symbols(symbols);
173 symbols.push_back(op_bfd_symbol(OP_SPU_DYN_FLAG, OP_SPU_MEMSIZE,
177 add_symbols(symbols, symbol_filter);
H A Dop_bfd.cpp42 /// function object for filtering symbols to remove
65 // Some sections have unnamed symbols in them. If
112 // symbols through a vector. We use an intermediate list to avoid a
114 symbols_found_t symbols; local
176 get_symbols(symbols);
179 add_symbols(symbols, symbol_filter);
208 void op_bfd::get_symbols(op_bfd::symbols_found_t & symbols) argument
212 // On separate debug file systems, the main bfd has no symbols,
228 symbols.push_back(op_bfd_symbol(ibfd.syms[i]));
236 // debug file symbols
280 add_symbols(op_bfd::symbols_found_t & symbols, string_filter const & symbol_filter) argument
[all...]
/external/oprofile/pp/
H A Dopreport_options.cpp36 bool symbols; member in namespace:options
69 popt::option(options::symbols, "symbols", 'l',
70 "list all symbols"),
83 popt::option(exclude_symbols, "exclude-symbols", 'e',
84 "exclude these comma separated symbols", "symbols"),
85 popt::option(include_symbols, "include-symbols", 'i',
86 "include these comma separated symbols", "symbols"),
[all...]
H A Dopgprof.cpp190 symbol_collection symbols = samples.select_symbols(choice); local
192 symbol_collection::const_iterator sit = symbols.begin();
193 symbol_collection::const_iterator send = symbols.end();
H A Dopreport.cpp373 symbol_collection symbols = pc.select_symbols(choice); local
374 options::sort_by.sort(symbols, options::reverse_sort,
381 xml_out = new format_output::xml_formatter(&pc, symbols,
406 xml_support = new xml_utils(xml_out, symbols, nr_classes,
410 text_out->output(cout, symbols);
423 diff_collection symbols = dc.get_symbols(choice); local
441 options::sort_by.sort(symbols, options::reverse_sort,
444 out.output(cout, symbols);
452 symbol_collection symbols = cg.get_symbols(); local
454 options::sort_by.sort(symbols, option
[all...]
/external/bison/src/
H A Dgram.c40 symbol **symbols = NULL; variable
107 fprintf (out, " %s", symbols[*rp]->tag);
125 xml_escape (symbols[*rp]->tag));
150 fprintf (out, " %s", symbols[ritem[i]]->tag);
258 symbols[i]->prec, symbols[i]->assoc,
259 symbols[i]->tag);
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dbrowser.c27 static const char* XRayGetName(struct XRaySymbolTable* symbols, argument
30 struct XRaySymbol* symbol = XRaySymbolTableLookup(symbols, addr);
61 struct XRaySymbolTable* symbols = XRayGetSymbolTable(capture); local
109 XRayGetName(symbols, e),
131 XRayGetName(symbols, e),
144 XRayGetName(symbols, e),
H A Dreport.c40 struct XRaySymbolTable* symbols = XRayGetSymbolTable(capture); local
72 symbol = XRaySymbolTableLookup(symbols, addr);
H A Dsymtable.c38 struct XRaySymbol symbols[XRAY_SYMBOL_POOL_NODE_SIZE]; member in struct:XRaySymbolPoolNode
81 symbol = &sympool->current->symbols[sympool->index];
173 /* Returns total number of symbols in the table. */
/external/chromium_org/net/spdy/
H A Dhpack_huffman_table.cc60 std::vector<Symbol> symbols(symbol_count);
61 // Validate symbol id sequence, and copy into |symbols|.
67 symbols[i] = input_symbols[i];
70 std::sort(symbols.begin(), symbols.end(), SymbolLengthAndIdCompare);
71 if (symbols[0].code != 0) {
75 for (size_t i = 1; i != symbols.size(); i++) {
76 unsigned code_shift = 32 - symbols[i-1].length;
77 uint32 code = symbols[i-1].code + (1 << code_shift);
79 if (code != symbols[
105 BuildEncodeTable(const std::vector<Symbol>& symbols) argument
114 BuildDecodeTables(const std::vector<Symbol>& symbols) argument
[all...]
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dcluster.h111 int* symbols,
119 if (all_symbols.find(symbols[i]) == all_symbols.end()) {
120 all_symbols.insert(symbols[i]);
121 clusters.push_back(symbols[i]);
147 if (symbols[i] == best_idx2) {
148 symbols[i] = best_idx1;
196 Histogram<kSize>* out, int* symbols) {
199 all_symbols.insert(symbols[i]);
202 int best_out = i == 0 ? symbols[0] : symbols[
109 HistogramCombine(Histogram<kSize>* out, int* cluster_size, int* symbols, int symbols_size, int max_clusters) argument
195 HistogramRemap(const Histogram<kSize>* in, int in_size, Histogram<kSize>* out, int* symbols) argument
228 HistogramReindex(std::vector<Histogram<kSize> >* out, std::vector<int>* symbols) argument
[all...]
/external/chromium_org/third_party/libwebp/utils/
H A Dhuffman.c148 // Get symbols.
212 if (IsFull(tree)) return 0; // error: too many symbols.
242 // Find out number of symbols and the root symbol.
271 // Add symbols one-by-one.
291 const int* const symbols, int max_symbol,
298 assert(symbols != NULL);
303 // Add symbols one-by-one.
306 if (symbols[i] < 0 || symbols[i] >= max_symbol) {
309 if (!TreeAddSymbol(tree, symbols[
288 VP8LHuffmanTreeBuildExplicit(HuffmanTree* const tree, const int* const code_lengths, const int* const codes, const int* const symbols, int max_symbol, int num_symbols) argument
[all...]
/external/chromium_org/tools/binary_size/
H A Drun_binary_size_analysis.py40 import symbols.elf_symbolizer as elf_symbolizer # pylint: disable=F0401 namespace
54 # The display name of the bucket where we put symbols without path.
165 def MakeCompactTree(symbols, symbol_path_origin_dir):
172 for symbol_name, symbol_type, symbol_size, file_path in symbols:
224 def TreeifySymbols(symbols):
225 """Convert symbols into a path-based tree, calculating size information
248 for sym, symbol_type, size, path in symbols:
301 key = 'symbols without paths'
357 def DumpCompactTree(symbols, symbol_path_origin_dir, outfile):
358 tree_root = MakeCompactTree(symbols, symbol_path_origin_di
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Ddso.h75 struct rb_root symbols[MAP__NR_TYPES]; member in struct:dso
/external/oprofile/libpp/
H A Dformat_output.h176 /// class to output in a columned format symbols and associated samples
182 /** output a vector of symbols to out according to the output format
201 /// true if we need to show details for each symbols
217 /// class to output a columned format symbols plus diff values
225 * Output a vector of symbols to out according to the output
242 symbol_collection & symbols, extra_images const & extra,
268 // ordered collection of symbols associated with this profile
269 symbol_collection & symbols; member in class:format_output::xml_formatter
271 /// true if we need to show details for each symbols
304 symbol_collection & symbols, string_filte
[all...]
/external/webp/src/utils/
H A Dhuffman.c148 // Get symbols.
212 if (IsFull(tree)) return 0; // error: too many symbols.
242 // Find out number of symbols and the root symbol.
271 // Add symbols one-by-one.
291 const int* const symbols, int max_symbol,
298 assert(symbols != NULL);
303 // Add symbols one-by-one.
306 if (symbols[i] < 0 || symbols[i] >= max_symbol) {
309 if (!TreeAddSymbol(tree, symbols[
288 VP8LHuffmanTreeBuildExplicit(HuffmanTree* const tree, const int* const code_lengths, const int* const codes, const int* const symbols, int max_symbol, int num_symbols) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DPlatformLocale.cpp237 void Locale::setLocaleData(const Vector<String, DecimalSymbolsSize>& symbols, const String& positivePrefix, const String& positiveSuffix, const String& negativePrefix, const String& negativeSuffix) argument
239 for (size_t i = 0; i < symbols.size(); ++i) {
240 ASSERT(!symbols[i].isEmpty());
241 m_decimalSymbols[i] = symbols[i];
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ddcfmapts.cpp109 DecimalFormatSymbols *symbols = new DecimalFormatSymbols(Locale::getFrench(), status); local
116 DecimalFormat cust1(pattern, symbols, status);
118 errln((UnicodeString)"ERROR: Could not create DecimalFormat (pattern, symbols*)");
122 DecimalFormat cust2(pattern, *symbols, status);
124 errln((UnicodeString)"ERROR: Could not create DecimalFormat (pattern, symbols)");
/external/icu/icu4c/source/i18n/
H A Ddecimalformatpattern.cpp121 const DecimalFormatSymbols& symbols) {
122 fZeroDigit = symbols.getConstSymbol(
124 fSigDigit = symbols.getConstSymbol(
126 fGroupingSeparator = symbols.getConstSymbol(
128 fDecimalSeparator = symbols.getConstSymbol(
130 fPercent = symbols.getConstSymbol(
132 fPerMill = symbols.getConstSymbol(
134 fDigit = symbols.getConstSymbol(
136 fSeparator = symbols.getConstSymbol(
138 fExponent = symbols
120 useSymbols( const DecimalFormatSymbols& symbols) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Ddcfmapts.cpp115 DecimalFormatSymbols *symbols = new DecimalFormatSymbols(Locale::getFrench(), status); local
122 DecimalFormat cust1(pattern, symbols, status);
124 errln((UnicodeString)"ERROR: Could not create DecimalFormat (pattern, symbols*)");
128 DecimalFormat cust2(pattern, *symbols, status);
130 errln((UnicodeString)"ERROR: Could not create DecimalFormat (pattern, symbols)");
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_elf_relocations.cpp301 bool ElfRelocations::ApplyAll(const ElfSymbols* symbols, argument
316 symbols,
322 symbols,
331 symbols,
337 symbols,
349 if (!RelocateMipsGot(symbols, resolver, error))
671 const ElfSymbols* symbols,
676 const char* sym_name = symbols->LookupNameById(rel_symbol);
689 if (!symbols->IsWeakById(rel_symbol)) {
726 const ElfSymbols* symbols,
669 ResolveSymbol(ELF::Word rel_type, ELF::Word rel_symbol, const ElfSymbols* symbols, SymbolResolver* resolver, ELF::Addr reloc, ELF::Addr* sym_addr, Error* error) argument
724 ApplyRelRelocs(const ELF::Rel* rel, size_t rel_count, const ElfSymbols* symbols, SymbolResolver* resolver, Error* error) argument
774 ApplyRelaRelocs(const ELF::Rela* rela, size_t rela_count, const ElfSymbols* symbols, SymbolResolver* resolver, Error* error) argument
825 RelocateMipsGot(const ElfSymbols* symbols, SymbolResolver* resolver, Error* error) argument
[all...]

Completed in 624 milliseconds

12345