Searched refs:lhc (Results 1 – 2 of 2) sorted by relevance
453 U32 const lhc = ZSTD_readLE32(istart); in ZSTD_decodeLiteralsBlock() local461 litSize = (lhc >> 4) & 0x3FF; in ZSTD_decodeLiteralsBlock()462 litCSize = (lhc >> 14) & 0x3FF; in ZSTD_decodeLiteralsBlock()467 litSize = (lhc >> 4) & 0x3FFF; in ZSTD_decodeLiteralsBlock()468 litCSize = lhc >> 18; in ZSTD_decodeLiteralsBlock()473 litSize = (lhc >> 4) & 0x3FFFF; in ZSTD_decodeLiteralsBlock()474 litCSize = (lhc >> 22) + (istart[4] << 10); in ZSTD_decodeLiteralsBlock()
531 U32 const lhc = hType + ((!singleStream) << 2) + ((U32)srcSize << 4) + ((U32)cLitSize << 14); in ZSTD_compressLiterals() local532 ZSTD_writeLE24(ostart, lhc); in ZSTD_compressLiterals()537 U32 const lhc = hType + (2 << 2) + ((U32)srcSize << 4) + ((U32)cLitSize << 18); in ZSTD_compressLiterals() local538 ZSTD_writeLE32(ostart, lhc); in ZSTD_compressLiterals()544 U32 const lhc = hType + (3 << 2) + ((U32)srcSize << 4) + ((U32)cLitSize << 22); in ZSTD_compressLiterals() local545 ZSTD_writeLE32(ostart, lhc); in ZSTD_compressLiterals()