Home
last modified time | relevance | path

Searched refs:ExpectedIndex (Results 1 – 15 of 15) sorted by relevance

/external/llvm-project/llvm/include/llvm/Support/
DBinaryItemStream.h43 auto ExpectedIndex = translateOffsetIndex(Offset); in readBytes() local
44 if (!ExpectedIndex) in readBytes()
45 return ExpectedIndex.takeError(); in readBytes()
46 const auto &Item = Items[*ExpectedIndex]; in readBytes()
57 auto ExpectedIndex = translateOffsetIndex(Offset); in readLongestContiguousChunk() local
58 if (!ExpectedIndex) in readLongestContiguousChunk()
59 return ExpectedIndex.takeError(); in readLongestContiguousChunk()
60 Buffer = Traits::bytes(Items[*ExpectedIndex]); in readLongestContiguousChunk()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DBinaryItemStream.h43 auto ExpectedIndex = translateOffsetIndex(Offset); in readBytes() local
44 if (!ExpectedIndex) in readBytes()
45 return ExpectedIndex.takeError(); in readBytes()
46 const auto &Item = Items[*ExpectedIndex]; in readBytes()
57 auto ExpectedIndex = translateOffsetIndex(Offset); in readLongestContiguousChunk() local
58 if (!ExpectedIndex) in readLongestContiguousChunk()
59 return ExpectedIndex.takeError(); in readLongestContiguousChunk()
60 Buffer = Traits::bytes(Items[*ExpectedIndex]); in readLongestContiguousChunk()
/external/llvm-project/llvm/lib/ObjectYAML/
DWasmEmitter.cpp341 uint32_t ExpectedIndex = 0; in writeSectionContent() local
343 if (Sig.Index != ExpectedIndex) { in writeSectionContent()
347 ++ExpectedIndex; in writeSectionContent()
420 uint32_t ExpectedIndex = NumImportedTables; in writeSectionContent() local
422 if (Table.Index != ExpectedIndex) { in writeSectionContent()
426 ++ExpectedIndex; in writeSectionContent()
442 uint32_t ExpectedIndex = NumImportedEvents; in writeSectionContent() local
444 if (Event.Index != ExpectedIndex) { in writeSectionContent()
448 ++ExpectedIndex; in writeSectionContent()
457 uint32_t ExpectedIndex = NumImportedGlobals; in writeSectionContent() local
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DTpiStreamBuilder.cpp124 auto ExpectedIndex = Msf.addStream(HashStreamSize); in finalizeMsfLayout() local
125 if (!ExpectedIndex) in finalizeMsfLayout()
126 return ExpectedIndex.takeError(); in finalizeMsfLayout()
127 HashStreamIndex = *ExpectedIndex; in finalizeMsfLayout()
DPDBFileBuilder.cpp94 Expected<uint32_t> ExpectedIndex = allocateNamedStream(Name, Data.size()); in addNamedStream() local
95 if (!ExpectedIndex) in addNamedStream()
96 return ExpectedIndex.takeError(); in addNamedStream()
97 assert(NamedStreamData.count(*ExpectedIndex) == 0); in addNamedStream()
98 NamedStreamData[*ExpectedIndex] = Data; in addNamedStream()
DDbiStreamBuilder.cpp315 auto ExpectedIndex = Msf.addStream(S->Size); in finalizeMsfLayout() local
316 if (!ExpectedIndex) in finalizeMsfLayout()
317 return ExpectedIndex.takeError(); in finalizeMsfLayout()
318 S->StreamNumber = *ExpectedIndex; in finalizeMsfLayout()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DWasmEmitter.cpp326 uint32_t ExpectedIndex = 0; in writeSectionContent() local
328 if (Sig.Index != ExpectedIndex) { in writeSectionContent()
332 ++ExpectedIndex; in writeSectionContent()
420 uint32_t ExpectedIndex = NumImportedGlobals; in writeSectionContent() local
422 if (Global.Index != ExpectedIndex) { in writeSectionContent()
426 ++ExpectedIndex; in writeSectionContent()
436 uint32_t ExpectedIndex = NumImportedEvents; in writeSectionContent() local
438 if (Event.Index != ExpectedIndex) { in writeSectionContent()
442 ++ExpectedIndex; in writeSectionContent()
464 uint32_t ExpectedIndex = NumImportedFunctions; in writeSectionContent() local
[all …]
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DTpiStreamBuilder.cpp157 auto ExpectedIndex = Msf.addStream(HashStreamSize); in finalizeMsfLayout() local
158 if (!ExpectedIndex) in finalizeMsfLayout()
159 return ExpectedIndex.takeError(); in finalizeMsfLayout()
160 HashStreamIndex = *ExpectedIndex; in finalizeMsfLayout()
DPDBFileBuilder.cpp93 Expected<uint32_t> ExpectedIndex = allocateNamedStream(Name, Data.size()); in addNamedStream() local
94 if (!ExpectedIndex) in addNamedStream()
95 return ExpectedIndex.takeError(); in addNamedStream()
96 assert(NamedStreamData.count(*ExpectedIndex) == 0); in addNamedStream()
97 NamedStreamData[*ExpectedIndex] = std::string(Data); in addNamedStream()
DDbiStreamBuilder.cpp311 auto ExpectedIndex = Msf.addStream(S->Size); in finalizeMsfLayout() local
312 if (!ExpectedIndex) in finalizeMsfLayout()
313 return ExpectedIndex.takeError(); in finalizeMsfLayout()
314 S->StreamNumber = *ExpectedIndex; in finalizeMsfLayout()
/external/llvm/lib/Target/Mips/
DMipsSEISelLowering.cpp2497 ValType ExpectedIndex, unsigned ExpectedIndexStride) { in fitsRegularPattern() argument
2501 if (*I != -1 && *I != ExpectedIndex) in fitsRegularPattern()
2503 ExpectedIndex += ExpectedIndexStride; in fitsRegularPattern()
/external/llvm-project/llvm/lib/Target/Mips/
DMipsSEISelLowering.cpp2610 ValType ExpectedIndex, unsigned ExpectedIndexStride) { in fitsRegularPattern() argument
2614 if (*I != -1 && *I != ExpectedIndex) in fitsRegularPattern()
2616 ExpectedIndex += ExpectedIndexStride; in fitsRegularPattern()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsSEISelLowering.cpp2611 ValType ExpectedIndex, unsigned ExpectedIndexStride) { in fitsRegularPattern() argument
2615 if (*I != -1 && *I != ExpectedIndex) in fitsRegularPattern()
2617 ExpectedIndex += ExpectedIndexStride; in fitsRegularPattern()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp9273 unsigned ExpectedIndex = i * NumEltsIn128Bits + in isHopBuildVector() local
9275 if (ExpectedIndex == ExtIndex0 && ExtIndex1 == ExtIndex0 + 1) in isHopBuildVector()
9284 if (ExpectedIndex == ExtIndex1 && ExtIndex0 == ExtIndex1 + 1) in isHopBuildVector()
/external/llvm-project/llvm/lib/Target/X86/
DX86ISelLowering.cpp9546 unsigned ExpectedIndex = i * NumEltsIn128Bits + in isHopBuildVector() local
9548 if (ExpectedIndex == ExtIndex0 && ExtIndex1 == ExtIndex0 + 1) in isHopBuildVector()
9557 if (ExpectedIndex == ExtIndex1 && ExtIndex0 == ExtIndex1 + 1) in isHopBuildVector()