Home | History | Annotate | Download | only in zlib

Lines Matching full:dictionary

25 // Tests that compressing and then decompressing the given file at the given compression level and dictionary
44 // Make dictionary, if given.
165 const dictionary = "0123456789."
167 testFileLevelDict(t, fn, DefaultCompression, dictionary)
168 testFileLevelDict(t, fn, NoCompression, dictionary)
170 testFileLevelDict(t, fn, level, dictionary)
176 const dictionary = "0123456789."
180 testFileLevelDictReset(t, fn, NoCompression, []byte(dictionary))
181 testFileLevelDictReset(t, fn, DefaultCompression, []byte(dictionary))
203 t.Errorf("result too large (got %d, want <= %d bytes). Is the dictionary being used?", len(output), expectedMaxSize)