• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/

Lines Matching defs:hType

11121     symbolEncodingType_e hType = set_compressed;
11155 hType = set_repeat;
11168 if (hType == set_compressed) {
11177 { U32 const lhc = hType + ((!singleStream) << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<14);
11182 { U32 const lhc = hType + (2 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<18);
11187 { U32 const lhc = hType + (3 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<22);
11734 * Stores Literals Block Type for a super-block in hType, and
11739 symbolEncodingType_e hType;
11794 hufMetadata->hType = set_basic;
11803 hufMetadata->hType = set_basic;
11813 hufMetadata->hType = set_rle;
11818 hufMetadata->hType = set_basic;
11849 hufMetadata->hType = set_repeat;
11856 hufMetadata->hType = set_basic;
11860 hufMetadata->hType = set_compressed;
12018 * hufMetadata->hType has literals block type info.
12039 symbolEncodingType_e hType = writeEntropy ? hufMetadata->hType : set_repeat;
12047 if (litSize == 0 || hufMetadata->hType == set_basic) {
12050 } else if (hufMetadata->hType == set_rle) {
12056 assert(hufMetadata->hType == set_compressed || hufMetadata->hType == set_repeat);
12058 if (writeEntropy && hufMetadata->hType == set_compressed) {
12092 { U32 const lhc = hType + ((!singleStream) << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<14);
12097 { U32 const lhc = hType + (2 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<18);
12102 { U32 const lhc = hType + (3 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<22);
12297 if (hufMetadata->hType == set_basic) return litSize;
12298 else if (hufMetadata->hType == set_rle) return 1;
12299 else if (hufMetadata->hType == set_compressed || hufMetadata->hType == set_repeat) {
12431 int writeLitEntropy = entropyMetadata->hufMetadata.hType == set_compressed;