/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 155 SmallVector<SymbolEntry, 64> Symbols; in loadSegment32() local 183 Symbols.push_back(SymbolEntry(STE->Value, Name)); in loadSegment32() 189 array_pod_sort(Symbols.begin(), Symbols.end()); in loadSegment32() 192 if (!Symbols.size()) in loadSegment32() 198 for (unsigned i = 0, e = Symbols.size() - 1; i != e; ++i) { in loadSegment32() 199 uint64_t StartOffset = Sect->Address + Symbols[i].first; in loadSegment32() 200 uint64_t EndOffset = Symbols[i + 1].first - 1; in loadSegment32() 201 DEBUG(dbgs() << "Extracting function: " << Symbols[i].second in loadSegment32() 203 extractFunction(Symbols[i].second, Base + StartOffset, Base + EndOffset); in loadSegment32() 207 uint64_t StartOffset = Symbols[Symbols.size() - 1].first; in loadSegment32() [all …]
|
/external/llvm/lib/CodeGen/ |
D | MachineModuleInfo.cpp | 59 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols; member 87 if (I->second.Symbols.is<std::vector<MCSymbol*>*>()) in ~MMIAddrLabelMap() 88 delete I->second.Symbols.get<std::vector<MCSymbol*>*>(); in ~MMIAddrLabelMap() 108 if (!Entry.Symbols.isNull()) { in getAddrLabelSymbol() 110 if (Entry.Symbols.is<MCSymbol*>()) in getAddrLabelSymbol() 111 return Entry.Symbols.get<MCSymbol*>(); in getAddrLabelSymbol() 112 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0]; in getAddrLabelSymbol() 122 Entry.Symbols = Result; in getAddrLabelSymbol() 135 if (Entry.Symbols.isNull()) in getAddrLabelSymbolToEmit() 137 else if (MCSymbol *Sym = Entry.Symbols.dyn_cast<MCSymbol*>()) in getAddrLabelSymbolToEmit() [all …]
|
/external/icu4c/data/unidata/ |
D | Blocks.txt | 81 19E0..19FF; Khmer Symbols 97 20A0..20CF; Currency Symbols 98 20D0..20FF; Combining Diacritical Marks for Symbols 99 2100..214F; Letterlike Symbols 110 2600..26FF; Miscellaneous Symbols 112 27C0..27EF; Miscellaneous Mathematical Symbols-A 116 2980..29FF; Miscellaneous Mathematical Symbols-B 118 2B00..2BFF; Miscellaneous Symbols and Arrows 130 3000..303F; CJK Symbols and Punctuation 142 4DC0..4DFF; Yijing Hexagram Symbols [all …]
|
/external/llvm/tools/llvm-objdump/ |
D | llvm-objdump.cpp | 174 std::vector<std::pair<uint64_t, StringRef> > Symbols; in DisassembleInput() local 184 Symbols.push_back(std::make_pair(Address, Name)); in DisassembleInput() 189 array_pod_sort(Symbols.begin(), Symbols.end()); in DisassembleInput() 197 if (Symbols.empty()) in DisassembleInput() 198 Symbols.push_back(std::make_pair(0, name)); in DisassembleInput() 231 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) { in DisassembleInput() 232 uint64_t Start = Symbols[si].first; in DisassembleInput() 233 uint64_t End = si == se-1 ? SectSize : Symbols[si + 1].first - 1; in DisassembleInput() 234 outs() << '\n' << Symbols[si].second << ":\n"; in DisassembleInput()
|
/external/srec/srec/Semproc/src/ |
D | SymbolTable.c | 207 MEMCHK(rc, ptr->next, &ptr->Symbols[MAX_SYMBOLS-1]); in ST_getSymbolSlot() 224 ptr->next = &ptr->Symbols[0]; in ST_reset() 227 ptr->Symbols[i].key[0] = 0; in ST_reset() 228 ptr->Symbols[i].value[0] = 0; in ST_reset() 246 ptr->next = &ptr->Symbols[0 in ST_reset_all() 250 ptr->Symbols[i].key[0] = 0; in ST_reset_all() 251 ptr->Symbols[i].value[0] = 0; in ST_reset_all()
|
/external/llvm/include/llvm/MC/ |
D | MCAssembler.h | 673 iplist<MCSymbolData> Symbols; variable 833 const SymbolDataListType &getSymbolList() const { return Symbols; } in getSymbolList() 834 SymbolDataListType &getSymbolList() { return Symbols; } in getSymbolList() 836 symbol_iterator symbol_begin() { return Symbols.begin(); } in symbol_begin() 837 const_symbol_iterator symbol_begin() const { return Symbols.begin(); } in symbol_begin() 839 symbol_iterator symbol_end() { return Symbols.end(); } in symbol_end() 840 const_symbol_iterator symbol_end() const { return Symbols.end(); } in symbol_end() 842 size_t symbol_size() const { return Symbols.size(); } in symbol_size()
|
D | MCContext.h | 66 SymbolTable Symbols; variable 166 return Symbols; in getSymbols()
|
/external/llvm/lib/MC/ |
D | WinCOFFObjectWriter.cpp | 135 symbols Symbols; member in __anond657a6540111::WinCOFFObjectWriter 326 for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I) in ~WinCOFFObjectWriter() 333 return createCOFFEntity<COFFSymbol>(Name, Symbols); in createSymbol() 341 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols); in GetOrCreateCOFFSymbol() 741 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) { in WriteObject() 765 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) { in WriteObject() 873 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) in WriteObject()
|
D | MCContext.cpp | 34 Allocator(), Symbols(Allocator), UsedNames(Allocator), in MCContext() 73 StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name); in GetOrCreateSymbol() 151 return Symbols.lookup(Name); in LookupSymbol()
|
/external/llvm/tools/lto/ |
D | LTOModule.cpp | 469 StringMap<State> Symbols; member in __anon429ae2220111::RecordStreamer 472 State &S = Symbols[Symbol.getName()]; in markDefined() 486 State &S = Symbols[Symbol.getName()]; in markGlobal() 501 State &S = Symbols[Symbol.getName()]; in markUsed() 546 return Symbols.begin(); in begin() 550 return Symbols.end(); in end()
|
/external/srec/srec/Semproc/include/ |
D | SR_SymbolTable.h | 67 Symbol Symbols[MAX_SYMBOLS]; member
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | HTMLEntities.properties | 197 # Letterlike Symbols 268 # Miscellaneous Symbols
|
/external/clang/utils/C++Tests/ |
D | lit.cfg | 27 config.excludes.append('LLVM-Code-Symbols')
|
/external/bison/doc/ |
D | bison.info | 72 * Table of Symbols:: All the keywords of the Bison language are explained. 145 * Symbols:: Terminal and nonterminal symbols. 877 error recovery. *Note Symbols::. 885 constant containing several characters. *Note Symbols::, for more 2379 Nonterminal Symbols: Type Decl. 2655 * Symbols:: Terminal and nonterminal symbols. 2664 File: bison.info, Node: Grammar Outline, Next: Symbols, Up: Grammar File 2786 File: bison.info, Node: Symbols, Next: Rules, Prev: Grammar Outline, Up: Grammar File 2788 3.2 Symbols, Terminal and Nonterminal 2791 "Symbols" in Bison grammars represent the grammatical classifications [all …]
|
/external/webkit/Tools/DumpRenderTree/qt/ |
D | fonts.conf | 231 <string>Standard Symbols L</string>
|
/external/qemu/ |
D | alpha.ld | 102 Symbols in the DWARF debugging sections are relative to the beginning
|
D | sparc.ld | 124 Symbols in the DWARF debugging sections are relative to the beginning
|
D | i386-vl.ld | 115 Symbols in the DWARF debugging sections are relative to the beginning
|
D | arm.ld | 128 Symbols in the DWARF debugging sections are relative to the beginning
|
D | i386.ld | 128 Symbols in the DWARF debugging sections are relative to the beginning
|
D | m68k.ld | 151 Symbols in the DWARF debugging sections are relative to the beginning
|
D | x86_64.ld | 158 Symbols in the DWARF debugging sections are relative to the beginning
|
/external/valgrind/main/docs/internals/ |
D | 3_4_BUGSTATUS.txt | 35 186796 Symbols with length>200 in suppression files are ignored
|
/external/elfutils/src/ |
D | elf32-i386.script | 186 Symbols in the DWARF debugging sections are relative to the beginning
|
/external/svox/pico/tests/data/ |
D | xsampa_pico_man_es-ES.txt | 122 # --------- Other Symbols
|