Lines Matching refs:dictionary
1568 … decompressed stream to preserve the allocated Huffman Tree and preset dictionary. This API uses a…
1625 inflateSetDictionary(strm: ZStream, dictionary: ArrayBuffer): Promise<ReturnStatus>
1627 Initializes the decompression dictionary from a given uncompressed byte sequence. This API uses a p…
1638 | dictionary | ArrayBuffer | Yes | Dictionary data. |
1670 let dictionary = 'hello'
1671 let dictionarybuf = new ArrayBuffer(dictionary.length);
1673 for (let i = 0, j = dictionary.length; i < j; i++) {
1725 Initializes the decompression dictionary from a given uncompressed byte sequence. This API uses a p…
1844 Initializes the decompression dictionary from a given uncompressed byte sequence. This API uses a p…
2131 inflateGetDictionary(strm: ZStream, dictionary: ArrayBuffer): Promise<DictionaryOutputInfo>
2133 …ion dictionary used in the current decompression stream. This API uses a promise to return the res…
2144 | dictionary | ArrayBuffer | Yes | Receives the actual contents of the decompression dictionary. …
3171 deflateSetDictionary(strm: ZStream, dictionary: ArrayBuffer): Promise<ReturnStatus>
3173 Initializes the compression dictionary from a given sequence of bytes. This API uses a promise to r…
3184 | dictionary | ArrayBuffer | Yes | Dictionary data. |
3236 deflateGetDictionary(strm: ZStream, dictionary: ArrayBuffer): Promise<DictionaryOutputInfo>
3238 …ion dictionary used in the current decompression stream. This API uses a promise to return the res…
3249 | dictionary | ArrayBuffer | Yes | Receives the actual contents of the decompression dictionary. …
3792 | NEED_DICT | 2 | The API is successfully called, indicating that a preset dictionary is requir…
3831 | dictionaryLength | number | Yes | No | Length of a dictionary. …