Lines Matching defs:dictionary
34 static const char dictionary[] = "hello";
35 static uLong dictId; /* Adler32 value of the dictionary */
425 * Test deflate() with preset dictionary
440 (const Bytef*)dictionary, (int)sizeof(dictionary));
460 * Test inflate() with a preset dictionary
491 fprintf(stderr, "unexpected dictionary");
494 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
495 (int)sizeof(dictionary));
507 printf("inflate with dictionary: %s\n", (char *)uncompr);