Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCPseudoProbe.cpp437 auto ErrorOrIndex = readUnsignedNumber<uint32_t>(); in buildAddress2ProbeMap() local
438 if (!ErrorOrIndex) in buildAddress2ProbeMap()
440 Index = std::move(*ErrorOrIndex); in buildAddress2ProbeMap()
476 auto ErrorOrIndex = readUnsignedNumber<uint32_t>(); in buildAddress2ProbeMap() local
477 if (!ErrorOrIndex) in buildAddress2ProbeMap()
479 uint32_t Index = std::move(*ErrorOrIndex); in buildAddress2ProbeMap()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h515 Expected<uint32_t> ErrorOrIndex = in getSectionIndex() local
517 if (!ErrorOrIndex) in getSectionIndex()
518 return ErrorOrIndex.takeError(); in getSectionIndex()
519 return *ErrorOrIndex; in getSectionIndex()