Lines Matching refs:cLitSize
489 size_t cLitSize;
506 cLitSize = singleStream ? HUF_compress1X_repeat(ostart + lhSize, dstCapacity - lhSize, src, srcSize, 255, 11, zc->tmpCounters,
518 if ((cLitSize == 0) | (cLitSize >= srcSize - minGain)) {
522 if (cLitSize == 1) {
531 U32 const lhc = hType + ((!singleStream) << 2) + ((U32)srcSize << 4) + ((U32)cLitSize << 14);
537 U32 const lhc = hType + (2 << 2) + ((U32)srcSize << 4) + ((U32)cLitSize << 18);
544 U32 const lhc = hType + (3 << 2) + ((U32)srcSize << 4) + ((U32)cLitSize << 22);
546 ostart[4] = (BYTE)(cLitSize >> 10);
550 return lhSize + cLitSize;