Home | History | Annotate | Download | only in lib

Lines Matching refs:LZ4_decompress_safe

1251 int LZ4_decompress_safe(const char* source, char* dest, int compressedSize, int maxDecompressedSize)
1414 - LZ4_uncompress_unknownOutputSize is totally equivalent to LZ4_decompress_safe
1417 int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize) { return LZ4_decompress_safe(source, dest, isize, maxOutputSize); }