HomeSort by relevance Sort by last modified time
    Searched defs:symbol (Results 176 - 200 of 691) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Object/
Archive.h 184 class Symbol {
190 Symbol(const Archive *p, uint32_t symi, uint32_t stri)
195 bool operator ==(const Symbol &other) const {
201 Symbol getNext() const;
205 Symbol symbol; member in class:llvm::object::Archive::symbol_iterator
208 symbol_iterator(const Symbol &s) : symbol(s) {}
210 const Symbol *operator->() const { return &symbol; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Object/
Archive.h 184 class Symbol {
190 Symbol(const Archive *p, uint32_t symi, uint32_t stri)
195 bool operator ==(const Symbol &other) const {
201 Symbol getNext() const;
205 Symbol symbol; member in class:llvm::object::Archive::symbol_iterator
208 symbol_iterator(const Symbol &s) : symbol(s) {}
210 const Symbol *operator->() const { return &symbol; }
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/Carbon/
Fonts.py 58 symbol = kFontIDSymbol variable
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
Initialize.cpp 46 // TBuiltIns::identifyBuiltIns(...,symbolTable) context-independent programmatic additions/mappings to the symbol table,
47 // including identifying what extensions are needed if a version does not allow a symbol
48 // TBuiltIns::identifyBuiltIns(...,symbolTable, resources) context-dependent programmatic additions/mappings to the symbol table,
49 // including identifying what extensions are needed if a version does not allow a symbol
5219 TSymbol* symbol = symbolTable.find(name); local
5239 TSymbol* symbol = symbolTable.find(name); local
5256 TSymbol* symbol = symbolTable.find(blockName); local
5574 TSymbol* symbol = symbolTable.find("gl_FragColor"); local
    [all...]
iomapper.cpp 70 TIntermSymbol* symbol; member in struct:glslang::TVarEntryInfo
95 const TQualifier& lq = l.symbol->getQualifier();
96 const TQualifier& rq = r.symbol->getQualifier();
215 resolver.notifyBinding(stage, ent.symbol->getName().c_str(), ent.symbol->getType(), ent.live);
232 resolver.notifyInOut(stage, ent.symbol->getName().c_str(), ent.symbol->getType(), ent.live);
256 const bool isValid = resolver.validateBinding(stage, ent.symbol->getName().c_str(), ent.symbol->getType(),
259 ent.newBinding = resolver.resolveBinding(stage, ent.symbol->getName().c_str(), ent.symbol->getType()
    [all...]
linkValidate.cpp 237 TIntermSymbol* symbol = linkerObjects[linkObj]->getAsSymbolNode(); local
239 assert(symbol && unitSymbol);
240 if (symbol->getName() == unitSymbol->getName()) {
246 if (symbol->getConstArray().empty() && ! unitSymbol->getConstArray().empty())
247 symbol->setConstArray(unitSymbol->getConstArray());
250 if (! symbol->getQualifier().hasBinding() && unitSymbol->getQualifier().hasBinding())
251 symbol->getQualifier().layoutBinding = unitSymbol->getQualifier().layoutBinding;
254 mergeImplicitArraySizes(symbol->getWritableType(), unitSymbol->getType());
257 mergeErrorCheck(infoSink, *symbol, *unitSymbol, false);
290 void TIntermediate::mergeErrorCheck(TInfoSink& infoSink, const TIntermSymbol& symbol, const TIntermSymbol& unitSymbol, bool crossStage
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
Fonts.py 58 symbol = kFontIDSymbol variable
  /system/core/libbacktrace/
backtrace_offline_test.cpp 169 for (const auto& symbol : function_symbols) {
172 symbol.start, symbol.end, symbol.name.c_str());
182 for (auto& symbol : symbols) {
183 if (addr >= symbol.start && addr < symbol.end) {
184 return symbol.name;
237 FunctionSymbol& symbol = testdata->symbols.back(); local
239 sscanf(line.c_str(), "function: start: %" SCNx64 " end: %" SCNx64 " name: %n", &symbol.start
    [all...]
  /system/extras/simpleperf/
cmd_debug_unwind.cpp 285 const Symbol* symbol = thread_tree_.FindSymbol(map, ip, nullptr, &dso); local
286 if (!symbol->HasDumpId()) {
287 dso->CreateSymbolDumpId(symbol);
348 // Add debug_unwind info in META_INFO section, and add symbol info in FILE section.
thread_tree.cpp 223 const Symbol* ThreadTree::FindSymbol(const MapEntry* map, uint64_t ip,
226 const Symbol* symbol = nullptr; local
229 // Find symbol in user space shared libraries.
231 symbol = dso->FindSymbol(vaddr_in_file);
234 // Find symbol in kernel modules.
236 symbol = dso->FindSymbol(vaddr_in_file);
238 if (symbol == nullptr) {
239 // If the ip address hits the vmlinux, or hits a kernel module, but we can't find its symbol
240 // in the kernel module file, then find its symbol in /proc/kallsyms or vmlinux
    [all...]
cmd_report_sample.cpp 97 uint64_t* pvaddr_in_file, Dso** pdso, const Symbol** psymbol);
270 // Handle files having large symbol table.
320 FprintIndented(report_fp_, 1, "symbol: %s\n", file.symbol(i).c_str());
352 LOG(ERROR) << "symbol_id(" << pair.second << ") >= symbol count ("
423 const Symbol* symbol; member in struct:__anon3017::Node
439 &node.dso, &node.symbol);
467 &node.symbol)) {
482 if (node.symbol != thread_tree_.UnknownSymbol())
570 std::string* symbol = file->add_symbol(); local
602 const Symbol* symbol; local
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
liboasys.h 24 asymbol symbol; member in struct:_oasys_symbol
30 unsigned int symbol; member in struct:_oasys_reloc
reloc.c 85 . {* The symbol to relocate against was undefined. *}
123 The symbol table pointer points to a pointer to the symbol
126 <<canonicalize_symtab>> action. @xref{Symbols}. The symbol is
130 the symbol and uses the base of the section the symbol is
131 attached to and the value of the symbol as the initial
132 relocation offset. If the symbol pointer is zero, then the
398 Helper routine to turn a symbol into a relocation value.
400 .#define HOWTO_PREPARE(relocation, symbol) \
586 asymbol *symbol; local
980 asymbol *symbol; local
7958 asymbol *symbol; local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
bfin-parse.y 448 SYMBOL_T symbol;
570 %token SYMBOL NUMBER
599 %type <expr> symbol
600 %type <symbol> SYMBOL
4373 symbol: SYMBOL label
    [all...]
obj-evax.c 30 #include "struc-symbol.h"
103 asymbol *symbol = symbol_get_bfdsym (sym); local
113 else if ((symbol->flags & BSF_GLOBAL) && (symbol->flags & BSF_FUNCTION))
116 = (struct evax_private_udata_struct *)symbol->udata.p;
123 O_symbol and we hope the equated symbol is still there. */
127 as_bad (_("no entry symbol for global function '%s'"), symname);
130 symbol = symbol_get_bfdsym (sym);
132 = ((struct evax_private_udata_struct *)symbol->udata.p)->enbsym;
154 /* The symbol is defined in the file. The linkage entry decays t
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/blast/
blast.c 95 * symbol[] are the symbol values in canonical order, where the number of
101 short *symbol; /* canonically ordered symbols */ member in struct:huffman
105 * Decode a code from the stream s using huffman table h. Return the symbol or
131 int index; /* index of first code of length len in symbol table */
146 if (code < first + count) { /* if length len, return symbol */
149 return h->symbol[index + (code - first)];
183 * enough bits will resolve to a symbol. If the return value is positive, then
189 int symbol; /* current symbol when stepping through length[] * local
282 int symbol; \/* decoded symbol, extra bits for distance *\/ local
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/puff/
puff.c 65 * - Catch missing end-of-block symbol error
202 * symbol[] are the symbol values in canonical order, where the number of
208 short *symbol; /* canonically ordered symbols */ member in struct:huffman
212 * Decode a code from the stream s using huffman table h. Return the symbol or
241 int index; /* index of first code of length len in symbol table */
247 if (code - count < first) /* if length len, return symbol */
248 return h->symbol[index + (code - first)];
269 int index; /* index of first code of length len in symbol table */
284 if (code - count < first) { /* if length len, return symbol */
342 int symbol; \/* current symbol when stepping through length[] *\/ local
440 int symbol; \/* decoded symbol *\/ local
545 int symbol; local
704 int symbol; \/* decoded value *\/ local
    [all...]
  /external/icu/icu4c/source/i18n/
affixpatternparser.cpp 106 const UChar *symbol = ucurr_getName( local
112 fSymbol.setTo(symbol, len);
  /external/protobuf/ruby/ext/google/protobuf_c/
storage.c 172 "Expected number or symbol type for enum field.");
175 // Ensure that the given symbol exists in the enum module.
178 rb_raise(rb_eRangeError, "Unknown symbol value for enum field.");
236 VALUE symbol = enum_lookup(type_class, INT2NUM(val)); local
237 if (symbol == Qnil) {
240 return symbol;
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
RubyMap.java 153 IRubyObject symbol; local
156 ! (symbol = RubyEnum.lookup(context, valueTypeClass, value)).isNil()) {
157 value = symbol;
  /external/toybox/kconfig/
symbol.c 15 struct symbol symbol_yes = {
34 struct symbol *sym_defconfig_list;
35 struct symbol *modules_sym;
38 void sym_add_default(struct symbol *sym, const char *def)
47 struct symbol *sym;
78 enum symbol_type sym_get_type(struct symbol *sym)
112 struct property *sym_get_choice_prop(struct symbol *sym)
121 struct property *sym_get_default_prop(struct symbol *sym)
133 struct property *sym_get_range_prop(struct symbol *sym)
145 static int sym_get_range_val(struct symbol *sym, int base
649 struct symbol *symbol; local
694 struct symbol *symbol = NULL; local
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
transport_feedback.cc 47 uint8_t EncodeSymbol(TransportFeedback::StatusSymbol symbol) {
48 switch (symbol) {
98 // |T|S| symbol list |
103 // symbol list = 14 entries where 0 = not received, 1 = received
171 // |T|S| symbol list |
176 // symbol list = 7 entries of two bits each, see (Encode|Decode)Symbol
244 // S = symbol, see (Encode|Decode)Symbol
245 // Run Length = Unsigned integer denoting the run length of the symbol
271 TransportFeedback::StatusSymbol symbol = local
    [all...]
  /frameworks/base/tools/aapt2/
ResourceValues.h 292 struct Symbol {
293 Reference symbol; member in struct:aapt::Attribute::Symbol
296 friend std::ostream& operator<<(std::ostream& out, const Symbol& symbol);
302 std::vector<Symbol> symbols;
  /frameworks/base/tools/aapt2/format/proto/
ProtoDeserialize.cpp 406 // Deserialize the symbol status (public/private with source and comments).
545 error << "invalid resource name for exported symbol in compiled file header: "
643 for (const pb::Attribute_Symbol& pb_symbol : pb_attr.symbol()) {
644 Attribute::Symbol symbol; local
645 DeserializeItemMetaDataFromPb(pb_symbol, src_pool, &symbol.symbol);
646 if (!DeserializeReferenceFromPb(pb_symbol.name(), &symbol.symbol, out_error)) {
649 symbol.value = pb_symbol.value()
    [all...]
  /frameworks/compile/mclinker/tools/mcld/
Main.cpp 526 // Setup symbol stripping mode.
616 // Symbol
622 // -u symbol
631 // --wrap=symbol
634 const char* symbol = arg->getValue(); local
635 // symbol -> __wrap_symbol
637 script_.renameMap().insert(symbol, exist);
641 .append(symbol);
645 mcld::warning(mcld::diag::rewrap) << symbol << to_wrap_str;
647 // __real_symbol -> symbol
662 const char* symbol = arg->getValue(); local
    [all...]

Completed in 372 milliseconds

1 2 3 4 5 6 78 91011>>