Searched refs:customDictionary (Results 1 – 3 of 3) sorted by relevance
89 public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize, byte[] customDictionary) in BrotliInputStream() argument110 if (customDictionary != null) in BrotliInputStream()112 Org.Brotli.Dec.Decode.SetCustomDictionary(state, customDictionary); in BrotliInputStream()
98 internal byte[] customDictionary = new byte[0]; field in Org.Brotli.Dec.State
462 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()