Lines Matching refs:dictionary
33 const dictionary: PChar = 'hello';
35 var dictId: LongInt; (* Adler32 value of the dictionary *)
447 * Test deflate with preset dictionary
461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary));
481 * Test inflate with a preset dictionary
512 EXIT_ERR('unexpected dictionary');
513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
524 WriteLn('inflate with dictionary: ', PChar(uncompr));
592 WriteLn('** Testing deflate and inflate with preset dictionary');