Home
last modified time | relevance | path

Searched refs:dstCapacity (Results 1 – 2 of 2) sorted by relevance

/DragonOS-0.1.2/kernel/src/common/
Dlz4.h146 LZ4LIB_API int LZ4_compress_default(const char *src, char *dst, int srcSize, int dstCapacity);
162 …Z4LIB_API int LZ4_decompress_safe(const char *src, char *dst, int compressedSize, int dstCapacity);
189 …LZ4LIB_API int LZ4_compress_fast(const char *src, char *dst, int srcSize, int dstCapacity, int acc…
198 …ast_extState(void *state, const char *src, char *dst, int srcSize, int dstCapacity, int accelerati…
259 …press_safe_partial(const char *src, char *dst, int srcSize, int targetOutputSize, int dstCapacity);
329 …(LZ4_stream_t *streamPtr, const char *src, char *dst, int srcSize, int dstCapacity, int accelerati…
401 …ue(LZ4_streamDecode_t *LZ4_streamDecode, const char *src, char *dst, int srcSize, int dstCapacity);
460 …te_fastReset(void *state, const char *src, char *dst, int srcSize, int dstCapacity, int accelerati…
/DragonOS-0.1.2/kernel/src/libs/
Dlz4.c1632 const int dstCapacity, in LZ4_compress_generic() argument
1640 srcSize, dstCapacity); in LZ4_compress_generic()
1648 if (outputDirective != notLimited && dstCapacity <= 0) in LZ4_compress_generic()
1651 assert(outputDirective == notLimited || dstCapacity >= 1); in LZ4_compress_generic()
1665 dstCapacity, outputDirective, in LZ4_compress_generic()
1712 …te_fastReset(void *state, const char *src, char *dst, int srcSize, int dstCapacity, int accelerati… in LZ4_compress_fast_extState_fastReset() argument
1720 if (dstCapacity >= LZ4_compressBound(srcSize)) in LZ4_compress_fast_extState_fastReset()
1750 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1754 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1761 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
[all …]