Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/
DBrotliInputStream.cs89 public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize, byte[] customDictionary) in BrotliInputStream() argument
110 if (customDictionary != null) in BrotliInputStream()
112 Org.Brotli.Dec.Decode.SetCustomDictionary(state, customDictionary); in BrotliInputStream()
DState.cs98 internal byte[] customDictionary = new byte[0]; field in Org.Brotli.Dec.State
DDecode.cs462 int minimalNewSize = (int)state.expectedTotalSize + state.customDictionary.Length; in MaybeReallocateRingBuffer()
482 else if (state.customDictionary.Length != 0) in MaybeReallocateRingBuffer()
485 int length = state.customDictionary.Length; in MaybeReallocateRingBuffer()
492 System.Array.Copy(state.customDictionary, offset, newBuffer, 0, length); in MaybeReallocateRingBuffer()
657 state.customDictionary = (data == null) ? new byte[0] : data; in SetCustomDictionary()