Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/
DBrotliInputStream.cs63 public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize) in BrotliInputStream() argument
64 : this(source, byteReadBufferSize, null) in BrotliInputStream()
89 public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize, byte[] customDictionary) in BrotliInputStream() argument
91 if (byteReadBufferSize <= 0) in BrotliInputStream()
93 throw new System.ArgumentException("Bad buffer size:" + byteReadBufferSize); in BrotliInputStream()
99 this.buffer = new byte[byteReadBufferSize]; in BrotliInputStream()
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/
DBrotliInputStream.java71 public BrotliInputStream(InputStream source, int byteReadBufferSize) throws IOException { in BrotliInputStream() argument
72 if (byteReadBufferSize <= 0) { in BrotliInputStream()
73 throw new IllegalArgumentException("Bad buffer size:" + byteReadBufferSize); in BrotliInputStream()
77 this.buffer = new byte[byteReadBufferSize]; in BrotliInputStream()