Home
last modified time | relevance | path

Searched refs:NextByte (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/llvm/lib/Support/
DBinaryStreamReader.cpp46 ArrayRef<uint8_t> NextByte; in readULEB128() local
50 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() local
65 if (auto Err = readBytes(NextByte, 1)) in readSLEB128()
67 EncodedBytes.push_back(NextByte[0]); in readSLEB128()
68 } while (NextByte[0] & 0x80); in readSLEB128()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DBinaryStreamReader.cpp46 ArrayRef<uint8_t> NextByte; in readULEB128() local
50 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() local
65 if (auto Err = readBytes(NextByte, 1)) in readSLEB128()
67 EncodedBytes.push_back(NextByte[0]); in readSLEB128()
68 } while (NextByte[0] & 0x80); in readSLEB128()
/external/giflib/
Ddgif_lib.c42 GifByteType *NextByte);
999 GifByteType NextByte; in DGifDecompressInput() local
1009 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() argument
1063 *NextByte = Buf[1]; in DGifBufferedInput()
1067 *NextByte = Buf[Buf[1]++]; in DGifBufferedInput()