Home
last modified time | relevance | path

Searched refs:maxDecompressedSize (Results 1 – 3 of 3) sorted by relevance

/external/lz4/lib/
Dlz4.h141 … LZ4_decompress_safe (const char* source, char* dest, int compressedSize, int maxDecompressedSize);
223 …const char* source, char* dest, int compressedSize, int targetOutputSize, int maxDecompressedSize);
305 …_t* LZ4_streamDecode, const char* source, char* dest, int compressedSize, int maxDecompressedSize);
314 …usingDict (const char* source, char* dest, int compressedSize, int maxDecompressedSize, const char…
Dlz4.c1251 int LZ4_decompress_safe(const char* source, char* dest, int compressedSize, int maxDecompressedSize) in LZ4_decompress_safe() argument
1253 …return LZ4_decompress_generic(source, dest, compressedSize, maxDecompressedSize, endOnInputSize, f… in LZ4_decompress_safe()
1256 …(const char* source, char* dest, int compressedSize, int targetOutputSize, int maxDecompressedSize) in LZ4_decompress_safe_partial() argument
1258 …return LZ4_decompress_generic(source, dest, compressedSize, maxDecompressedSize, endOnInputSize, p… in LZ4_decompress_safe_partial()
Dlz4frame.c961 …ress_safe (const char* source, char* dest, int compressedSize, int maxDecompressedSize, const char… in LZ4F_decompress_safe() argument
964 return LZ4_decompress_safe (source, dest, compressedSize, maxDecompressedSize); in LZ4F_decompress_safe()