/linux-5.19.10/lib/zstd/compress/ |
D | zstd_compress_literals.c | 138 … { U32 const lhc = hType + ((!singleStream) << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<14); in ZSTD_compressLiterals() local 139 MEM_writeLE24(ostart, lhc); in ZSTD_compressLiterals() 143 { U32 const lhc = hType + (2 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<18); in ZSTD_compressLiterals() local 144 MEM_writeLE32(ostart, lhc); in ZSTD_compressLiterals() 148 { U32 const lhc = hType + (3 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<22); in ZSTD_compressLiterals() local 149 MEM_writeLE32(ostart, lhc); in ZSTD_compressLiterals()
|
D | zstd_compress_superblock.c | 385 … { U32 const lhc = hType + ((!singleStream) << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<14); in ZSTD_compressSubBlock_literal() local 386 MEM_writeLE24(ostart, lhc); in ZSTD_compressSubBlock_literal() 390 { U32 const lhc = hType + (2 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<18); in ZSTD_compressSubBlock_literal() local 391 MEM_writeLE32(ostart, lhc); in ZSTD_compressSubBlock_literal() 395 { U32 const lhc = hType + (3 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<22); in ZSTD_compressSubBlock_literal() local 396 MEM_writeLE32(ostart, lhc); in ZSTD_compressSubBlock_literal()
|
/linux-5.19.10/Documentation/devicetree/bindings/pinctrl/ |
D | aspeed,ast2500-pinctrl.yaml | 38 1: compatible with "aspeed,ast2500-lhc", "syscon" 87 aspeed,external-nodes = <&gfx>, <&lhc>;
|
/linux-5.19.10/arch/arm/boot/dts/ |
D | aspeed-bmc-intel-s2600wf.dts | 122 aspeed,external-nodes = <&gfx &lhc>;
|
D | aspeed-bmc-supermicro-x11spi.dts | 127 aspeed,external-nodes = <&gfx &lhc>;
|
D | aspeed-bmc-inspur-on5263m5.dts | 127 aspeed,external-nodes = <&gfx &lhc>;
|
D | aspeed-bmc-arm-centriq2400-rep.dts | 215 aspeed,external-nodes = <&gfx &lhc>;
|
D | aspeed-bmc-arm-stardragon4800-rep2.dts | 204 aspeed,external-nodes = <&gfx &lhc>;
|
D | aspeed-bmc-opp-lanyang.dts | 267 aspeed,external-nodes = <&gfx &lhc>;
|
D | aspeed-g5.dtsi | 254 aspeed,external-nodes = <&gfx>, <&lhc>; 508 lhc: lhc@a0 { label 509 compatible = "aspeed,ast2500-lhc";
|
D | aspeed-bmc-opp-nicole.dts | 288 aspeed,external-nodes = <&gfx &lhc>;
|
D | aspeed-bmc-opp-romulus.dts | 293 aspeed,external-nodes = <&gfx &lhc>;
|
D | aspeed-g6.dtsi | 623 lhc: lhc@a0 { label 624 compatible = "aspeed,ast2600-lhc";
|
D | aspeed-g4.dtsi | 377 lhc: lhc@a0 { label 378 compatible = "aspeed,ast2400-lhc";
|
D | aspeed-bmc-opp-witherspoon.dts | 665 aspeed,external-nodes = <&gfx &lhc>;
|
D | aspeed-bmc-opp-zaius.dts | 469 aspeed,external-nodes = <&gfx &lhc>;
|
D | aspeed-bmc-inspur-fp5280g2.dts | 818 aspeed,external-nodes = <&gfx &lhc>;
|
D | aspeed-bmc-opp-swift.dts | 942 aspeed,external-nodes = <&gfx &lhc>;
|
D | aspeed-bmc-ampere-mtjade.dts | 759 aspeed,external-nodes = <&gfx &lhc>;
|
/linux-5.19.10/lib/zstd/decompress/ |
D | zstd_decompress_block.c | 100 U32 const lhc = MEM_readLE32(istart); in ZSTD_decodeLiteralsBlock() local 108 litSize = (lhc >> 4) & 0x3FF; in ZSTD_decodeLiteralsBlock() 109 litCSize = (lhc >> 14) & 0x3FF; in ZSTD_decodeLiteralsBlock() 114 litSize = (lhc >> 4) & 0x3FFF; in ZSTD_decodeLiteralsBlock() 115 litCSize = lhc >> 18; in ZSTD_decodeLiteralsBlock() 120 litSize = (lhc >> 4) & 0x3FFFF; in ZSTD_decodeLiteralsBlock() 121 litCSize = (lhc >> 22) + ((size_t)istart[4] << 10); in ZSTD_decodeLiteralsBlock()
|