Lines Matching refs:srcSize
752 int LZ4_compress_forceExtDict (LZ4_stream_t* LZ4_dict, const char* source, char* dest, int srcSize);
1333 const int srcSize, in LZ4_compress_generic() argument
1343 srcSize, dstCapacity); in LZ4_compress_generic()
1345 …if ((U32)srcSize > (U32)LZ4_MAX_INPUT_SIZE) { return 0; } /* Unsupported srcSize, too large (or n… in LZ4_compress_generic()
1346 if (srcSize == 0) { /* src == NULL supported if srcSize == 0 */ in LZ4_compress_generic()
1360 return LZ4_compress_generic_validated(cctx, src, dst, srcSize, in LZ4_compress_generic()
1399 int LZ4_compress_fast_extState_fastReset(void* state, const char* src, char* dst, int srcSize, int … in LZ4_compress_fast_extState_fastReset() argument
1406 if (dstCapacity >= LZ4_compressBound(srcSize)) { in LZ4_compress_fast_extState_fastReset()
1407 if (srcSize < LZ4_64Klimit) { in LZ4_compress_fast_extState_fastReset()
1409 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset()
1411 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, dictSm… in LZ4_compress_fast_extState_fastReset()
1413 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, noDict… in LZ4_compress_fast_extState_fastReset()
1417 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset()
1418 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, noDict… in LZ4_compress_fast_extState_fastReset()
1421 if (srcSize < LZ4_64Klimit) { in LZ4_compress_fast_extState_fastReset()
1423 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset()
1425 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1427 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1431 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset()
1432 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1438 int LZ4_compress_fast(const char* src, char* dest, int srcSize, int dstCapacity, int acceleration) in LZ4_compress_fast() argument
1448 result = LZ4_compress_fast_extState(ctxPtr, src, dest, srcSize, dstCapacity, acceleration); in LZ4_compress_fast()
1457 int LZ4_compress_default(const char* src, char* dst, int srcSize, int dstCapacity) in LZ4_compress_default() argument
1459 return LZ4_compress_fast(src, dst, srcSize, dstCapacity, 1); in LZ4_compress_default()
1735 int LZ4_compress_forceExtDict (LZ4_stream_t* LZ4_dict, const char* source, char* dest, int srcSize) in LZ4_compress_forceExtDict() argument
1740 LZ4_renormDictT(streamPtr, srcSize); in LZ4_compress_forceExtDict()
1743 …result = LZ4_compress_generic(streamPtr, source, dest, srcSize, NULL, 0, notLimited, byU32, usingE… in LZ4_compress_forceExtDict()
1745 …result = LZ4_compress_generic(streamPtr, source, dest, srcSize, NULL, 0, notLimited, byU32, usingE… in LZ4_compress_forceExtDict()
1749 streamPtr->dictSize = (U32)srcSize; in LZ4_compress_forceExtDict()
1963 int srcSize, in LZ4_decompress_generic() argument
1976 const BYTE* const iend = ip + srcSize; in LZ4_decompress_generic()
1997 DEBUGLOG(5, "LZ4_decompress_generic (srcSize:%i, dstSize:%i)", srcSize, outputSize); in LZ4_decompress_generic()
2004 return ((srcSize==1) && (*ip==0)) ? 0 : -1; in LZ4_decompress_generic()
2006 if (unlikely(srcSize==0)) { return -1; } in LZ4_decompress_generic()
2697 int LZ4_compress(const char* src, char* dest, int srcSize) in LZ4_compress() argument
2699 return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize)); in LZ4_compress()
2701 int LZ4_compress_limitedOutput_withState (void* state, const char* src, char* dst, int srcSize, int… in LZ4_compress_limitedOutput_withState() argument
2703 return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1); in LZ4_compress_limitedOutput_withState()
2705 int LZ4_compress_withState (void* state, const char* src, char* dst, int srcSize) in LZ4_compress_withState() argument
2707 return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1); in LZ4_compress_withState()
2709 …utput_continue (LZ4_stream_t* LZ4_stream, const char* src, char* dst, int srcSize, int dstCapacity) in LZ4_compress_limitedOutput_continue() argument
2711 return LZ4_compress_fast_continue(LZ4_stream, src, dst, srcSize, dstCapacity, 1); in LZ4_compress_limitedOutput_continue()