Searched refs:flSize (Results 1 – 1 of 1) sorted by relevance
446 U32 const flSize = 1 + (srcSize > 31) + (srcSize > 4095); in ZSTD_noCompressLiterals() local448 if (srcSize + flSize > dstCapacity) in ZSTD_noCompressLiterals()451 switch (flSize) { in ZSTD_noCompressLiterals()458 memcpy(ostart + flSize, src, srcSize); in ZSTD_noCompressLiterals()459 return srcSize + flSize; in ZSTD_noCompressLiterals()465 U32 const flSize = 1 + (srcSize > 31) + (srcSize > 4095); in ZSTD_compressRleLiteralsBlock() local469 switch (flSize) { in ZSTD_compressRleLiteralsBlock()476 ostart[flSize] = *(const BYTE *)src; in ZSTD_compressRleLiteralsBlock()477 return flSize + 1; in ZSTD_compressRleLiteralsBlock()