Home
last modified time | relevance | path

Searched full:lhc (Results 1 – 10 of 10) sorted by relevance

/openbmc/linux/lib/zstd/compress/
H A Dzstd_compress_literals.c139 … { U32 const lhc = hType + ((!singleStream) << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<14); in ZSTD_compressLiterals() local
140 MEM_writeLE24(ostart, lhc); in ZSTD_compressLiterals()
144 { U32 const lhc = hType + (2 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<18); in ZSTD_compressLiterals() local
145 MEM_writeLE32(ostart, lhc); in ZSTD_compressLiterals()
149 { U32 const lhc = hType + (3 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<22); in ZSTD_compressLiterals() local
150 MEM_writeLE32(ostart, lhc); in ZSTD_compressLiterals()
H A Dzstd_compress_superblock.c106 … { U32 const lhc = hType + ((!singleStream) << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<14); in ZSTD_compressSubBlock_literal() local
107 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() local
112 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() local
117 MEM_writeLE32(ostart, lhc); in ZSTD_compressSubBlock_literal()
/openbmc/linux/Documentation/devicetree/bindings/pinctrl/
H A Daspeed,ast2500-pinctrl.yaml241 aspeed,external-nodes = <&gfx>, <&lhc>;
/openbmc/u-boot/arch/arm/dts/
H A Dast2400.dtsi160 aspeed,external-nodes = <&gfx &lhc>;
328 lhc: lhc@20 { label
329 compatible = "aspeed,ast2400-lhc";
H A Dast2500.dtsi194 aspeed,external-nodes = <&gfx &lhc>;
368 lhc: lhc@20 { label
369 compatible = "aspeed,ast2500-lhc";
H A Dast2600.dtsi292 aspeed,external-nodes = <&gfx &lhc>;
582 lhc: lhc@20 { label
583 compatible = "aspeed,ast2600-lhc";
/openbmc/linux/arch/arm/boot/dts/aspeed/
H A Daspeed-g5.dtsi255 aspeed,external-nodes = <&gfx>, <&lhc>;
531 lhc: lhc@a0 { label
532 compatible = "aspeed,ast2500-lhc";
H A Daspeed-g4.dtsi391 lhc: lhc@a0 { label
392 compatible = "aspeed,ast2400-lhc";
H A Daspeed-g6.dtsi736 lhc: lhc@a0 { label
737 compatible = "aspeed,ast2600-lhc";
/openbmc/linux/lib/zstd/decompress/
H A Dzstd_decompress_block.c141 U32 const lhc = MEM_readLE32(istart); in ZSTD_decodeLiteralsBlock() local
150 litSize = (lhc >> 4) & 0x3FF; in ZSTD_decodeLiteralsBlock()
151 litCSize = (lhc >> 14) & 0x3FF; in ZSTD_decodeLiteralsBlock()
156 litSize = (lhc >> 4) & 0x3FFF; in ZSTD_decodeLiteralsBlock()
157 litCSize = lhc >> 18; in ZSTD_decodeLiteralsBlock()
162 litSize = (lhc >> 4) & 0x3FFFF; in ZSTD_decodeLiteralsBlock()
163 litCSize = (lhc >> 22) + ((size_t)istart[4] << 10); in ZSTD_decodeLiteralsBlock()