Searched full:lhc (Results 1 – 4 of 4) sorted by relevance
214 … { U32 const lhc = hType + ((U32)(!singleStream) << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<14); in ZSTD_compressLiterals() local215 MEM_writeLE24(ostart, lhc); in ZSTD_compressLiterals()220 { U32 const lhc = hType + (2 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<18); in ZSTD_compressLiterals() local221 MEM_writeLE32(ostart, lhc); in ZSTD_compressLiterals()226 { U32 const lhc = hType + (3 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<22); in ZSTD_compressLiterals() local227 MEM_writeLE32(ostart, lhc); in ZSTD_compressLiterals()
106 … { U32 const lhc = hType + ((U32)(!singleStream) << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<14); in ZSTD_compressSubBlock_literal() local107 MEM_writeLE24(ostart, lhc); in ZSTD_compressSubBlock_literal()111 { U32 const lhc = hType + (2 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<18); in ZSTD_compressSubBlock_literal() local112 MEM_writeLE32(ostart, lhc); in ZSTD_compressSubBlock_literal()116 { U32 const lhc = hType + (3 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<22); in ZSTD_compressSubBlock_literal() local117 MEM_writeLE32(ostart, lhc); in ZSTD_compressSubBlock_literal()
241 aspeed,external-nodes = <&gfx>, <&lhc>;
158 U32 const lhc = MEM_readLE32(istart); in ZSTD_decodeLiteralsBlock() local170 litSize = (lhc >> 4) & 0x3FF; in ZSTD_decodeLiteralsBlock()171 litCSize = (lhc >> 14) & 0x3FF; in ZSTD_decodeLiteralsBlock()176 litSize = (lhc >> 4) & 0x3FFF; in ZSTD_decodeLiteralsBlock()177 litCSize = lhc >> 18; in ZSTD_decodeLiteralsBlock()182 litSize = (lhc >> 4) & 0x3FFFF; in ZSTD_decodeLiteralsBlock()183 litCSize = (lhc >> 22) + ((size_t)istart[4] << 10); in ZSTD_decodeLiteralsBlock()