• Home
  • Raw
  • Download

Lines Matching full:fse

140 /// Read bits from the end of a HUF or FSE bitstream.  `offset` is in bits, so
199 /*** FSE PRIMITIVES *******************/
200 /// For more description of FSE see
203 // FSE table decoding uses exponential memory, so limit the maximum accuracy
208 /// The tables needed to decode FSE encoded streams
236 /// using an FSE decoding table. `src_len` must be the exact length of the
247 /// Decode an FSE header as defined in the Zstandard format specification and
252 /// Initialize an FSE table that will always return the same symbol and consume
258 /*** END FSE PRIMITIVES ***************/
904 // The weights are FSE encoded, decode them before we can construct the in decode_huf_table()
921 // "An FSE bitstream starts by a header, describing probabilities in fse_decode_hufweights()
934 /// The combination of FSE states needed to decode sequences
959 /// The predefined FSE distribution tables for `seq_predefined` mode
1045 /// Decompress the FSE encoded sequence commands
1102 // The offset starts at the end because FSE streams are read backwards in decompress_sequences()
1130 // Number_of_Bits to add. Codes are FSE compressed, and interleaved with raw in decode_sequence()
1172 /// Given a sequence part and table mode, decode the FSE distribution
1207 // "FSE_Compressed_Mode : standard FSE compression. A distribution table in decode_seq_table()
1457 // FSE table for offsets, FSE table for match lengths, and FSE table for in parse_dictionary()
1752 /// Read bits from the end of a HUF or FSE bitstream. `offset` is in bits, so
2008 /******* FSE PRIMITIVES *******************************************************/
2009 /// For more description of FSE see
2028 /// Decodes a single FSE symbol and updates the offset
2110 ERROR("FSE accuracy too large"); in FSE_init_dtable()
2113 ERROR("Too many symbols for FSE"); in FSE_init_dtable()
2192 /// Decode an FSE header as defined in the Zstandard format specification and
2196 // "An FSE distribution table describes the probabilities of all symbols in FSE_decode_header()
2204 ERROR("FSE accuracy too large"); in FSE_decode_header()
2213 ERROR("FSE accuracy too large"); in FSE_decode_header()
2320 /******* END FSE PRIMITIVES ***************************************************/