| /src/external/bsd/zstd/dist/lib/compress/ |
| zstd_compress_literals.c | 213 { U32 const lhc = hType + ((U32)(!singleStream) << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<14); local 214 MEM_writeLE24(ostart, lhc); 219 { U32 const lhc = hType + (2 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<18); local 220 MEM_writeLE32(ostart, lhc); 225 { U32 const lhc = hType + (3 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<22); local 226 MEM_writeLE32(ostart, lhc);
|
| zstd_compress_literals.c | 213 { U32 const lhc = hType + ((U32)(!singleStream) << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<14); local 214 MEM_writeLE24(ostart, lhc); 219 { U32 const lhc = hType + (2 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<18); local 220 MEM_writeLE32(ostart, lhc); 225 { U32 const lhc = hType + (3 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<22); local 226 MEM_writeLE32(ostart, lhc);
|
| zstd_compress_superblock.c | 105 { U32 const lhc = hType + ((U32)(!singleStream) << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<14); local 106 MEM_writeLE24(ostart, lhc); 110 { U32 const lhc = hType + (2 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<18); local 111 MEM_writeLE32(ostart, lhc); 115 { U32 const lhc = hType + (3 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<22); local 116 MEM_writeLE32(ostart, lhc);
|
| zstd_compress_superblock.c | 105 { U32 const lhc = hType + ((U32)(!singleStream) << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<14); local 106 MEM_writeLE24(ostart, lhc); 110 { U32 const lhc = hType + (2 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<18); local 111 MEM_writeLE32(ostart, lhc); 115 { U32 const lhc = hType + (3 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<22); local 116 MEM_writeLE32(ostart, lhc);
|
| /src/external/bsd/zstd/dist/lib/decompress/ |
| zstd_decompress_block.c | 157 U32 const lhc = MEM_readLE32(istart); local 169 litSize = (lhc >> 4) & 0x3FF; 170 litCSize = (lhc >> 14) & 0x3FF; 175 litSize = (lhc >> 4) & 0x3FFF; 176 litCSize = lhc >> 18; 181 litSize = (lhc >> 4) & 0x3FFFF; 182 litCSize = (lhc >> 22) + ((size_t)istart[4] << 10);
|
| zstd_decompress_block.c | 157 U32 const lhc = MEM_readLE32(istart); local 169 litSize = (lhc >> 4) & 0x3FF; 170 litCSize = (lhc >> 14) & 0x3FF; 175 litSize = (lhc >> 4) & 0x3FFF; 176 litCSize = lhc >> 18; 181 litSize = (lhc >> 4) & 0x3FFFF; 182 litCSize = (lhc >> 22) + ((size_t)istart[4] << 10);
|
| /src/external/bsd/zstd/dist/tests/ |
| fullbench.c | 229 U32 const lhc = MEM_readLE32(istart); local 236 litSize = (lhc >> 4) & 0x3FF; 237 litCSize = (lhc >> 14) & 0x3FF; 242 litSize = (lhc >> 4) & 0x3FFF; 243 litCSize = lhc >> 18; 248 litSize = (lhc >> 4) & 0x3FFFF; 249 litCSize = (lhc >> 22) + ((size_t)istart[4] << 10);
|
| fullbench.c | 229 U32 const lhc = MEM_readLE32(istart); local 236 litSize = (lhc >> 4) & 0x3FF; 237 litCSize = (lhc >> 14) & 0x3FF; 242 litSize = (lhc >> 4) & 0x3FFF; 243 litCSize = lhc >> 18; 248 litSize = (lhc >> 4) & 0x3FFFF; 249 litCSize = (lhc >> 22) + ((size_t)istart[4] << 10);
|