/external/llvm/include/llvm/CodeGen/ |
D | MachineOperand.h | 182 } Contents; variable 412 return Contents.ImmVal; in getImm() 417 return Contents.CI; in getCImm() 422 return Contents.CFP; in getFPImm() 427 return Contents.MBB; in getMBB() 433 return Contents.OffsetedInfo.Val.Index; in getIndex() 438 return Contents.OffsetedInfo.Val.GV; in getGlobal() 443 return Contents.OffsetedInfo.Val.BA; in getBlockAddress() 448 return Contents.Sym; in getMCSymbol() 453 return Contents.CFIIndex; in getCFIIndex() [all …]
|
D | ScheduleDAG.h | 87 } Contents; variable 102 : Dep(S, kind), Contents() { in SDep() 110 Contents.Reg = Reg; in SDep() 114 Contents.Reg = Reg; in SDep() 120 : Dep(S, Order), Contents(), Latency(0) { in SDep() 121 Contents.OrdKind = kind; in SDep() 166 return getKind() == Order && (Contents.OrdKind == MayAliasMem in isNormalMemory() 167 || Contents.OrdKind == MustAliasMem); in isNormalMemory() 173 return getKind() == Order && Contents.OrdKind == Barrier; in isBarrier() 186 return getKind() == Order && Contents.OrdKind == MustAliasMem; in isMustAlias() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | MachineOperand.h | 154 } Contents; variable 284 return Contents.Reg.Next; in getNextOperandForReg() 362 return Contents.ImmVal; in getImm() 367 return Contents.CI; in getCImm() 372 return Contents.CFP; in getFPImm() 377 return Contents.MBB; in getMBB() 383 return Contents.OffsetedInfo.Val.Index; in getIndex() 388 return Contents.OffsetedInfo.Val.GV; in getGlobal() 393 return Contents.OffsetedInfo.Val.BA; in getBlockAddress() 398 return Contents.Sym; in getMCSymbol() [all …]
|
D | ScheduleDAG.h | 81 } Contents; variable 98 : Dep(S, kind), Contents(), Latency(latency) { in Dep() 108 Contents.Reg = Reg; in Dep() 112 Contents.Order.isNormalMemory = isNormalMemory; in Dep() 113 Contents.Order.isMustAlias = isMustAlias; in Dep() 114 Contents.Order.isArtificial = isArtificial; in Dep() 125 return Contents.Reg == Other.Contents.Reg; 127 return Contents.Order.isNormalMemory == 128 Other.Contents.Order.isNormalMemory && 129 Contents.Order.isMustAlias == Other.Contents.Order.isMustAlias && [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | InMemoryStruct.h | 37 value_type Contents; variable 43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {} in InMemoryStruct() 48 if (Value.Target != &Value.Contents) { 51 Target = &Contents; 52 Contents = Value.Contents;
|
/external/llvm/include/llvm/MC/ |
D | MCFragment.h | 170 SmallVector<char, ContentsSize> Contents; 179 SmallVectorImpl<char> &getContents() { return Contents; } 180 const SmallVectorImpl<char> &getContents() const { return Contents; } 379 SmallString<8> Contents; 384 Contents.push_back(0); 394 SmallString<8> &getContents() { return Contents; } 395 const SmallString<8> &getContents() const { return Contents; } 414 SmallString<8> Contents; 421 Contents.push_back(0); 431 SmallString<8> &getContents() { return Contents; } [all …]
|
/external/llvm/lib/CodeGen/ |
D | MachineRegisterInfo.cpp | 211 MO->Contents.Reg.Prev = MO; in addRegOperandToUseList() 212 MO->Contents.Reg.Next = nullptr; in addRegOperandToUseList() 219 MachineOperand *Last = Head->Contents.Reg.Prev; in addRegOperandToUseList() 222 Head->Contents.Reg.Prev = MO; in addRegOperandToUseList() 223 MO->Contents.Reg.Prev = Last; in addRegOperandToUseList() 229 MO->Contents.Reg.Next = Head; in addRegOperandToUseList() 233 MO->Contents.Reg.Next = nullptr; in addRegOperandToUseList() 234 Last->Contents.Reg.Next = MO; in addRegOperandToUseList() 246 MachineOperand *Next = MO->Contents.Reg.Next; in removeRegOperandFromUseList() 247 MachineOperand *Prev = MO->Contents.Reg.Prev; in removeRegOperandFromUseList() [all …]
|
/external/clang/unittests/libclang/ |
D | LibclangTest.cpp | 42 const char *Contents; member 45 TestVFO(const char *Contents) : Contents(Contents) { in TestVFO() 60 if (Contents) { in ~TestVFO() 65 EXPECT_STREQ(Contents, BufStr.c_str()); in ~TestVFO() 330 const char *Contents = in TEST() local 347 EXPECT_STREQ(Contents, BufStr.c_str()); in TEST() 375 void WriteFile(std::string &Filename, const std::string &Contents) { in WriteFile() argument 384 OS << Contents; in WriteFile()
|
/external/llvm/tools/llvm-readobj/ |
D | Win64EHDumper.cpp | 292 ArrayRef<uint8_t> Contents; in printRuntimeFunction() local 293 error(Ctx.COFF.getSectionContents(XData, Contents)); in printRuntimeFunction() 294 if (Contents.empty()) in printRuntimeFunction() 298 if (Offset > Contents.size()) in printRuntimeFunction() 301 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset); in printRuntimeFunction() 314 ArrayRef<uint8_t> Contents; in printData() local 315 error(Ctx.COFF.getSectionContents(PData, Contents)); in printData() 316 if (Contents.empty()) in printData() 320 reinterpret_cast<const RuntimeFunction *>(Contents.data()); in printData() 321 const size_t Count = Contents.size() / sizeof(RuntimeFunction); in printData()
|
D | ARMEHABIPrinter.h | 415 ErrorOr<ArrayRef<uint8_t> > Contents = ELF->getSectionContents(EHT); in PrintExceptionTable() local 416 if (!Contents) in PrintExceptionTable() 443 *reinterpret_cast<const support::ulittle32_t *>(Contents->data() + TableEntryOffset); in PrintExceptionTable() 453 PrintOpcodes(Contents->data() + TableEntryOffset, 3, 1); in PrintExceptionTable() 458 PrintOpcodes(Contents->data() + TableEntryOffset, 2 + 4 * AdditionalWords, in PrintExceptionTable() 482 ErrorOr<ArrayRef<uint8_t> > Contents = ELF->getSectionContents(IT); in PrintIndexTable() local 483 if (!Contents) in PrintIndexTable() 497 reinterpret_cast<const support::ulittle32_t *>(Contents->data()); in PrintIndexTable() 530 PrintOpcodes(Contents->data() + Entry * IndexTableEntrySize + 4, 3, 1); in PrintIndexTable()
|
/external/llvm/test/Object/ |
D | objdump-section-content.test | 8 COFF-i386: Contents of section .text: 12 COFF-i386: Contents of section .data: 16 ELF-i386: Contents of section .text: 20 ELF-i386: Contents of section .rodata.str1.1: 23 BSS: Contents of section .bss:
|
/external/llvm/test/tools/llvm-objdump/X86/ |
D | macho-section-contents.test | 3 CHECK: Contents of section __text: 8 CHECK: Contents of section __cstring: 10 CHECK: Contents of section __compact_unwind: 13 CHECK: Contents of section __eh_frame:
|
D | macho-literals.test | 16 # CHECK-LIT4: Contents of (__TEXT,__literal4) section 24 # NON-VERBOSE-LIT4: Contents of (__TEXT,__literal4) section 40 # CHECK-LIT8: Contents of (__TEXT,__literal8) section 48 # NON-VERBOSE-LIT8: Contents of (__TEXT,__literal8) section 59 # CHECK-LIT16: Contents of (__TEXT,__literal16) section 62 # NON-VERBOSE-LIT16: Contents of (__TEXT,__literal16) section
|
D | macho-cstring-dump.test | 5 CHECK: Contents of (__TEXT,__cstring) section 8 NO_ADDR: Contents of (__TEXT,__cstring) section 12 NON_VERBOSE: Contents of (__TEXT,__cstring) section
|
D | macho-section.test | 4 MODINIT: Contents of (__DATA,__mod_init_func) section 7 NON_VERBOSE: Contents of (__DATA,__mod_init_func) section
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCAssembler.h | 109 SmallString<32> Contents; variable 124 SmallString<32> &getContents() { return Contents; } in getContents() 125 const SmallString<32> &getContents() const { return Contents; } in getContents() 336 SmallString<8> Contents; variable 340 Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); } in MCLEBFragment() 349 SmallString<8> &getContents() { return Contents; } in getContents() 350 const SmallString<8> &getContents() const { return Contents; } in getContents() 369 SmallString<8> Contents; variable 375 LineDelta(_LineDelta), AddrDelta(&_AddrDelta) { Contents.push_back(0); } in MCDwarfLineAddrFragment() 384 SmallString<8> &getContents() { return Contents; } in getContents() [all …]
|
/external/llvm/lib/MC/ |
D | MCCodeView.cpp | 78 SmallVectorImpl<char> &Contents = getStringTableFragment()->getContents(); in addToStringTable() local 80 StringTable.insert(std::make_pair(S, unsigned(Contents.size()))); in addToStringTable() 85 Contents.append(S.begin(), S.end() + 1); in addToStringTable() 384 SmallVectorImpl<char> &Contents = Frag.getContents(); in encodeDefRange() local 385 Contents.clear(); in encodeDefRange() 388 raw_svector_ostream OS(Contents); in encodeDefRange() 418 Fixups.push_back(MCFixup::create(Contents.size(), BE, FK_SecRel_4)); in encodeDefRange() 419 Contents.resize(Contents.size() + 4); // Fixup for code start. in encodeDefRange() 421 Fixups.push_back(MCFixup::create(Contents.size(), BE, FK_SecRel_2)); in encodeDefRange() 422 Contents.resize(Contents.size() + 2); // Fixup for section index. in encodeDefRange()
|
D | MCFragment.cpp | 360 const SmallVectorImpl<char> &Contents = DF->getContents(); in dump() local 361 for (unsigned i = 0, e = Contents.size(); i != e; ++i) { in dump() 363 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump() 365 OS << "] (" << Contents.size() << " bytes)"; in dump() 384 const SmallVectorImpl<char> &Contents = CEIF->getContents(); in dump() local 385 for (unsigned i = 0, e = Contents.size(); i != e; ++i) { in dump() 387 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump() 389 OS << "] (" << Contents.size() << " bytes)"; in dump()
|
/external/llvm/tools/llvm-dwp/ |
D | llvm-dwp.cpp | 365 StringRef &Contents) { in handleCompressedSection() argument 372 if (!consumeCompressedDebugSectionHeader(Contents, OriginalSize) || in handleCompressedSection() 373 zlib::uncompress(Contents, UncompressedSections.back(), OriginalSize) != in handleCompressedSection() 379 Contents = UncompressedSections.back(); in handleCompressedSection() 406 StringRef Contents; in handleSection() local 407 if (auto Err = Section.getContents(Contents)) in handleSection() 410 if (auto Err = handleCompressedSection(UncompressedSections, Name, Contents)) in handleSection() 422 (CurEntry.Contributions[Index].Length = Contents.size()); in handleSection() 427 InfoSection = Contents; in handleSection() 430 AbbrevSection = Contents; in handleSection() [all …]
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/packager/ |
D | packaging.properties | 17 root.macosx.carbon.ppc.permissions.755=Eclipse.app/Contents/MacOS/eclipse 25 …carbon.ppc.link=Eclipse.app/Contents/MacOS/eclipse,eclipse,../../../MacOS,Eclipse.app/Contents/Res…
|
/external/llvm/test/tools/dsymutil/X86/ |
D | basic-linking-bundle.test | 8 RUN: llvm-dwarfdump %T/basic-linking-bundle/basic.macho.x86_64.dSYM/Contents/Resources/DWARF/basic.… 13 RUN: FileCheck %s --input-file %T/basic-linking-bundle/basic.macho.x86_64.dSYM/Contents/Info.plist 16 RUN: llvm-dwarfdump %T/basic-linking-bundle/dsymdest/basic.macho.x86_64.dSYM/Contents/Resources/DWA… 17 RUN: FileCheck %s --input-file %T/basic-linking-bundle/dsymdest/basic.macho.x86_64.dSYM/Contents/In…
|
D | multiple-inputs.test | 20 RUN: llvm-dwarfdump %t.dSYM/Contents/Resources/DWARF/basic.macho.x86_64 \ 22 RUN: llvm-dwarfdump %t.dSYM/Contents/Resources/DWARF/basic-archive.macho.x86_64 \ 24 RUN: llvm-dwarfdump %t.dSYM/Contents/Resources/DWARF/basic-lto.macho.x86_64 | FileCheck %S/basic-lt… 25 RUN: llvm-dwarfdump %t.dSYM/Contents/Resources/DWARF/basic-lto-dw4.macho.x86_64 | FileCheck %S/basi…
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMELFStreamer.cpp | 280 SmallVector<AttributeItem, 64> Contents; member in __anond09109f60111::ARMTargetELFStreamer 285 for (size_t i = 0; i < Contents.size(); ++i) in getAttributeItem() 286 if (Contents[i].Tag == Attribute) in getAttributeItem() 287 return &Contents[i]; in getAttributeItem() 309 Contents.push_back(Item); in setAttributeItem() 330 Contents.push_back(Item); in setAttributeItem() 352 Contents.push_back(Item); in setAttributeItems() 666 assert(Contents.empty() && in switchVendor() 925 for (size_t i = 0; i < Contents.size(); ++i) { in calculateContentSize() 926 AttributeItem item = Contents[i]; in calculateContentSize() [all …]
|
/external/markdown/docs/extensions/ |
D | Tables_of_Contents.txt | 1 Table of Contents 7 Adds a Table of Contents to a Markdown document. 42 * **marker**: Text to find and replace with the Table of Contents. Defaults
|
/external/v8/src/ |
D | d8.h | 167 void WriteArrayBufferContents(const ArrayBuffer::Contents& contents); 169 const SharedArrayBuffer::Contents& contents); 178 void ReadArrayBufferContents(ArrayBuffer::Contents* contents, 180 void ReadSharedArrayBufferContents(SharedArrayBuffer::Contents* contents, 192 i::List<ArrayBuffer::Contents> array_buffer_contents_; 193 i::List<SharedArrayBuffer::Contents> shared_array_buffer_contents_; 449 static i::List<SharedArrayBuffer::Contents> externalized_shared_contents_;
|