Searched refs:NextByte (Results 1 – 3 of 3) 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()
42 GifByteType *NextByte);999 GifByteType NextByte; in DGifDecompressInput() local1009 if (DGifBufferedInput(GifFile, Private->Buf, &NextByte) == GIF_ERROR) { in DGifDecompressInput()1013 ((unsigned long)NextByte) << Private->CrntShiftState; in DGifDecompressInput()1042 DGifBufferedInput(GifFileType *GifFile, GifByteType *Buf, GifByteType *NextByte) in DGifBufferedInput() argument1063 *NextByte = Buf[1]; in DGifBufferedInput()1067 *NextByte = Buf[Buf[1]++]; in DGifBufferedInput()