| /f-stack/freebsd/contrib/zstd/lib/compress/ |
| H A 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()
|
| H A D | zstd_compress_superblock.c | 384 … { U32 const lhc = hType + ((!singleStream) << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<14); in ZSTD_compressSubBlock_literal() local 385 MEM_writeLE24(ostart, lhc); in ZSTD_compressSubBlock_literal() 389 { U32 const lhc = hType + (2 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<18); in ZSTD_compressSubBlock_literal() local 390 MEM_writeLE32(ostart, lhc); in ZSTD_compressSubBlock_literal() 394 { U32 const lhc = hType + (3 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<22); in ZSTD_compressSubBlock_literal() local 395 MEM_writeLE32(ostart, lhc); in ZSTD_compressSubBlock_literal()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/pinctrl/ |
| H A D | aspeed,ast2500-pinctrl.yaml | 36 1: compatible with "aspeed,ast2500-lhc", "syscon" 85 aspeed,external-nodes = <&gfx>, <&lhc>; 122 lhc: lhc@20 { 123 compatible = "aspeed,ast2500-lhc";
|
| /f-stack/freebsd/contrib/device-tree/Bindings/mfd/ |
| H A D | aspeed-lpc.txt | 169 "aspeed,ast2400-lhc"; 170 "aspeed,ast2500-lhc"; 177 lhc: lhc@20 { 178 compatible = "aspeed,ast2500-lhc";
|
| /f-stack/freebsd/contrib/device-tree/src/arm/ |
| H A D | aspeed-bmc-intel-s2600wf.dts | 122 aspeed,external-nodes = <&gfx &lhc>;
|
| H A D | aspeed-bmc-inspur-on5263m5.dts | 127 aspeed,external-nodes = <&gfx &lhc>;
|
| H A D | aspeed-bmc-arm-centriq2400-rep.dts | 215 aspeed,external-nodes = <&gfx &lhc>;
|
| H A D | aspeed-bmc-arm-stardragon4800-rep2.dts | 204 aspeed,external-nodes = <&gfx &lhc>;
|
| H A D | aspeed-bmc-opp-lanyang.dts | 267 aspeed,external-nodes = <&gfx &lhc>;
|
| H A D | aspeed-g5.dtsi | 245 aspeed,external-nodes = <&gfx>, <&lhc>; 505 lhc: lhc@20 { label 506 compatible = "aspeed,ast2500-lhc";
|
| H A D | aspeed-bmc-opp-romulus.dts | 293 aspeed,external-nodes = <&gfx &lhc>;
|
| H A D | aspeed-bmc-opp-nicole.dts | 288 aspeed,external-nodes = <&gfx &lhc>;
|
| H A D | aspeed-g6.dtsi | 519 lhc: lhc@20 { label 520 compatible = "aspeed,ast2600-lhc";
|
| H A D | aspeed-g4.dtsi | 376 lhc: lhc@20 { label 377 compatible = "aspeed,ast2400-lhc";
|
| H A D | aspeed-bmc-opp-witherspoon.dts | 665 aspeed,external-nodes = <&gfx &lhc>;
|
| H A D | aspeed-bmc-opp-zaius.dts | 469 aspeed,external-nodes = <&gfx &lhc>;
|
| H A D | aspeed-bmc-inspur-fp5280g2.dts | 784 aspeed,external-nodes = <&gfx &lhc>;
|
| H A D | aspeed-bmc-opp-swift.dts | 942 aspeed,external-nodes = <&gfx &lhc>;
|
| /f-stack/freebsd/contrib/zstd/lib/decompress/ |
| H A 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()
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 11178 MEM_writeLE24(ostart, lhc); in ZSTD_compressLiterals() 11183 MEM_writeLE32(ostart, lhc); in ZSTD_compressLiterals() 11188 MEM_writeLE32(ostart, lhc); in ZSTD_compressLiterals() 12093 MEM_writeLE24(ostart, lhc); in ZSTD_compressSubBlock_literal() 12098 MEM_writeLE32(ostart, lhc); in ZSTD_compressSubBlock_literal() 12103 MEM_writeLE32(ostart, lhc); in ZSTD_compressSubBlock_literal() 26501 litSize = (lhc >> 4) & 0x3FF; in ZSTD_decodeLiteralsBlock() 26502 litCSize = (lhc >> 14) & 0x3FF; in ZSTD_decodeLiteralsBlock() 26507 litSize = (lhc >> 4) & 0x3FFF; in ZSTD_decodeLiteralsBlock() 26508 litCSize = lhc >> 18; in ZSTD_decodeLiteralsBlock() [all …]
|