Home
last modified time | relevance | path

Searched full:10 (Results 1 – 25 of 28) sorted by relevance

12

/lz4-3.4.0-2.7.6/tests/
Ddatagencli.c39 #define KB *(1 <<10)
109 size *= 10; in main()
113 if (*argument=='K') { size <<= 10; argument++; } in main()
123 seed *= 10; in main()
133 proba *= 10; in main()
145 litProba *= 10; in main()
Dfullbench.c61 #define TIMELOOP (CLOCKS_PER_SEC * 25 / 10)
63 #define KB *(1 <<10)
110 DISPLAY("-Using Block Size of %i KB-\n", g_chunkSize>>10); in BMK_setBlocksize()
391 exit(10); in local_LZ4F_decompress_followHint()
425 exit(10); in local_LZ4F_decompress_noHint()
439 if (LZ4F_isError(errorCode)) { DISPLAY("dctx allocation issue \n"); return 10; } } in fullSpeedBench()
554 … case 10: compressionFunction = local_LZ4_compress_HC; compressorName = "LZ4_compress_HC"; break; in fullSpeedBench()
579 PROGRESS("%2i-%-34.34s :%10i ->\r", loopNb, compressorName, (int)benchedSize); in fullSpeedBench()
603 …PROGRESS("%2i-%-34.34s :%10i ->%9i (%5.2f%%),%7.1f MB/s\r", loopNb, compressorName, (int)benchedSi… in fullSpeedBench()
607 …DISPLAY("%2i-%-34.34s :%10i ->%9i (%5.2f%%),%7.1f MB/s\n", cAlgNb, compressorName, (int)benchedSiz… in fullSpeedBench()
[all …]
DcheckFrame.c48 #define KB *(1U<<10)
260 bsid *= 10; in main()
270 blockSize *= 10; in main()
Ddecompress-partial.c39 for (i = cmpSize; i < cmpSize + 10; ++i) { in main()
Dfuzzer.c86 #define KB *(1U<<10)
556 /* Test decoding with output size being 10 bytes too short => must fail */ in FUZ_test()
558 if (blockSize>10) { in FUZ_test()
559 decodedBuffer[blockSize-10] = 0; in FUZ_test()
560 … { int const r = LZ4_decompress_safe(cBuffer_exact, decodedBuffer, compressedSize, blockSize-10); in FUZ_test()
561 …KTEST(r>=0, "LZ4_decompress_safe should have failed, due to Output Size being 10 bytes too short"); in FUZ_test()
563 …FUZ_CHECKTEST(decodedBuffer[blockSize-10], "LZ4_decompress_safe overrun specified output buffer si… in FUZ_test()
1190 const U32 maxMessageSizeLog = 10; in FUZ_unitTests()
1437 const U32 maxMessageSizeLog = 10; in FUZ_unitTests()
1619 int src_len = (dlen - 10)*255 + 24; in FUZ_unitTests()
[all …]
Dframetest.c70 #define KB *(1U<<10)
754 FUZ_writeLE32(ip+4, 10); in basicTests()
757 size_t iSize = 10; in basicTests()
758 size_t oSize = 10; in basicTests()
1197 nbTests *= 10; in main()
1221 … case '9': duration *= 10; duration += (U32)(*argument++ - '0'); continue; in main()
1232 seed *= 10; in main()
1241 testNb *= 10; in main()
1250 proba *= 10; in main()
DCOPYING250 10. If you wish to incorporate parts of the Program into other free
Dtest-lz4-speed.py119 commits = execute('git log -n 10 %s %s' % (fmt, commit))
/lz4-3.4.0-2.7.6/lib/
Dxxhash.h43 xxHash 5.4 GB/s 10
45 MumurHash 3a 2.7 GB/s 10 Austin Appleby
46 SpookyHash 2.0 GB/s 10 Bob Jenkins
50 CityHash64 1.05 GB/s 10 Pike & Alakuijala
53 MD5-32 0.33 GB/s 10 Ronald L. Rivest
54 SHA1-32 0.28 GB/s 10
58 10 is a perfect score.
Dlz4.h121 …* Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB; et…
686 # elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ * 10 + __GNUC_MINOR__ >= 45))
688 # elif defined(__GNUC__) && (__GNUC__ * 10 + __GNUC_MINOR__ >= 31)
Dxxhash.c325 case 10: PROCESS4; in XXH32_finalize()
762 case 10: PROCESS8_64; in XXH64_finalize()
Dlz4hc.h49 #define LZ4HC_CLEVEL_OPT_MIN 10
/lz4-3.4.0-2.7.6/programs/
Dbench.c234 #define COOLPERIOD_SEC 10
237 #define KB *(1 <<10)
394 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->\r", marks[markNb], displayName, (U32)srcSize); in BMK_benchMem()
433 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s\r", in BMK_benchMem()
476 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s ,%6.1f MB/s\r", in BMK_benchMem()
566 … LZ4_VERSION_STRING, LZ4_GIT_COMMIT_STRING, (U32)benchedSize, g_nbSeconds, (U32)(g_blockSize>>10)); in BMK_benchCLevel()
597 if (f==NULL) EXM_THROW(10, "impossible to open file %s", fileNamesTable[n]); in BMK_loadFiles()
Dlz4cli.c60 #define KB *(1U<<10)
268 result *= 10; in readU32FromChar()
273 result <<= 10; in readU32FromChar()
274 if (**stringPtr=='M') result <<= 10; in readU32FromChar()
527 … DISPLAYLEVEL(2, "using blocks of size %u KB \n", (U32)(blockSize>>10));
533 … DISPLAYLEVEL(2, "using blocks of size %u KB \n", (U32)(blockSize>>10));
614 DISPLAYLEVEL(4, "Blocks size : %u KB\n", (U32)(blockSize>>10));
Dlz4io.h125 * Note : 1 only works for high compression levels (10+) */
Dlz4.1128 …ing on use cases\. This option only works in combination with very high compression levels (>=10)\.
Ddatagen.c40 #define KB *(1 <<10)
Dlz4.1.md145 This option only works in combination with very high compression levels (>=10).
Dlz4io.c66 #define KB *(1 <<10)
1475 /* buffer : must be valid memory area of at least 10 bytes */
1635 DISPLAYOUT("%10s %14s %5s %11s %13s %9s %s\n", in LZ4IO_displayCompressedFilesInfo()
1658 { char buffers[3][10]; in LZ4IO_displayCompressedFilesInfo()
1659 DISPLAYOUT("%10llu %14s %5s %11s %13s ", in LZ4IO_displayCompressedFilesInfo()
DCOPYING250 10. If you wish to incorporate parts of the Program into other free
/lz4-3.4.0-2.7.6/
DNEWS54 install: msys2 on Windows 10, by @vtorri
78 perf : faster and stronger ultra modes (levels 10+)
106 lz4hc : new high compression mode : levels 10-12 compress more and slower, by Przemyslaw Skibinski
/lz4-3.4.0-2.7.6/doc/
Dlz4_Block_format.md58 - 10 : (=280 - 15 - 255) ) remaining length to reach 280
Dlz4_manual.html62 </b><p> Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1M…
518 # elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ * 10 + __GNUC_MINOR__ >= 45))
520 # elif defined(__GNUC__) && (__GNUC__ * 10 + __GNUC_MINOR__ >= 31)
/lz4-3.4.0-2.7.6/examples/
DdictionaryRandomAccess.c32 if (written != 1) { exit(10); } in write_int()
DCOPYING250 10. If you wish to incorporate parts of the Program into other free

12