Searched refs:MaybeNum (Results 1 – 2 of 2) sorted by relevance
52 Expected<word_t> MaybeNum = Read(bitc::BlockSizeWidth); in EnterSubBlock() local53 if (!MaybeNum) in EnterSubBlock()54 return MaybeNum.takeError(); in EnterSubBlock()55 word_t NumWords = MaybeNum.get(); in EnterSubBlock()151 Expected<uint32_t> MaybeNum = ReadVBR(6); in skipRecord() local152 if (!MaybeNum) in skipRecord()153 return MaybeNum.takeError(); in skipRecord()154 unsigned NumElts = MaybeNum.get(); in skipRecord()191 Expected<uint32_t> MaybeNum = ReadVBR(6); in skipRecord() local192 if (!MaybeNum) in skipRecord()[all …]
492 Expected<unsigned> MaybeNum = Read(bitc::BlockSizeWidth); in SkipBlock() 493 if (!MaybeNum) in SkipBlock() local 494 return MaybeNum.takeError(); in SkipBlock() 495 size_t NumFourBytes = MaybeNum.get(); in SkipBlock()