Home
last modified time | relevance | path

Searched refs:LZ4_compress_default (Results 1 – 9 of 9) sorted by relevance

/external/lz4/examples/
Dcompress_functions.c132 rv = LZ4_compress_default(src, dst, src_size, max_dst_size); in bench()
139 LZ4_compress_default(src, dst, src_size, max_dst_size); in bench()
259 bytes_returned = LZ4_compress_default(src, known_good_dst, src_size, max_dst_size); in main()
263 bytes_returned = LZ4_compress_default(hc_src, known_good_hc_dst, src_size, max_dst_size); in main()
Dsimple_buffer.c53 …const int compressed_data_size = LZ4_compress_default(src, compressed_data, src_size, max_dst_size… in main()
/external/lz4/ossfuzz/
Dround_trip_fuzzer.c25 int const dstSize = LZ4_compress_default((const char*)data, dst, in LLVMFuzzerTestOneInput()
Dcompress_fuzzer.c27 int const dstSize = LZ4_compress_default((const char*)data, dst, in LLVMFuzzerTestOneInput()
/external/squashfs-tools/squashfs-tools/
Dlz4_wrapper.c232 res = LZ4_compress_default(src, dest, size, block_size); in lz4_compress()
/external/lz4/tests/
Dfullbench.c182 return LZ4_compress_default(in, out, inSize, LZ4_compressBound(inSize)); in local_LZ4_compress_default_large()
187 return LZ4_compress_default(in, out, inSize, LZ4_compressBound(inSize)-1); in local_LZ4_compress_default_small()
589 …chunkP[chunkNb].compressedSize = LZ4_compress_default(chunkP[chunkNb].origBuffer, chunkP[chunkNb].… in fullSpeedBench()
Dfuzzer.c488 …compressedSize = LZ4_compress_default(block, compressedBuffer, blockSize, (int)compressedBufferSiz… in FUZ_test()
634 ret = LZ4_compress_default(block, compressedBuffer, blockSize, compressedSize); in FUZ_test()
658 …{ int const cSize = LZ4_compress_default(block, compressedBuffer, blockSize, compressedSize-miss… in FUZ_test()
1066 cSize = LZ4_compress_default(startInput, testCompressed, sampleSize, maxCSize); in FUZ_unitTests()
1086 … int const cSize = LZ4_compress_default(testInput, testCompressed, sampleSize, testCompressedSize); in FUZ_unitTests()
/external/lz4/lib/
Dlz4.h148 LZ4LIB_API int LZ4_compress_default(const char* src, char* dst, int srcSize, int dstCapacity);
Dlz4.c1267 int LZ4_compress_default(const char* src, char* dst, int srcSize, int maxOutputSize) in LZ4_compress_default() function
2337 return LZ4_compress_default(source, dest, inputSize, maxOutputSize); in LZ4_compress_limitedOutput()
2341 return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize)); in LZ4_compress()