Lines Matching refs:dictionary
4766 if (opt.dictionary) {
4769 if (typeof opt.dictionary === 'string') {
4771 dict = strings.string2buf(opt.dictionary);
4772 } else if (toString.call(opt.dictionary) === '[object ArrayBuffer]') {
4773 dict = new Uint8Array(opt.dictionary);
4775 dict = opt.dictionary;
5180 var dictionary = this.options.dictionary;
5214 if (status === c.Z_NEED_DICT && dictionary) {
5216 if (typeof dictionary === 'string') {
5217 dict = strings.string2buf(dictionary);
5218 } else if (toString.call(dictionary) === '[object ArrayBuffer]') {
5219 dict = new Uint8Array(dictionary);
5221 dict = dictionary;
7668 function deflateSetDictionary(strm, dictionary) { argument
7669 var dictLength = dictionary.length;
7693 strm.adler = adler32(strm.adler, dictionary, dictLength, 0);
7710 utils.arraySet(tmpDict, dictionary, dictLength - s.w_size, s.w_size, 0);
7711 dictionary = tmpDict;
7720 strm.input = dictionary;
9679 function inflateSetDictionary(strm, dictionary) { argument
9680 var dictLength = dictionary.length;
9698 dictid = adler32(dictid, dictionary, dictLength, 0);
9705 ret = updatewindow(strm, dictionary, dictLength, dictLength);