/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfFile.cpp | 25 for (DIEAbbrev *Abbrev : Abbreviations) in ~DwarfFile() 45 Abbreviations.push_back(New); in assignAbbrevNumber() 46 New->setNumber(Abbreviations.size()); in assignAbbrevNumber() 47 Die.setAbbrevNumber(Abbreviations.size()); in assignAbbrevNumber() 133 if (!Abbreviations.empty()) { in emitAbbrevs() 136 Asm->emitDwarfAbbrevs(Abbreviations); in emitAbbrevs()
|
D | DwarfFile.h | 47 std::vector<DIEAbbrev *> Abbreviations; variable
|
/external/markdown/docs/extensions/ |
D | Abbreviations.txt | 1 Abbreviations 15 Abbreviations are defined using the syntax established in 50 Abbreviations can also be called from the command line using Markdown's `-x`
|
D | index.txt | 14 * [[Abbreviations]]
|
D | extra.txt | 12 * [[Abbreviations]]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/X86/ |
D | dwarfdump-debug-names.s | 107 # CHECK-NEXT: Abbreviations table size: 0x7 113 # CHECK-NEXT: Abbreviations [ 153 # CHECK-NEXT: Abbreviations table size: 0x7 159 # CHECK-NEXT: Abbreviations [
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DIE.cpp | 143 for (DIEAbbrev *Abbrev : Abbreviations) in ~DIEAbbrevSet() 162 Abbreviations.push_back(New); in uniqueAbbreviation() 163 New->setNumber(Abbreviations.size()); in uniqueAbbreviation() 164 Die.setAbbrevNumber(Abbreviations.size()); in uniqueAbbreviation() 172 if (!Abbreviations.empty()) { in Emit() 175 AP->emitDwarfAbbrevs(Abbreviations); in Emit()
|
D | AccelTable.cpp | 218 DenseMap<uint32_t, SmallVector<AttributeEncoding, 2>> Abbreviations; member in __anon41ef894b0311::Dwarf5AccelTableWriter 458 for (const auto &Abbrev : Abbreviations) { in emitAbbrevs() 478 auto AbbrevIt = Abbreviations.find(Entry.getDieTag()); in emitEntry() 479 assert(AbbrevIt != Abbreviations.end() && in emitEntry() 527 Abbreviations.reserve(UniqueTags.size()); in Dwarf5AccelTableWriter() 529 Abbreviations.try_emplace(Tag, UniformAttributes); in Dwarf5AccelTableWriter()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/ |
D | DwarfGenerator.h | 254 DIEAbbrevSet Abbreviations; variable 307 DIEAbbrevSet &getAbbrevSet() { return Abbreviations; } in getAbbrevSet()
|
D | DwarfGenerator.cpp | 376 Abbreviations(Allocator) {} in Generator() 490 Abbreviations.Emit(Asm.get(), TLOF->getDwarfAbbrevSection()); in generate()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
D | DwarfDebug.cpp | 161 Abbreviations.push_back(&Abbrev); in assignAbbrevNumber() 164 Abbrev.setNumber(Abbreviations.size()); in assignAbbrevNumber() 1410 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1]; in computeSizeAndOffset() 1505 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1]; in emitDIE() 1629 if (!Abbreviations.empty()) { in emitAbbreviations() 1637 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) { in emitAbbreviations() 1639 const DIEAbbrev *Abbrev = Abbreviations[i]; in emitAbbreviations()
|
D | DwarfDebug.h | 208 std::vector<DIEAbbrev *> Abbreviations; variable
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 912 Abbreviations.push_back( in AssignAbbrev() 915 Abbreviations.back()->AddAttribute(Attr.getAttribute(), Attr.getForm()); in AssignAbbrev() 916 AbbreviationsSet.InsertNode(Abbreviations.back().get(), InsertToken); in AssignAbbrev() 918 Abbrev.setNumber(Abbreviations.size()); in AssignAbbrev() 919 Abbreviations.back()->setNumber(Abbreviations.size()); in AssignAbbrev() 2575 Streamer->emitAbbrevs(Abbreviations, MaxDwarfVersion); in link()
|
D | DwarfLinker.h | 432 std::vector<std::unique_ptr<DIEAbbrev>> Abbreviations; variable
|
/external/llvm/docs/ |
D | BitCodeFormat.rst | 54 * Abbreviations, which specify compression optimizations for the file. 186 #. A set of abbreviations. Abbreviations may be defined within a block, in 188 enclosing blocks see the abbreviation). Abbreviations can also be defined 278 Abbreviations section in Bitstream Format 281 Abbreviations are an important form of compression for bitstreams. The idea is 287 Abbreviations can be determined dynamically per client, per file. Because the 306 Abbreviations are implicitly assigned IDs sequentially starting from 4 (the argument
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 1383 std::vector<std::unique_ptr<DIEAbbrev>> Abbreviations; member in llvm::dsymutil::__anond69ad1180111::DwarfLinker 2340 Abbreviations.push_back( in AssignAbbrev() 2343 Abbreviations.back()->AddAttribute(Attr.getAttribute(), Attr.getForm()); in AssignAbbrev() 2344 AbbreviationsSet.InsertNode(Abbreviations.back().get(), InsertToken); in AssignAbbrev() 2346 Abbrev.setNumber(Abbreviations.size()); in AssignAbbrev() 2347 Abbreviations.back()->setNumber(Abbreviations.size()); in AssignAbbrev() 3496 Streamer->emitAbbrevs(Abbreviations); in link()
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | BitCodeFormat.rst | 54 * Abbreviations, which specify compression optimizations for the file. 188 #. A set of abbreviations. Abbreviations may be defined within a block, in 190 enclosing blocks see the abbreviation). Abbreviations can also be defined 280 Abbreviations section in Bitstream Format 283 Abbreviations are an important form of compression for bitstreams. The idea is 289 Abbreviations can be determined dynamically per client, per file. Because the 308 Abbreviations are implicitly assigned IDs sequentially starting from 4 (the argument
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | DIE.h | 142 std::vector<DIEAbbrev *> Abbreviations; variable
|
/external/icu/icu4c/source/data/lang/ |
D | en.txt | 1179 standard{"Suppress Sentence Breaks After Standard Abbreviations"}
|
/external/python/cpython2/Doc/library/ |
D | profile.rst | 394 Abbreviations can be used for any key names, as long as the abbreviation
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMInstrNEON.td | 2494 // Abbreviations used in multiclass suffixes:
|
/external/llvm/lib/Target/ARM/ |
D | ARMInstrNEON.td | 3221 // Abbreviations used in multiclass suffixes:
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMInstrNEON.td | 3312 // Abbreviations used in multiclass suffixes:
|
/external/icu/icu4c/source/data/unidata/ |
D | ppucd.txt | 14966 # Abbreviations involving liter symbols
|