Lines Matching full:acceleration

50  * Select "acceleration" for LZ4_compress_fast() when parameter value <= 0
55 * Any "acceleration" value higher than this threshold
941 const int acceleration) in LZ4_compress_generic_validated() argument
986 assert(acceleration >= 1); in LZ4_compress_generic_validated()
1023 int searchMatchNb = acceleration << LZ4_skipTrigger; in LZ4_compress_generic_validated()
1044 int searchMatchNb = acceleration << LZ4_skipTrigger; in LZ4_compress_generic_validated()
1355 const int acceleration) in LZ4_compress_generic() argument
1378 tableType, dictDirective, dictIssue, acceleration); in LZ4_compress_generic()
1382 …te(void* state, const char* source, char* dest, int inputSize, int maxOutputSize, int acceleration) in LZ4_compress_fast_extState() argument
1386 if (acceleration < 1) acceleration = LZ4_ACCELERATION_DEFAULT; in LZ4_compress_fast_extState()
1387 if (acceleration > LZ4_ACCELERATION_MAX) acceleration = LZ4_ACCELERATION_MAX; in LZ4_compress_fast_extState()
1390 …neric(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration); in LZ4_compress_fast_extState()
1393 …c(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration); in LZ4_compress_fast_extState()
1397 …ce, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration); in LZ4_compress_fast_extState()
1400 …dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration); in LZ4_compress_fast_extState()
1414 …_fastReset(void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration) in LZ4_compress_fast_extState_fastReset() argument
1417 if (acceleration < 1) acceleration = LZ4_ACCELERATION_DEFAULT; in LZ4_compress_fast_extState_fastReset()
1418 if (acceleration > LZ4_ACCELERATION_MAX) acceleration = LZ4_ACCELERATION_MAX; in LZ4_compress_fast_extState_fastReset()
1426 …s_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, dictSmall, acceleration); in LZ4_compress_fast_extState_fastReset()
1428 …generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration); in LZ4_compress_fast_extState_fastReset()
1433 …generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration); in LZ4_compress_fast_extState_fastReset()
1440 …, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, noDict, dictSmall, acceleration); in LZ4_compress_fast_extState_fastReset()
1442 …src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, noDict, noDictIssue, acceleration); in LZ4_compress_fast_extState_fastReset()
1447 …src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, noDict, noDictIssue, acceleration); in LZ4_compress_fast_extState_fastReset()
1453 int LZ4_compress_fast(const char* src, char* dest, int srcSize, int dstCapacity, int acceleration) in LZ4_compress_fast() argument
1463 result = LZ4_compress_fast_extState(ctxPtr, src, dest, srcSize, dstCapacity, acceleration); in LZ4_compress_fast()
1481 …_stream_t* state, const char* src, char* dst, int* srcSizePtr, int targetDstSize, int acceleration) in LZ4_compress_destSize_extState_internal() argument
1487 … return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration); in LZ4_compress_destSize_extState_internal()
1490 …dst, *srcSizePtr, srcSizePtr, targetDstSize, fillOutput, byU16, noDict, noDictIssue, acceleration); in LZ4_compress_destSize_extState_internal()
1493 …, *srcSizePtr, srcSizePtr, targetDstSize, fillOutput, addrMode, noDict, noDictIssue, acceleration); in LZ4_compress_destSize_extState_internal()
1497 …tate(void* state, const char* src, char* dst, int* srcSizePtr, int targetDstSize, int acceleration) in LZ4_compress_destSize_extState() argument
1499 …estSize_extState_internal((LZ4_stream_t*)state, src, dst, srcSizePtr, targetDstSize, acceleration); in LZ4_compress_destSize_extState()
1710 int acceleration) in LZ4_compress_fast_continue() argument
1719 if (acceleration < 1) acceleration = LZ4_ACCELERATION_DEFAULT; in LZ4_compress_fast_continue()
1720 if (acceleration > LZ4_ACCELERATION_MAX) acceleration = LZ4_ACCELERATION_MAX; in LZ4_compress_fast_continue()
1748 … inputSize, NULL, maxOutputSize, limitedOutput, tableType, withPrefix64k, dictSmall, acceleration); in LZ4_compress_fast_continue()
1750 …nputSize, NULL, maxOutputSize, limitedOutput, tableType, withPrefix64k, noDictIssue, acceleration); in LZ4_compress_fast_continue()
1768 …inputSize, NULL, maxOutputSize, limitedOutput, tableType, usingExtDict, noDictIssue, acceleration); in LZ4_compress_fast_continue()
1770 …inputSize, NULL, maxOutputSize, limitedOutput, tableType, usingDictCtx, noDictIssue, acceleration); in LZ4_compress_fast_continue()
1774 …, inputSize, NULL, maxOutputSize, limitedOutput, tableType, usingExtDict, dictSmall, acceleration); in LZ4_compress_fast_continue()
1776 …inputSize, NULL, maxOutputSize, limitedOutput, tableType, usingExtDict, noDictIssue, acceleration); in LZ4_compress_fast_continue()