Searched refs:NextByte (Results 1 – 1 of 1) sorted by relevance
46 ArrayRef<uint8_t> NextByte; in readULEB128() local50 if (auto Err = readBytes(NextByte, 1)) in readULEB128()52 EncodedBytes.push_back(NextByte[0]); in readULEB128()53 } while (NextByte[0] & 0x80); in readULEB128()61 ArrayRef<uint8_t> NextByte; in readSLEB128() local65 if (auto Err = readBytes(NextByte, 1)) in readSLEB128()67 EncodedBytes.push_back(NextByte[0]); in readSLEB128()68 } while (NextByte[0] & 0x80); in readSLEB128()