/external/clang/test/CodeGenCXX/ |
H A D | 2010-03-09-AnonAggregate.cpp | 8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents; member in class:MO
|
/external/llvm/unittests/Support/ |
H A D | SpecialCaseListTest.cpp | 35 std::string makeSpecialCaseListFile(StringRef Contents) { argument 40 OF << Contents; local
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
H A D | InMemoryStruct.h | 37 value_type Contents; member in class:llvm::InMemoryStruct 43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {} 48 if (Value.Target != &Value.Contents) { 51 Target = &Contents; 52 Contents = Value.Contents;
|
/external/dtc/Documentation/ |
H A D | dtc-paper.tex | 159 \multicolumn{1}{r}{\textbf{Offset}}& \multicolumn{1}{c}{\textbf{Contents}} \\\cline{2-2} 244 \subsection{Contents of the tree}
|
/external/clang/unittests/Basic/ |
H A D | VirtualFileSystemTest.cpp | 353 std::vector<std::string> Contents; local 356 Contents.push_back(I->getName()); 360 EXPECT_EQ(4U, Contents.size()); 362 for (const std::string &Name : Contents) {
|
/external/clang/unittests/libclang/ |
H A D | LibclangTest.cpp | 42 const char *Contents; member in struct:__anon3408::TestVFO 45 TestVFO(const char *Contents) : Contents(Contents) { argument 60 if (Contents) { 65 EXPECT_STREQ(Contents, BufStr.c_str()); 330 const char *Contents = local 347 EXPECT_STREQ(Contents, BufStr.c_str()); 375 void WriteFile(std::string &Filename, const std::string &Contents) { argument 384 OS << Contents; local [all...] |
/external/llvm/lib/MC/ |
H A D | MCFragment.cpp | 359 OS << " Contents:["; 360 const SmallVectorImpl<char> &Contents = DF->getContents(); local 361 for (unsigned i = 0, e = Contents.size(); i != e; ++i) { 363 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); 365 OS << "] (" << Contents.size() << " bytes)"; 383 OS << " Contents:["; 384 const SmallVectorImpl<char> &Contents = CEIF->getContents(); local 385 for (unsigned i = 0, e = Contents.size(); i != e; ++i) { 387 OS << hexdigit((Contents[ [all...] |
H A D | MCAssembler.cpp | 693 MutableArrayRef<char> Contents; local 696 Contents = FragWithFixups->getContents(); 699 Contents = FragWithFixups->getContents(); 702 Contents = FragWithFixups->getContents(); 709 getBackend().applyFixup(Fixup, Contents.data(), 710 Contents.size(), FixedValue, IsPCRel);
|
H A D | MCCodeView.cpp | 78 SmallVectorImpl<char> &Contents = getStringTableFragment()->getContents(); local 80 StringTable.insert(std::make_pair(S, unsigned(Contents.size()))); 85 Contents.append(S.begin(), S.end() + 1); 384 SmallVectorImpl<char> &Contents = Frag.getContents(); local 385 Contents.clear(); 388 raw_svector_ostream OS(Contents); 418 Fixups.push_back(MCFixup::create(Contents.size(), BE, FK_SecRel_4)); 419 Contents.resize(Contents.size() + 4); // Fixup for code start. 421 Fixups.push_back(MCFixup::create(Contents [all...] |
/external/llvm/tools/llvm-readobj/ |
H A D | Win64EHDumper.cpp | 292 ArrayRef<uint8_t> Contents; local 293 error(Ctx.COFF.getSectionContents(XData, Contents)); 294 if (Contents.empty()) 298 if (Offset > Contents.size()) 301 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset); 314 ArrayRef<uint8_t> Contents; local 315 error(Ctx.COFF.getSectionContents(PData, Contents)); 316 if (Contents.empty()) 320 reinterpret_cast<const RuntimeFunction *>(Contents.data()); 321 const size_t Count = Contents [all...] |
H A D | ARMWinEHPrinter.cpp | 515 ArrayRef<uint8_t> Contents; 516 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) 522 reinterpret_cast<const ulittle32_t *>(Contents.data() + Offset); 743 ArrayRef<uint8_t> Contents) { 746 reinterpret_cast<const ulittle32_t *>(Contents.data() + Offset); 757 ArrayRef<uint8_t> Contents; local 758 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) 761 if (Contents.size() % PDataEntrySize) { 766 for (unsigned EI = 0, EE = Contents.size() / PDataEntrySize; EI < EE; ++EI) 767 if (!dumpProcedureDataEntry(COFF, Section, EI, Contents)) 741 dumpProcedureDataEntry(const COFFObjectFile &COFF, const SectionRef Section, unsigned Index, ArrayRef<uint8_t> Contents) argument [all...] |
H A D | ARMEHABIPrinter.h | 415 ErrorOr<ArrayRef<uint8_t> > Contents = ELF->getSectionContents(EHT); local 416 if (!Contents) 443 *reinterpret_cast<const support::ulittle32_t *>(Contents->data() + TableEntryOffset); 453 PrintOpcodes(Contents->data() + TableEntryOffset, 3, 1); 458 PrintOpcodes(Contents->data() + TableEntryOffset, 2 + 4 * AdditionalWords, 482 ErrorOr<ArrayRef<uint8_t> > Contents = ELF->getSectionContents(IT); local 483 if (!Contents) 497 reinterpret_cast<const support::ulittle32_t *>(Contents->data()); 530 PrintOpcodes(Contents->data() + Entry * IndexTableEntrySize + 4, 3, 1);
|
/external/swiftshader/third_party/subzero/pnacl-llvm/ |
H A D | NaClBitcodeHeader.cpp | 137 std::string NaClBitcodeHeaderField::Contents() const { function in class:NaClBitcodeHeaderField 304 UnsupportedMessage.append(Field->Contents());
|
/external/llvm/lib/CodeGen/MIRParser/ |
H A D | MIRParser.cpp | 63 MIRParserImpl(std::unique_ptr<MemoryBuffer> Contents, StringRef Filename, 167 MIRParserImpl::MIRParserImpl(std::unique_ptr<MemoryBuffer> Contents, argument 170 SM.AddNewSourceBuffer(std::move(Contents), SMLoc()); 784 llvm::createMIRParser(std::unique_ptr<MemoryBuffer> Contents, 786 auto Filename = Contents->getBufferIdentifier(); 788 llvm::make_unique<MIRParserImpl>(std::move(Contents), Filename, Context));
|
/external/llvm/tools/llvm-objdump/ |
H A D | COFFDump.cpp | 198 ArrayRef<uint8_t> &Contents, uint64_t &Addr) { 205 if (std::error_code EC = Obj->getSectionContents(Section, Contents)) 463 ArrayRef<uint8_t> Contents; local 464 error(Obj->getSectionContents(Pdata, Contents)); 465 if (Contents.empty()) 468 RFStart = reinterpret_cast<const RuntimeFunction *>(Contents.data()); 469 NumRFs = Contents.size() / sizeof(RuntimeFunction); 196 getSectionContents(const COFFObjectFile *Obj, const std::vector<RelocationRef> &Rels, uint64_t Offset, ArrayRef<uint8_t> &Contents, uint64_t &Addr) argument
|
/external/llvm/include/llvm/CodeGen/ |
H A D | MachineOperand.h | 140 /// SmallContents - This really should be part of the Contents union, but 146 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi. 153 /// Contents union - This contains the payload for the various operand types. 182 } Contents; member in class:llvm::MachineOperand 412 return Contents.ImmVal; 417 return Contents.CI; 422 return Contents.CFP; 427 return Contents.MBB; 433 return Contents.OffsetedInfo.Val.Index; 438 return Contents [all...] |
H A D | ScheduleDAG.h | 78 /// Contents - A union discriminated by the dependence kind. 87 } Contents; member in class:llvm::SDep 102 : Dep(S, kind), Contents() { 110 Contents.Reg = Reg; 114 Contents.Reg = Reg; 120 : Dep(S, Order), Contents(), Latency(0) { 121 Contents.OrdKind = kind; 166 return getKind() == Order && (Contents.OrdKind == MayAliasMem 167 || Contents.OrdKind == MustAliasMem); 173 return getKind() == Order && Contents [all...] |
/external/llvm/include/llvm/MC/ |
H A D | MCFragment.h | 170 SmallVector<char, ContentsSize> Contents; member in class:llvm::MCEncodedFragmentWithContents 179 SmallVectorImpl<char> &getContents() { return Contents; } 180 const SmallVectorImpl<char> &getContents() const { return Contents; } 379 SmallString<8> Contents; member in class:llvm::MCLEBFragment 384 Contents.push_back(0); 394 SmallString<8> &getContents() { return Contents; } 395 const SmallString<8> &getContents() const { return Contents; } 414 SmallString<8> Contents; member in class:llvm::MCDwarfLineAddrFragment 421 Contents.push_back(0); 431 SmallString<8> &getContents() { return Contents; } 447 SmallString<8> Contents; member in class:llvm::MCDwarfCallFrameFragment 499 SmallString<8> Contents; member in class:llvm::MCCVInlineLineTableFragment [all...] |
/external/llvm/tools/llvm-dwp/ |
H A D | llvm-dwp.cpp | 365 StringRef &Contents) { 372 if (!consumeCompressedDebugSectionHeader(Contents, OriginalSize) || 373 zlib::uncompress(Contents, UncompressedSections.back(), OriginalSize) != 379 Contents = UncompressedSections.back(); 406 StringRef Contents; local 407 if (auto Err = Section.getContents(Contents)) 410 if (auto Err = handleCompressedSection(UncompressedSections, Name, Contents)) 422 (CurEntry.Contributions[Index].Length = Contents.size()); 427 InfoSection = Contents; 430 AbbrevSection = Contents; 363 handleCompressedSection( std::deque<SmallString<32>> &UncompressedSections, StringRef &Name, StringRef &Contents) argument [all...] |
/external/swiftshader/third_party/LLVM/lib/MC/ |
H A D | MCAssembler.cpp | 870 OS << " Contents:["; 871 const SmallVectorImpl<char> &Contents = DF->getContents(); local 872 for (unsigned i = 0, e = Contents.size(); i != e; ++i) { 874 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); 876 OS << "] (" << Contents.size() << " bytes)";
|
/external/swiftshader/third_party/subzero/src/ |
H A D | IceAssembler.h | 123 memcpy(&Value, reinterpret_cast<void *>(Contents + Position), sizeof(T)); 130 memcpy(reinterpret_cast<void *>(Contents + Position), &Value, sizeof(T)); 138 intptr_t size() const { return Cursor - Contents; } 139 uintptr_t contents() const { return Contents; } 178 intptr_t getPosition() const { return Cursor - Contents; } 202 Cursor = Contents + NewSize; 211 uintptr_t Contents; member in class:Ice::AssemblerBuffer 225 assert(Limit >= Contents); 226 return (Limit - Contents) + kMinimumGap;
|
H A D | IceGlobalInits.h | 268 return llvm::StringRef(Contents, ContentsSize); 281 // implementation-specific details. Given that Contents is arena 285 Contents(new (VDL->allocate_initializer<char>(ContentsSize)) char) { 287 Contents[I] = static_cast<int8_t>(Values[I]); 293 Contents(new (VDL->allocate_initializer<char>(ContentsSize)) char) { 295 Contents[i] = Str[i]; 300 DataVecType Contents; member in class:Ice::VariableDeclaration::DataInitializer
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | OrcRemoteTargetClient.h | 367 : Size(Size), Align(Align), Contents(new char[Size + Align - 1]) {} 371 Contents(std::move(Other.Contents)), 377 Contents = std::move(Other.Contents); 387 uintptr_t LocalAddr = reinterpret_cast<uintptr_t>(Contents.get()); 401 std::unique_ptr<char[]> Contents; member in class:llvm::orc::remote::OrcRemoteTargetClient::RCMemoryManager::Alloc
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
H A D | MachineOperand.h | 114 /// SmallContents - This really should be part of the Contents union, but 120 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi. 127 /// Contents union - This contains the payload for the various operand types. 154 } Contents; member in class:llvm::MachineOperand 284 return Contents.Reg.Next; 362 return Contents.ImmVal; 367 return Contents.CI; 372 return Contents.CFP; 377 return Contents.MBB; 383 return Contents [all...] |
H A D | ScheduleDAG.h | 59 /// Contents - A union discriminated by the dependence kind. 81 } Contents; member in class:llvm::SDep 98 : Dep(S, kind), Contents(), Latency(latency) { 108 Contents.Reg = Reg; 112 Contents.Order.isNormalMemory = isNormalMemory; 113 Contents.Order.isMustAlias = isMustAlias; 114 Contents.Order.isArtificial = isArtificial; 125 return Contents.Reg == Other.Contents.Reg; 127 return Contents [all...] |