Lines Matching refs:dictionary

399      If a preset dictionary is needed after this call (see inflateSetDictionary
400 below), inflate sets strm->adler to the adler32 checksum of the dictionary
418 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
494 const Byte *dictionary,
498 Initializes the compression dictionary from the given byte sequence
502 dictionary (see inflateSetDictionary).
504 The dictionary should consist of strings (byte sequences) that are likely
506 used strings preferably put towards the end of the dictionary. Using a
507 dictionary is most useful when the data to be compressed is short and can be
509 with the default empty dictionary.
512 deflateInit or deflateInit2, a part of the dictionary may in effect be
513 discarded, for example if the dictionary is larger than the window size in
515 put at the end of the dictionary, not at the front.
518 of the dictionary; the decompressor may later use this value to determine
519 which dictionary has been used by the compressor. (The Adler32 value
520 applies to the whole dictionary even if only a subset of the dictionary is
524 parameter is invalid (such as NULL dictionary) or the stream state is
630 const Byte *dictionary,
633 Initializes the decompression dictionary from the given uncompressed byte
635 if that call returned Z_NEED_DICT. The dictionary chosen by the compressor
637 The compressor and decompressor must use exactly the same dictionary (see
640 inflate() to set the dictionary. The application must insure that the
641 dictionary that was used for compression is provided.
644 parameter is invalid (such as NULL dictionary) or the stream state is
645 inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the