Home
last modified time | relevance | path

Searched refs:cLitSize (Results 1 – 1 of 1) sorted by relevance

/lib/zstd/
Dcompress.c489 size_t cLitSize; in ZSTD_compressLiterals() local
506cLitSize = singleStream ? HUF_compress1X_repeat(ostart + lhSize, dstCapacity - lhSize, src, srcSiz… in ZSTD_compressLiterals()
518 if ((cLitSize == 0) | (cLitSize >= srcSize - minGain)) { in ZSTD_compressLiterals()
522 if (cLitSize == 1) { in ZSTD_compressLiterals()
531 U32 const lhc = hType + ((!singleStream) << 2) + ((U32)srcSize << 4) + ((U32)cLitSize << 14); in ZSTD_compressLiterals()
537 U32 const lhc = hType + (2 << 2) + ((U32)srcSize << 4) + ((U32)cLitSize << 18); in ZSTD_compressLiterals()
544 U32 const lhc = hType + (3 << 2) + ((U32)srcSize << 4) + ((U32)cLitSize << 22); in ZSTD_compressLiterals()
546 ostart[4] = (BYTE)(cLitSize >> 10); in ZSTD_compressLiterals()
550 return lhSize + cLitSize; in ZSTD_compressLiterals()