Home | History | Annotate | Download | only in test

Lines Matching defs:dictionary

34 static const char dictionary[] = "hello";
35 static uLong dictId; /* Adler32 value of the dictionary */
406 * Test deflate() with preset dictionary
420 (const Bytef*)dictionary, (int)sizeof(dictionary));
440 * Test inflate() with a preset dictionary
467 fprintf(stderr, "unexpected dictionary");
470 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
471 (int)sizeof(dictionary));
483 printf("inflate with dictionary: %s\n", (char *)uncompr);