Lines Matching refs:dst

347 #    define LZ4_memcpy(dst, src, size) __builtin_memcpy(dst, src, size)
349 # define LZ4_memcpy(dst, src, size) memcpy(dst, src, size)
1087 return 0; /* cannot compress within `dst` budget. Stored indexes in hash table are nonetheless fine */
1181 return 0; /* cannot compress within `dst` budget. Stored indexes in hash table are nonetheless fine */
1272 /* adapt lastRun to fill 'dst' */
1278 return 0; /* cannot compress within `dst` budget. Stored indexes in hash table are nonetheless fine */
1311 char* const dst,
1329 assert(dst != NULL);
1330 dst[0] = 0;
1339 return LZ4_compress_generic_validated(cctx, src, dst, srcSize,
1378 int LZ4_compress_fast_extState_fastReset(void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration)
1389 return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, dictSmall, acceleration);
1391 return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
1396 return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
1403 return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, noDict, dictSmall, acceleration);
1405 return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, noDict, noDictIssue, acceleration);
1410 return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, noDict, noDictIssue, acceleration);
1435 int LZ4_compress_default(const char* src, char* dst, int srcSize, int maxOutputSize)
1437 return LZ4_compress_fast(src, dst, srcSize, maxOutputSize, 1);
1444 static int LZ4_compress_destSize_extState (LZ4_stream_t* state, const char* src, char* dst, int* srcSizePtr, int targetDstSize)
1450 return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, 1);
1453 return LZ4_compress_generic(&state->internal_donotuse, src, dst, *srcSizePtr, srcSizePtr, targetDstSize, fillOutput, byU16, noDict, noDictIssue, 1);
1456 return LZ4_compress_generic(&state->internal_donotuse, src, dst, *srcSizePtr, srcSizePtr, targetDstSize, fillOutput, addrMode, noDict, noDictIssue, 1);
1461 int LZ4_compress_destSize(const char* src, char* dst, int* srcSizePtr, int targetDstSize)
1471 int result = LZ4_compress_destSize_extState(ctx, src, dst, srcSizePtr, targetDstSize);
1939 char* const dst,
1945 const BYTE* const lowPrefix, /* always <= dst, == dst when no prefix */
1955 BYTE* op = (BYTE*) dst;
2332 DEBUGLOG(5, "decoded %i bytes", (int) (((char*)op)-dst));
2333 return (int) (((char*)op)-dst); /* Nb of output bytes decoded */
2353 int LZ4_decompress_safe_partial(const char* src, char* dst, int compressedSize, int targetOutputSize, int dstCapacity)
2356 return LZ4_decompress_generic(src, dst, compressedSize, dstCapacity,
2358 noDict, (BYTE*)dst, NULL, 0);
2665 int LZ4_compress_limitedOutput_withState (void* state, const char* src, char* dst, int srcSize, int dstSize)
2667 return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
2669 int LZ4_compress_withState (void* state, const char* src, char* dst, int srcSize)
2671 return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
2673 int LZ4_compress_limitedOutput_continue (LZ4_stream_t* LZ4_stream, const char* src, char* dst, int srcSize, int dstCapacity)
2675 return LZ4_compress_fast_continue(LZ4_stream, src, dst, srcSize, dstCapacity, 1);