Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCPseudoProbe.cpp417 auto ErrorOrIndex = readUnsignedNumber<uint32_t>(); in buildAddress2ProbeMap() local
418 if (!ErrorOrIndex) in buildAddress2ProbeMap()
420 Index = std::move(*ErrorOrIndex); in buildAddress2ProbeMap()
456 auto ErrorOrIndex = readUnsignedNumber<uint32_t>(); in buildAddress2ProbeMap() local
457 if (!ErrorOrIndex) in buildAddress2ProbeMap()
459 uint32_t Index = std::move(*ErrorOrIndex); in buildAddress2ProbeMap()
/openbsd-src/gnu/llvm/llvm/include/llvm/Object/
H A DELF.h436 Expected<uint32_t> ErrorOrIndex = in getSectionIndex() local
438 if (!ErrorOrIndex) in getSectionIndex()
439 return ErrorOrIndex.takeError(); in getSectionIndex()
440 return *ErrorOrIndex; in getSectionIndex()