Home
last modified time | relevance | path

Searched refs:ErrorOrIndex (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/lib/MC/
H A DMCPseudoProbe.cpp400 auto ErrorOrIndex = readUnsignedNumber<uint32_t>(); in buildAddress2ProbeMap() local
401 if (!ErrorOrIndex) in buildAddress2ProbeMap()
403 Index = std::move(*ErrorOrIndex); in buildAddress2ProbeMap()
436 auto ErrorOrIndex = readUnsignedNumber<uint32_t>(); in buildAddress2ProbeMap() local
437 if (!ErrorOrIndex) in buildAddress2ProbeMap()
439 uint32_t Index = std::move(*ErrorOrIndex); in buildAddress2ProbeMap()
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DELF.h434 Expected<uint32_t> ErrorOrIndex = in getSectionIndex() local
436 if (!ErrorOrIndex) in getSectionIndex()
437 return ErrorOrIndex.takeError(); in getSectionIndex()
438 return *ErrorOrIndex; in getSectionIndex()