Home | History | Annotate | Download | only in examples

Lines Matching defs:dictionary

51 const char dictionary[] = "hello";
52 uLong dictId; /* Adler32 value of the dictionary */
458 * Test deflate() with preset dictionary
473 (const Bytef*)dictionary, (int)sizeof(dictionary));
493 * Test inflate() with a preset dictionary
521 fprintf(stderr, "unexpected dictionary");
524 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
525 (int)sizeof(dictionary));
537 printf("inflate with dictionary: %s\n", (char *)uncompr);