/external/lz4/programs/ |
D | bench.c | 157 int (*compressionFunction)(const char* src, char* dst, int srcSize, int dstSize, int cLevel); 164 const char* displayName, int cLevel, in BMK_benchMem() argument 185 if (cLevel < LZ4HC_CLEVEL_MIN) cfunctionId = 0; else cfunctionId = 1; in BMK_benchMem() 260 …lockTable[blockNb].cPtr, (int)blockTable[blockNb].srcSize, (int)blockTable[blockNb].cRoom, cLevel); in BMK_benchMem() 359 …DISPLAY("-%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s (param=%d)\n", cLevel, (int)cSize, ratio, cSp… in BMK_benchMem() 361 …DISPLAY("-%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s\n", cLevel, (int)cSize, ratio, cSpeed, dSpeed… in BMK_benchMem() 363 DISPLAYLEVEL(2, "%2i#\n", cLevel); in BMK_benchMem() 399 const char* displayName, int cLevel, int cLevelLast, in BMK_benchCLevel() argument 413 if (cLevelLast < cLevel) cLevelLast = cLevel; in BMK_benchCLevel() 415 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel() [all …]
|
D | lz4cli.c | 294 cLevel=1, in main() local 387 cLevel = -(int)fastLevel; in main() 395 cLevel = -1; /* default for --fast */ in main() 406 … if (!strcmp(argument, "c0")) { cLevel=0; argument++; continue; } /* -c0 (fast compression) */ in main() 407 … if (!strcmp(argument, "c1")) { cLevel=9; argument++; continue; } /* -c1 (high compression) */ in main() 408 …if (!strcmp(argument, "c2")) { cLevel=12; argument++; continue; } /* -c2 (very high compression) … in main() 409 …if (!strcmp(argument, "hc")) { cLevel=12; argument++; continue; } /* -hc (very high compression) … in main() 414 cLevel = readU32FromChar(&argument); in main() 603 operationResult = BMK_benchFiles(inFileNames, ifnIdx, cLevel, cLevelLast); in main() 689 LZ4IO_compressFilename_Legacy(input_filename, output_filename, cLevel); in main() [all …]
|
D | bench.h | 29 int cLevel, int cLevelLast);
|
D | lz4io.c | 323 static int LZ4IO_LZ4_compress(const char* src, char* dst, int srcSize, int dstSize, int cLevel) in LZ4IO_LZ4_compress() argument 325 (void)cLevel; in LZ4IO_LZ4_compress() 334 int (*compressionFunction)(const char* src, char* dst, int srcSize, int dstSize, int cLevel); in LZ4IO_compressFilename_Legacy()
|
/external/lz4/lib/ |
D | lz4hc.c | 711 int cLevel, in LZ4HC_compress_generic_internal() argument 744 …if (cLevel < 1) cLevel = LZ4HC_CLEVEL_DEFAULT; /* note : convention is different from lz4frame, … in LZ4HC_compress_generic_internal() 745 cLevel = MIN(LZ4HC_CLEVEL_MAX, cLevel); in LZ4HC_compress_generic_internal() 746 { cParams_t const cParam = clTable[cLevel]; in LZ4HC_compress_generic_internal() 756 cLevel == LZ4HC_CLEVEL_MAX, /* ultra mode */ in LZ4HC_compress_generic_internal() 769 int cLevel, in LZ4HC_compress_generic_noDictCtx() argument 774 …return LZ4HC_compress_generic_internal(ctx, src, dst, srcSizePtr, dstCapacity, cLevel, limit, noDi… in LZ4HC_compress_generic_noDictCtx() 783 int cLevel, in LZ4HC_compress_generic_dictCtx() argument 791 … return LZ4HC_compress_generic_noDictCtx(ctx, src, dst, srcSizePtr, dstCapacity, cLevel, limit); in LZ4HC_compress_generic_dictCtx() 795 ctx->compressionLevel = (short)cLevel; in LZ4HC_compress_generic_dictCtx() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | SearchCLDR.java | 151 for (Level cLevel : Level.values()) { in main() 152 System.out.print("\t" + cLevel); in main() 258 for (Level cLevel : Level.values()) { in main() 259 System.out.print("\t" + levelCounter.get(cLevel)); in main()
|
D | SearchXml.java | 151 for (Level cLevel : Level.values()) { in main() 152 System.out.print("\t" + cLevel); in main() 338 for (Level cLevel : Level.values()) { in checkFiles() 339 System.out.print("\t" + levelCounter.get(cLevel)); in checkFiles()
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | CheckLogicalGroupings.java | 124 Level cLevel = coverageLevel.getLevel(path); in handleCheck() local 129 …"Incomplete logical group - missing values for: {0}; level={1}", missingCodes.toString(), cLevel)); in handleCheck()
|
/external/lz4/tests/ |
D | roundTripTest.c | 90 typedef int (*compressFn)(const char* src, char* dst, int srcSize, int dstSize, int cLevel);
|