Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp354 uint32_t ExpectedIndex = 0; in writeSectionContent() local
356 if (Sig.Index != ExpectedIndex) { in writeSectionContent()
360 ++ExpectedIndex; in writeSectionContent()
433 uint32_t ExpectedIndex = NumImportedTables; in writeSectionContent() local
435 if (Table.Index != ExpectedIndex) { in writeSectionContent()
439 ++ExpectedIndex; in writeSectionContent()
455 uint32_t ExpectedIndex = NumImportedEvents; in writeSectionContent() local
457 if (Event.Index != ExpectedIndex) { in writeSectionContent()
461 ++ExpectedIndex; in writeSectionContent()
470 uint32_t ExpectedIndex = NumImportedGlobals; in writeSectionContent() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A 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()
H A DPDBFileBuilder.cpp92 Expected<uint32_t> ExpectedIndex = allocateNamedStream(Name, Data.size()); in addNamedStream() local
93 if (!ExpectedIndex) in addNamedStream()
94 return ExpectedIndex.takeError(); in addNamedStream()
95 assert(NamedStreamData.count(*ExpectedIndex) == 0); in addNamedStream()
96 NamedStreamData[*ExpectedIndex] = std::string(Data); in addNamedStream()
H A DDbiStreamBuilder.cpp312 auto ExpectedIndex = Msf.addStream(S->Size); in finalizeMsfLayout() local
313 if (!ExpectedIndex) in finalizeMsfLayout()
314 return ExpectedIndex.takeError(); in finalizeMsfLayout()
315 S->StreamNumber = *ExpectedIndex; in finalizeMsfLayout()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp2610 ValType ExpectedIndex, unsigned ExpectedIndexStride) { in fitsRegularPattern() argument
2614 if (*I != -1 && *I != ExpectedIndex) in fitsRegularPattern()
2616 ExpectedIndex += ExpectedIndexStride; in fitsRegularPattern()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp9701 unsigned ExpectedIndex = i * NumEltsIn128Bits + in isHopBuildVector() local
9703 if (ExpectedIndex == ExtIndex0 && ExtIndex1 == ExtIndex0 + 1) in isHopBuildVector()
9712 if (ExpectedIndex == ExtIndex1 && ExtIndex0 == ExtIndex1 + 1) in isHopBuildVector()