Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4.h73 … LZ4_decompress_safe (const char* source, char* dest, int compressedSize, int maxDecompressedSize);
168 …const char* source, char* dest, int compressedSize, int targetOutputSize, int maxDecompressedSize);
271 …_t* LZ4_streamDecode, const char* source, char* dest, int compressedSize, int maxDecompressedSize);
282 …usingDict (const char* source, char* dest, int compressedSize, int maxDecompressedSize, const char…
Dlz4.c1121 int LZ4_decompress_safe(const char* source, char* dest, int compressedSize, int maxDecompressedSize) in LZ4_decompress_safe() argument
1123 …return LZ4_decompress_generic(source, dest, compressedSize, maxDecompressedSize, endOnInputSize, f… in LZ4_decompress_safe()
1126 …(const char* source, char* dest, int compressedSize, int targetOutputSize, int maxDecompressedSize) in LZ4_decompress_safe_partial() argument
1128 …return LZ4_decompress_generic(source, dest, compressedSize, maxDecompressedSize, endOnInputSize, p… in LZ4_decompress_safe_partial()
Dlz4frame.c847 …ress_safe (const char* source, char* dest, int compressedSize, int maxDecompressedSize, const char… in LZ4F_decompress_safe() argument
851 return LZ4_decompress_safe (source, dest, compressedSize, maxDecompressedSize); in LZ4F_decompress_safe()