Searched defs:symbol (Results 201 - 225 of 234) sorted by relevance

12345678910

/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp309 const Symbol *symbol = module_sp->FindFirstSymbolWithNameAndType(name, lldb::eSymbolTypeData); local
310 if (symbol)
312 lldb::addr_t symbol_load_addr = symbol->GetAddress().GetLoadAddress(&process->GetTarget());
322 error.SetErrorString("symbol address invalid");
328 error.SetErrorString("no symbol");
559 || ivar_offset_symbol.symbol == NULL)
562 addr_t ivar_offset_address = ivar_offset_symbol.symbol->GetAddress().GetLoadAddress (&target);
1666 const Symbol *symbol = objc_module_sp->FindFirstSymbolWithNameAndType(g_gdb_objc_realized_classes, lldb::eSymbolTypeData); local
1667 if (symbol)
1669 lldb::addr_t gdb_objc_realized_classes_ptr = symbol
[all...]
/external/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp789 Symbol *symbol = symtab->FindSymbolContainingFileAddress(file_addr); local
790 if (symbol)
792 if (symbol->ValueIsAddress())
794 SectionSP section_sp (symbol->GetAddress().GetSection());
804 // For ARM we have a bit in the n_desc field of the symbol
806 if (symbol->GetFlags() & MACHO_NLIST_ARM_SYMBOL_IS_THUMB)
851 const SymbolType symbol_type = symbol->GetType();
862 // For ARM we have a bit in the n_desc field of the symbol
864 if (symbol->GetFlags() & MACHO_NLIST_ARM_SYMBOL_IS_THUMB)
1302 case SectionTypeNonLazySymbolPointers: sect_type = eSectionTypeDataPointers; break; // section with only non-lazy symbol pointer
[all...]
/external/chromium_org/third_party/lzma_sdk/
H A DLzmaEnc.c552 static void RangeEnc_EncodeBit(CRangeEnc *p, CLzmaProb *prob, UInt32 symbol) argument
556 if (symbol == 0)
575 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol) argument
577 symbol |= 0x100;
580 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
581 symbol <<= 1;
583 while (symbol < 0x10000);
586 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) argument
589 symbol |
636 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 symbol, UInt32 *ProbPrices) argument
649 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices) argument
666 RcTree_Encode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
680 RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
693 RcTree_GetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
705 RcTree_ReverseGetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
733 LenEnc_Encode(CLenEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState) argument
792 LenEnc_Encode2(CLenPriceEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState, Bool updatePrice, UInt32 *ProbPrices) argument
[all...]
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaEnc.c553 static void RangeEnc_EncodeBit(CRangeEnc *p, CLzmaProb *prob, UInt32 symbol) argument
557 if (symbol == 0)
576 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol) argument
578 symbol |= 0x100;
581 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
582 symbol <<= 1;
584 while (symbol < 0x10000);
587 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) argument
590 symbol |
637 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 symbol, UInt32 *ProbPrices) argument
650 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices) argument
667 RcTree_Encode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
681 RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
694 RcTree_GetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
706 RcTree_ReverseGetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
734 LenEnc_Encode(CLenEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState) argument
793 LenEnc_Encode2(CLenPriceEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState, Bool updatePrice, UInt32 *ProbPrices) argument
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc344 // friends. If the pending file references an unknown symbol
347 // defining that symbol, and that file has not yet been built by the pool,
382 // Find symbols. This returns a null Symbol (symbol.IsNull() is true)
407 bool AddSymbol(const string& full_name, Symbol symbol);
498 // Find symbols. These return a null Symbol (symbol.IsNull() is true)
524 Symbol symbol);
730 const string& full_name, Symbol symbol) {
731 if (InsertIfNotPresent(&symbols_by_name_, full_name.c_str(), symbol)) {
740 const void* parent, const string& name, Symbol symbol) {
742 return InsertIfNotPresent(&symbols_by_parent_, by_parent_key, symbol);
729 AddSymbol( const string& full_name, Symbol symbol) argument
739 AddAliasUnderParent( const void* parent, const string& name, Symbol symbol) argument
1341 Symbol symbol = tables_->FindSymbol(prefix); local
2853 AddSymbol( const string& full_name, const void* parent, const string& name, const Message& proto, Symbol symbol) argument
4333 Symbol symbol = builder_->FindSymbolNotEnforcingDeps( local
4713 Symbol symbol = local
[all...]
/external/chromium_org/v8/src/
H A Dfactory.cc673 Handle<Symbol> symbol = NewSymbol(); local
674 symbol->set_is_private(true);
675 return symbol;
H A Dgdb-jit.cc814 // Convert symbol names from strings to indexes in the string table.
851 // String table for this symbol table should follow it in the section table.
866 void Add(const ELFSymbol& symbol, Zone* zone) { argument
867 if (symbol.binding() == ELFSymbol::BIND_LOCAL) {
868 locals_.Add(symbol, zone);
870 globals_.Add(symbol, zone);
877 // We are assuming that string table will follow symbol table.
H A Dheap-snapshot-generator.cc158 case kSymbol: return "/symbol/";
856 return AddEntry(object, HeapEntry::kSymbol, "symbol");
1256 void V8HeapExplorer::ExtractSymbolReferences(int entry, Symbol* symbol) { argument
1257 SetInternalReference(symbol, entry,
1258 "name", symbol->name(),
H A Dparser.cc730 Handle<String> symbol = GetSymbol(scanner); local
731 if (parser_->fni_ != NULL) parser_->fni_->PushLiteralName(symbol);
732 return factory->NewLiteral(symbol, pos);
1347 Handle<String> symbol = GetSymbol(); local
1356 USE(symbol);
3325 // Anonymous functions were passed either the empty symbol or a null
4746 // Partial preparse causes no symbol information.
H A Druntime.cc613 Handle<Symbol> symbol = isolate->factory()->NewSymbol(); local
614 if (name->IsString()) symbol->set_name(*name);
615 return *symbol;
624 Handle<Symbol> symbol = isolate->factory()->NewPrivateSymbol(); local
625 if (name->IsString()) symbol->set_name(*name);
626 return *symbol;
639 Handle<Object> symbol; local
641 isolate, symbol, Object::GetPropertyOrElement(privates, name));
642 if (!symbol->IsSymbol()) {
643 ASSERT(symbol
647 name, symbol, NONE, STRICT).Assert(); local
[all...]
H A Dapi.cc2630 "Could not convert to symbol");
6143 i::Handle<i::Object> symbol = local
6145 if (!symbol->IsSymbol()) {
6146 ASSERT(symbol->IsUndefined());
6147 symbol = i_isolate->factory()->NewSymbol();
6148 i::Handle<i::Symbol>::cast(symbol)->set_name(*i_name);
6150 symbols, i_name, symbol, NONE, i::STRICT).Assert();
6152 return Utils::ToLocal(i::Handle<i::Symbol>::cast(symbol));
6164 i::Handle<i::Object> symbol = local
6166 if (!symbol
6182 i::Handle<i::Symbol> symbol = i_isolate->factory()->NewPrivateSymbol(); local
6197 i::Handle<i::Object> symbol = local
[all...]
H A Dobjects.cc1396 PrintF(file, "{symbol %p}", static_cast<void*>(name));
1443 PrintF(file, "{symbol %p}", static_cast<void*>(name));
1544 Symbol* symbol = Symbol::cast(this); local
1545 accumulator->Add("<Symbol: %d", symbol->Hash());
1546 if (!symbol->name()->IsUndefined()) {
1548 String::cast(symbol->name())->StringShortPrint(accumulator);
/external/deqp/modules/gles3/functional/
H A Des3fShaderOperatorTests.cpp357 // Float scalar that can be either constant or a symbol that can be evaluated later.
384 switch (m_value.symbol)
408 Symbol symbol; member in union:deqp::gles3::Functional::FloatScalar::ConstantOrSymbol
411 ConstantOrSymbol (Symbol s) : symbol (s) {}
/external/elfutils/0.153/src/
H A Dld.h39 /* Character used to introduce version name after symbol. */
187 struct symbol *symbols;
199 /* The symbol table section.
201 XXX Maybe support for more than one symbol table is needed. */
205 /* Dynamic symbol table section. */
222 /* String table section associated with the symbol table. */
224 /* String table section associated with the dynamic symbol table. */
226 /* Number of entries in the symbol table. */
236 /* For undefined or common symbols we need a reference to the symbol
238 struct symbol **symre
428 struct symbol struct
1008 struct symbol *symbol; member in struct:ld_state::scngroup
[all...]
H A Dldgeneric.c99 struct symbol **ndxtosymp);
111 /* Map symbol index to struct symbol record. */
112 static struct symbol **ndxtosym;
114 /* String table reference to all symbols in the symbol table. */
174 /* If this symbol is not undefined in this file it cannot come from
179 struct symbol *sym = file->symref[symidx];
525 struct usedfiles *fileinfo, struct symbol *oldp)
557 struct symbol *oldp)
593 struct usedfiles *fileinfo, struct symbol *old
1274 struct symbol *symbol = fileinfo->scninfo[cnt].symbols; local
[all...]
/external/lldb/source/Commands/
H A DCommandObjectTarget.cpp238 result.AppendErrorWithFormat("invalid symbol file path '%s'", symfile_path);
1615 Symbol *symbol = symtab->SymbolAtIndex(match_indexes[i]); local
1617 symbol->GetAddress(),
1622 // symbol->Dump (&strm, interpreter.GetExecutionContext().GetTargetPtr(), i);
2037 "Dump the symbol table from one or more target modules.",
2137 result.GetOutputStream().Printf("Dumping symbol table for %zu modules.\n", num_modules);
2207 { eSortOrderNone, "none", "No sorting, use the original symbol table order."},
2208 { eSortOrderByAddress, "address", "Sort output by symbol address."},
2209 { eSortOrderByName, "name", "Sort output by symbol name."},
2217 { LLDB_OPT_SET_1, false, "sort", 's', required_argument, g_sort_option_enumeration, 0, eArgTypeSortOrder, "Supply a sort order when dumping the symbol tabl
[all...]
/external/llvm/include/llvm/Support/
H A DCOFF.h95 /// COFF symbol table entries for local symbols have been removed. This is
124 struct symbol { struct in namespace:llvm::COFF
149 /// Storage class tells where and what the symbol represents
154 IMAGE_SYM_CLASS_NULL = 0, ///< No symbol
156 IMAGE_SYM_CLASS_EXTERNAL = 2, ///< External symbol
179 /// Line number, reformatted as symbol
182 /// External symbol in dmert public lib
614 /// The import name is identical to the public symbol name
616 /// The import name is the public symbol name, but skipping the leading ?,
619 /// The import name is the public symbol nam
[all...]
/external/lzma/C/
H A DLzmaEnc.c552 static void RangeEnc_EncodeBit(CRangeEnc *p, CLzmaProb *prob, UInt32 symbol) argument
556 if (symbol == 0)
575 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol) argument
577 symbol |= 0x100;
580 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
581 symbol <<= 1;
583 while (symbol < 0x10000);
586 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) argument
589 symbol |
636 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 symbol, UInt32 *ProbPrices) argument
649 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices) argument
666 RcTree_Encode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
680 RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
693 RcTree_GetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
705 RcTree_ReverseGetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
733 LenEnc_Encode(CLenEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState) argument
792 LenEnc_Encode2(CLenPriceEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState, Bool updatePrice, UInt32 *ProbPrices) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc341 // Find symbols. This returns a null Symbol (symbol.IsNull() is true)
366 bool AddSymbol(const string& full_name, Symbol symbol);
439 // Find symbols. These return a null Symbol (symbol.IsNull() is true)
465 Symbol symbol);
638 const string& full_name, Symbol symbol) {
639 if (InsertIfNotPresent(&symbols_by_name_, full_name.c_str(), symbol)) {
648 const void* parent, const string& name, Symbol symbol) {
650 return InsertIfNotPresent(&symbols_by_parent_, by_parent_key, symbol);
1252 // symbol we're looking for. Some DescriptorDatabases return false
1861 // If LookupSymbol() finds a symbol tha
637 AddSymbol( const string& full_name, Symbol symbol) argument
647 AddAliasUnderParent( const void* parent, const string& name, Symbol symbol) argument
2516 AddSymbol( const string& full_name, const void* parent, const string& name, const Message& proto, Symbol symbol) argument
3883 Symbol symbol = builder_->FindSymbolNotEnforcingDeps( local
3918 Symbol symbol = builder_->LookupSymbol(name_part, local
4266 Symbol symbol = local
[all...]
/external/chromium_org/third_party/sqlite/src/tool/
H A Dlemon.c163 struct symbol { struct
164 const char *name; /* Name of the symbol */
165 int index; /* Index number for this symbol */
168 struct symbol *fallback; /* fallback token in case this token doesn't parse */
171 char *firstset; /* First-set for all rules of this symbol */
174 char *destructor; /* Code which executes whenever this symbol is
184 struct symbol **subsym; /* Array of constituent symbols */
190 struct symbol *lhs; /* Left-hand side of the rule */
192 int lhsStart; /* True if left-hand side is the start symbol */
195 struct symbol **rh
[all...]
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp738 /*ensure at least two present symbols. There should be at least one symbol
742 symbol, it'd give it the theoritical 0 bits but in practice zlib wants 1 bit*/
762 For every symbol, maxbitlen coins will be created*/
816 /*calculate the lenghts of each symbol, as the amount of times a coin of each symbol is used*/
833 /*Create the Huffman tree given the symbol frequencies*/
910 decode the symbol from the tree. The "readBitFromStream" code is inlined in
915 if(ct < codetree->numcodes) return ct; /*the symbol is decoded, return it*/
916 else treepos = ct - codetree->numcodes; /*symbol not yet decoded, instead move tree position*/
987 /*i is the current symbol w
1748 unsigned symbol = lz77_encoded.data[i]; local
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc2749 v8::Symbol::New(isolate, v8_str("my-symbol"));
2753 // Check basic symbol functionality.
2767 CHECK(sym2->Name()->Equals(v8_str("my-symbol")));
2784 // Make sure delete of a non-existent symbol property works.
2844 // Make sure delete of a non-existent private symbol property works.
2896 v8::Local<String> name = v8_str("my-symbol");
2909 CompileRun("var sym2 = Symbol.for('my-symbol')");
13821 // Records addr as location of symbol.
13822 void InsertSymbolAt(i::Address addr, SymbolInfo* symbol);
13824 // Finds the symbol containin
13854 InsertSymbolAt(i::Address addr, SymbolInfo* symbol) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/libxml/src/
H A Dtestapi.c29702 char * name; /* the name of the symbol */
29704 void ** symbol; /* the resulting symbol address */ local
29713 symbol = gen_void_ptr_ptr(n_symbol, 2);
29715 ret_val = xmlModuleSymbol(module, (const char *)name, symbol);
29720 des_void_ptr_ptr(n_symbol, symbol, 2);
[all...]
/external/valgrind/main/perf/
H A Dtinycc.c141 /* Type of symbol indices. */
334 #define SHN_ABS 0xfff1 /* Associated symbol is absolute */
335 #define SHN_COMMON 0xfff2 /* Associated symbol is common */
351 #define SHT_DYNSYM 11 /* Dynamic linker symbol table */
359 #define SHT_GNU_versym 0x6fffffff /* Version symbol table. */
397 every dynamic symbol. */
401 Elf32_Half si_boundto; /* Direct bindings, symbol bound to */
402 Elf32_Half si_flags; /* Per symbol flags */
407 Elf64_Half si_boundto; /* Direct bindings, symbol bound to */
408 Elf64_Half si_flags; /* Per symbol flag
6613 resolve_sym(TCCState *s1, const char *symbol, int type) argument
18349 put_elf_reloc(Section *symtab, Section *s, unsigned long offset, int type, int symbol) argument
[all...]

Completed in 915 milliseconds

12345678910