• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/

Lines Matching refs:dictionary

432      If a preset dictionary is needed after this call (see inflateSetDictionary
433 below), inflate sets strm->adler to the adler32 checksum of the dictionary
451 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
541 const Bytef *dictionary,
544 Initializes the compression dictionary from the given byte sequence
548 dictionary (see inflateSetDictionary).
550 The dictionary should consist of strings (byte sequences) that are likely
552 used strings preferably put towards the end of the dictionary. Using a
553 dictionary is most useful when the data to be compressed is short and can be
555 with the default empty dictionary.
558 deflateInit or deflateInit2, a part of the dictionary may in effect be
559 discarded, for example if the dictionary is larger than the window size in
561 put at the end of the dictionary, not at the front. In addition, the
563 262 bytes of the provided dictionary.
566 of the dictionary; the decompressor may later use this value to determine
567 which dictionary has been used by the compressor. (The adler32 value
568 applies to the whole dictionary even if only a subset of the dictionary is
573 parameter is invalid (such as NULL dictionary) or the stream state is
739 const Bytef *dictionary,
742 Initializes the decompression dictionary from the given uncompressed byte
744 if that call returned Z_NEED_DICT. The dictionary chosen by the compressor
746 The compressor and decompressor must use exactly the same dictionary (see
749 inflate() to set the dictionary. The application must insure that the
750 dictionary that was used for compression is provided.
753 parameter is invalid (such as NULL dictionary) or the stream state is
754 inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the