HomeSort by relevance Sort by last modified time
    Searched refs:LZ4_decompress_safe (Results 1 - 12 of 12) sorted by null

  /external/lz4/examples/
simple_buffer.c 6 * The functions you'll likely want are LZ4_compress_default and LZ4_decompress_safe. Both of these are documented in
72 // The LZ4_decompress_safe function needs to know where the compressed data is, how many bytes long it is, where the new_src
74 return_value = LZ4_decompress_safe(compressed_data, new_src, compressed_data_size, src_size);
compress_functions.c 33 * LZ4_decompress_safe || LZ4_decompress_fast
36 * LZ4_decompress_safe
49 * Using the LZ4_decompress_safe() function protects against malicious (user) input. If you are using data from a
189 printf("Starting benchmark for function: LZ4_decompress_safe()\n");
191 rv = LZ4_decompress_safe(src, dst, comp_size, src_size);
193 run_screaming("Couldn't run LZ4_decompress_safe()... error code received is in exit code.", rv);
198 LZ4_decompress_safe(src, dst, comp_size, src_size);
350 printf(format, "Normal Text", "LZ4_decompress_safe()", (double)time_taken__decomp_safe / BILLION, (int)(iterations / ((double)time_taken__decomp_safe /BILLION)), time_taken__decomp_safe / iterations, (double)time_taken__decomp_safe * 100 / time_taken__default);
357 printf(format, "Compressible", "LZ4_decompress_safe()", (double)time_taken_hc__decomp_safe / BILLION, (int)(iterations / ((double)time_taken_hc__decomp_safe /BILLION)), time_taken_hc__decomp_safe / iterations, (double)time_taken_hc__decomp_safe * 100 / time_taken_hc__default);
  /external/lz4/tests/
fuzzer.c 203 r = LZ4_decompress_safe(input, output, nbOf255+64, BLOCKSIZE_I134);
204 if (r>0) { DISPLAY("LZ4_decompress_safe = %i \n", r); goto _overflowError; }
209 r = LZ4_decompress_safe(input, output, nbOf255+64, BLOCKSIZE_I134);
210 if (r>0) { DISPLAY("LZ4_decompress_safe = %i \n", r); goto _overflowError; }
217 r = LZ4_decompress_safe(input, output, nbOf255+64, BLOCKSIZE_I134);
223 r = LZ4_decompress_safe(input, output, nbOf255+64, BLOCKSIZE_I134);
338 ret = LZ4_decompress_safe(compressedBuffer, decodedBuffer, compressedSize, srcSize);
339 FUZ_CHECKTEST(ret<0, "LZ4_decompress_safe() failed on data compressed by LZ4_compress_destSize");
340 FUZ_CHECKTEST(ret!=srcSize, "LZ4_decompress_safe() failed : did not fully decompressed data");
341 FUZ_CHECKTEST(decodedBuffer[srcSize] != canary, "LZ4_decompress_safe() overwrite dst buffer !")
    [all...]
fullbench.c 522 case 4: decompressionFunction = LZ4_decompress_safe; dName = "LZ4_decompress_safe"; break;
  /external/squashfs-tools/squashfs-tools/
lz4_wrapper.c 255 int res = LZ4_decompress_safe(src, dest, size, outsize);
  /external/lz4/lib/
lz4.h 132 /*! LZ4_decompress_safe() :
141 LZ4LIB_API int LZ4_decompress_safe (const char* source, char* dest, int compressedSize, int maxDecompressedSize);
205 It is a bit faster than LZ4_decompress_safe().
442 - LZ4_uncompress_unknownOutputSize is the same as LZ4_decompress_safe
lz4.c     [all...]
lz4frame.c     [all...]
  /external/lz4/programs/
bench.c 293 size_t const regenSize = LZ4_decompress_safe(blockTable[blockNb].cPtr, blockTable[blockNb].resPtr, (int)blockTable[blockNb].cSize, (int)blockTable[blockNb].srcSize);
295 DISPLAY("LZ4_decompress_safe() failed on block %u \n", blockNb);
lz4io.c 730 decodeSize = LZ4_decompress_safe(in_buff, out_buff, blockSize, LEGACY_BLOCKSIZE);
    [all...]
  /art/runtime/gc/space/
image_space.cc     [all...]
  /art/compiler/
image_writer.cc 281 const size_t decompressed_size = LZ4_decompress_safe(
    [all...]

Completed in 447 milliseconds