Searched refs:NextByte (Results 1 – 2 of 2) sorted by relevance
45 ArrayRef<uint8_t> NextByte; in readULEB128() local49 if (auto Err = readBytes(NextByte, 1)) in readULEB128()51 EncodedBytes.push_back(NextByte[0]); in readULEB128()52 } while (NextByte[0] & 0x80); in readULEB128()60 ArrayRef<uint8_t> NextByte; in readSLEB128() local64 if (auto Err = readBytes(NextByte, 1)) in readSLEB128()66 EncodedBytes.push_back(NextByte[0]); in readSLEB128()67 } while (NextByte[0] & 0x80); in readSLEB128()
14154 auto NextByte = Src0Mask & (0xFF << ((3 - I) * 8)); in performAddCombine() local14156 if (is_contained(SrcBytes, NextByte)) { in performAddCombine()14160 SrcBytes.push_back(NextByte); in performAddCombine()