Home
last modified time | relevance | path

Searched refs:remainingBufferBytes (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/
DBrotliInputStream.java29 private int remainingBufferBytes; field in BrotliInputStream
78 this.remainingBufferBytes = 0; in BrotliInputStream()
112 if (bufferOffset >= remainingBufferBytes) { in read()
113 remainingBufferBytes = read(buffer, 0, buffer.length); in read()
115 if (remainingBufferBytes == -1) { in read()
137 int copyLen = Math.max(remainingBufferBytes - bufferOffset, 0); in read()
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/
DBrotliInputStream.cs21 private int remainingBufferBytes; field in Org.Brotli.Dec.BrotliInputStream
100 this.remainingBufferBytes = 0; in BrotliInputStream()
127 if (bufferOffset >= remainingBufferBytes) in ReadByte()
129 remainingBufferBytes = Read(buffer, 0, buffer.Length); in ReadByte()
131 if (remainingBufferBytes == -1) in ReadByte()
159 int copyLen = System.Math.Max(remainingBufferBytes - bufferOffset, 0); in Read()