Searched refs:targetDstSize (Results 1 – 3 of 3) sorted by relevance
/external/lz4/lib/ |
D | lz4hc.h | 263 int* srcSizePtr, int targetDstSize, 277 int* srcSizePtr, int targetDstSize);
|
D | lz4.c | 1120 …Size_extState (LZ4_stream_t* state, const char* src, char* dst, int* srcSizePtr, int targetDstSize) in LZ4_compress_destSize_extState() argument 1124 if (targetDstSize >= LZ4_compressBound(*srcSizePtr)) { /* compression success is guaranteed */ in LZ4_compress_destSize_extState() 1125 return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, 1); in LZ4_compress_destSize_extState() 1128 …generic(&state->internal_donotuse, src, dst, *srcSizePtr, srcSizePtr, targetDstSize, fillOutput, b… in LZ4_compress_destSize_extState() 1131 …generic(&state->internal_donotuse, src, dst, *srcSizePtr, srcSizePtr, targetDstSize, fillOutput, t… in LZ4_compress_destSize_extState() 1136 int LZ4_compress_destSize(const char* src, char* dst, int* srcSizePtr, int targetDstSize) in LZ4_compress_destSize() argument 1146 int result = LZ4_compress_destSize_extState(ctx, src, dst, srcSizePtr, targetDstSize); in LZ4_compress_destSize()
|
D | lz4.h | 204 …LIB_API int LZ4_compress_destSize (const char* src, char* dst, int* srcSizePtr, int targetDstSize);
|