Home
last modified time | relevance | path

Searched refs:Contents (Results 1 – 25 of 474) sorted by relevance

12345678910>>...19

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DMachineOperand.h194 } Contents; variable
201 static_assert(sizeof(Contents) <= 2 * sizeof(void *), in MachineOperand()
528 return Contents.ImmVal; in getImm()
533 return Contents.CI; in getCImm()
538 return Contents.CFP; in getFPImm()
543 return Contents.MBB; in getMBB()
549 return Contents.OffsetedInfo.Val.Index; in getIndex()
554 return Contents.OffsetedInfo.Val.GV; in getGlobal()
559 return Contents.OffsetedInfo.Val.BA; in getBlockAddress()
564 return Contents.Sym; in getMCSymbol()
[all …]
DScheduleDAG.h92 } Contents; variable
106 : Dep(S, kind), Contents() { in SDep()
114 Contents.Reg = Reg; in SDep()
118 Contents.Reg = Reg; in SDep()
125 : Dep(S, Order), Contents(), Latency(0) { in SDep()
126 Contents.OrdKind = kind; in SDep()
170 return getKind() == Order && (Contents.OrdKind == MayAliasMem in isNormalMemory()
171 || Contents.OrdKind == MustAliasMem); in isNormalMemory()
176 return getKind() == Order && Contents.OrdKind == Barrier; in isBarrier()
188 return getKind() == Order && Contents.OrdKind == MustAliasMem; in isMustAlias()
[all …]
/external/llvm/include/llvm/CodeGen/
DMachineOperand.h182 } 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 …]
DScheduleDAG.h87 } 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/
DMachineOperand.h154 } 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 …]
DScheduleDAG.h81 } 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/
DInMemoryStruct.h37 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/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DAccelTable.cpp96 const AccelTableBase &Contents; ///< Data to emit. member in __anon5ac1bb820311::AccelTableWriter
110 AccelTableWriter(AsmPrinter *Asm, const AccelTableBase &Contents, in AccelTableWriter() argument
112 : Asm(Asm), Contents(Contents), SkipIdenticalHashes(SkipIdenticalHashes) { in AccelTableWriter()
169 AppleAccelTableWriter(AsmPrinter *Asm, const AccelTableBase &Contents, in AppleAccelTableWriter() argument
171 : AccelTableWriter(Asm, Contents, true), in AppleAccelTableWriter()
172 Header(Contents.getBucketCount(), Contents.getUniqueHashCount(), in AppleAccelTableWriter()
241 AsmPrinter *Asm, const AccelTableBase &Contents,
252 for (auto &Bucket : Contents.getBuckets()) { in emitHashes()
266 const auto &Buckets = Contents.getBuckets(); in emitOffsets()
310 const auto &Buckets = Contents.getBuckets(); in emitBuckets()
[all …]
/external/llvm/include/llvm/MC/
DMCFragment.h170 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/
DMachineRegisterInfo.cpp211 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/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DDebugSubsectionRecord.cpp61 const DebugSubsectionRecord &Contents, CodeViewContainer Container) in DebugSubsectionRecordBuilder() argument
62 : Contents(Contents), Container(Container) {} in DebugSubsectionRecordBuilder()
66 : Contents.getRecordData().getLength(); in calculateSerializedLength()
77 Header.Kind = uint32_t(Subsection ? Subsection->kind() : Contents.kind()); in commit()
81 : Contents.getRecordData().getLength(); in commit()
90 if (auto EC = Writer.writeStreamRef(Contents.getRecordData())) in commit()
/external/tensorflow/tensorflow/core/lib/gtl/
Dflatset_test.cc47 NumSetContents Contents(const NumSet& set) { in Contents() function
153 EXPECT_EQ(Contents(set), NumSetContents()); in TEST()
157 EXPECT_EQ(Contents(set), NumSetContents({1, 2})); in TEST()
169 EXPECT_EQ(Contents(set), NumSetContents({2})); in TEST()
171 EXPECT_EQ(Contents(set), NumSetContents()); in TEST()
183 EXPECT_EQ(Contents(set), NumSetContents()); in TEST()
198 EXPECT_EQ(Contents(set), Contents(expected)); in TEST()
232 EXPECT_EQ(Contents(set), NumSetContents()); in TEST()
242 EXPECT_EQ(Contents(set), NumSetContents()); in TEST()
251 EXPECT_EQ(Contents(src), Contents(copy)); in TEST()
[all …]
Dflatmap_test.cc48 NumMapContents Contents(const NumMap& map) { in Contents() function
208 EXPECT_EQ(Contents(map), NumMapContents()); in TEST()
212 EXPECT_EQ(Contents(map), NumMapContents({{1, 100}, {2, 200}})); in TEST()
224 EXPECT_EQ(Contents(map), NumMapContents({{2, 200}})); in TEST()
226 EXPECT_EQ(Contents(map), NumMapContents()); in TEST()
238 EXPECT_EQ(Contents(map), NumMapContents()); in TEST()
253 EXPECT_EQ(Contents(map), Contents(expected)); in TEST()
301 EXPECT_EQ(Contents(map), NumMapContents()); in TEST()
311 EXPECT_EQ(Contents(map), NumMapContents()); in TEST()
320 EXPECT_EQ(Contents(src), Contents(copy)); in TEST()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineRegisterInfo.cpp278 MO->Contents.Reg.Prev = MO; in addRegOperandToUseList()
279 MO->Contents.Reg.Next = nullptr; in addRegOperandToUseList()
286 MachineOperand *Last = Head->Contents.Reg.Prev; in addRegOperandToUseList()
289 Head->Contents.Reg.Prev = MO; in addRegOperandToUseList()
290 MO->Contents.Reg.Prev = Last; in addRegOperandToUseList()
296 MO->Contents.Reg.Next = Head; in addRegOperandToUseList()
300 MO->Contents.Reg.Next = nullptr; in addRegOperandToUseList()
301 Last->Contents.Reg.Next = MO; in addRegOperandToUseList()
313 MachineOperand *Next = MO->Contents.Reg.Next; in removeRegOperandFromUseList()
314 MachineOperand *Prev = MO->Contents.Reg.Prev; in removeRegOperandFromUseList()
[all …]
/external/clang/unittests/libclang/
DLibclangTest.cpp42 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCFragment.h189 SmallVector<char, ContentsSize> Contents; variable
198 SmallVectorImpl<char> &getContents() { return Contents; } in getContents()
199 const SmallVectorImpl<char> &getContents() const { return Contents; } in getContents()
493 SmallString<8> Contents; variable
498 Contents.push_back(0); in MCFragment()
508 SmallString<8> &getContents() { return Contents; } in getContents()
509 const SmallString<8> &getContents() const { return Contents; } in getContents()
552 SmallString<8> Contents; variable
557 Contents.push_back(0); in MCFragment()
565 SmallString<8> &getContents() { return Contents; } in getContents()
[all …]
/external/llvm/tools/llvm-readobj/
DWin64EHDumper.cpp292 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()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DWin64EHDumper.cpp292 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()
/external/swiftshader/third_party/subzero/src/
DIceAssembler.h123 memcpy(&Value, reinterpret_cast<void *>(Contents + Position), sizeof(T)); in load()
130 memcpy(reinterpret_cast<void *>(Contents + Position), &Value, sizeof(T)); in store()
138 intptr_t size() const { return Cursor - Contents; } in size()
139 uintptr_t contents() const { return Contents; } in contents()
178 intptr_t getPosition() const { return Cursor - Contents; } in getPosition()
202 Cursor = Contents + NewSize; in setSize()
211 uintptr_t Contents; variable
225 assert(Limit >= Contents); in capacity()
226 return (Limit - Contents) + kMinimumGap; in capacity()
DIceAssembler.cpp100 Contents = NewContents(Assemblr, kInitialBufferCapacity); in AssemblerBuffer()
101 Cursor = Contents; in AssemblerBuffer()
102 Limit = computeLimit(Contents, kInitialBufferCapacity); in AssemblerBuffer()
126 reinterpret_cast<void *>(Contents), old_size); in extendCapacity()
129 intptr_t delta = new_contents - Contents; in extendCapacity()
130 Contents = new_contents; in extendCapacity()
/external/llvm/test/Object/
Dobjdump-section-content.test8 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/swiftshader/third_party/llvm-7.0/llvm/test/Object/
Dobjdump-section-content.test8 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/swiftshader/third_party/LLVM/include/llvm/MC/
DMCAssembler.h109 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/
DMCCodeView.cpp78 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()
/external/pdfium/testing/resources/
Dbug_750568.in17 /Contents 7 0 R
23 /Contents 8 0 R
29 /Contents 9 0 R
35 /Contents 10 0 R

12345678910>>...19