Searched refs:compressionFunction (Results 1 – 3 of 3) sorted by relevance
/external/lz4/programs/ |
D | fullbench.c | 506 int (*compressionFunction)(const char*, char*, int); in fullSpeedBench() local 531 case 1 : compressionFunction = LZ4_compress; compressorName = "LZ4_compress"; break; in fullSpeedBench() 532 …case 2 : compressionFunction = local_LZ4_compress_limitedOutput; compressorName = "LZ4_compress_li… in fullSpeedBench() 533 …case 3 : compressionFunction = local_LZ4_compress_withState; compressorName = "LZ4_compress_withSt… in fullSpeedBench() 534 …case 4 : compressionFunction = local_LZ4_compress_limitedOutput_withState; compressorName = "LZ4_c… in fullSpeedBench() 535 …case 5 : compressionFunction = local_LZ4_compress_continue; initFunction = LZ4_create; compressorN… in fullSpeedBench() 536 …case 6 : compressionFunction = local_LZ4_compress_limitedOutput_continue; initFunction = LZ4_creat… in fullSpeedBench() 537 case 7 : compressionFunction = LZ4_compressHC; compressorName = "LZ4_compressHC"; break; in fullSpeedBench() 538 …case 8 : compressionFunction = local_LZ4_compressHC_limitedOutput; compressorName = "LZ4_compressH… in fullSpeedBench() 539 …case 9 : compressionFunction = local_LZ4_compressHC_withStateHC; compressorName = "LZ4_compressHC_… in fullSpeedBench() [all …]
|
D | bench.c | 126 int (*compressionFunction)(const char*, char*, int, int); member 255 case 0 : compP.compressionFunction = COMPRESSOR0; break; in BMK_benchFile() 258 case 1 : compP.compressionFunction = COMPRESSOR1; break; in BMK_benchFile() 260 default : compP.compressionFunction = DEFAULTCOMPRESSOR; in BMK_benchFile() 374 …chunkP[chunkNb].compressedSize = compP.compressionFunction(chunkP[chunkNb].origBuffer, chunkP[chun… in BMK_benchFile()
|
D | lz4io.c | 295 int (*compressionFunction)(const char*, char*, int); in LZ4IO_compressFilename_Legacy() local 308 …if (compressionlevel < 3) compressionFunction = LZ4_compress; else compressionFunction = LZ4_compr… in LZ4IO_compressFilename_Legacy() 333 outSize = compressionFunction(in_buff, out_buff+4, inSize); in LZ4IO_compressFilename_Legacy()
|