Lines Matching refs:U32
81 static U32 g_compressibilityDefault = 50;
89 static U32 g_displayLevel = 2; /* 0 : no display; 1: errors; 2 : + result + interaction + warnings; 3 : + progression; 4 : + information */
121 static U32 g_nbSeconds = NBSECONDS;
358 const size_t* fileSizes, U32 nbFiles,
362 U32 const maxNbBlocks = (U32)((srcSize + (blockSize-1)) / blockSize) + nbFiles;
370 U32 nbBlocks;
392 U32 fileNb;
395 U32 const nbBlocksforThisFile = (U32)((remaining + (blockSize-1)) / blockSize);
396 U32 const blockEnd = nbBlocks + nbBlocksforThisFile;
417 U32 blockNb;
428 U32 nbCompressionLoops = (U32)((5 MB) / (srcSize+1)) + 1; /* conservative initial compression speed estimate */
429 U32 nbDecodeLoops = (U32)((200 MB) / (srcSize+1)) + 1; /* conservative initial decode speed estimate */
431 U32 cCompleted=(g_decodeOnly==1), dCompleted=0;
434 U32 markNb = 0;
449 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->\r", marks[markNb], displayName, (U32)totalRSize);
457 U32 nbLoops;
459 U32 blockNb;
474 nbCompressionLoops = (U32)(TIMELOOP_NANOSEC / fastestC) + 1; /* aim for ~1sec */
484 { U32 blockNb; for (blockNb=0; blockNb<nbBlocks; blockNb++) cSize += blockTable[blockNb].cSize; }
490 (U32)totalRSize, (U32)cSize, ratio,
507 U32 nbLoops;
510 U32 blockNb;
535 nbDecodeLoops = (U32)(TIMELOOP_NANOSEC / fastestD) + 1; /* aim for ~1sec */
553 (U32)totalRSize, (U32)cSize, ratio,
565 U32 segNb, bNb, pos;
567 DISPLAY("Decoding error at pos %u ", (U32)u);
572 pos = (U32)(u - bacc);
643 DISPLAY("bench %s %s: input %u bytes, %u seconds, %u KB blocks\n", LZ4_VERSION_STRING, LZ4_GIT_COMMIT_STRING, (U32)benchedSize, g_nbSeconds, (U32)(g_blockSize>>10));
709 DISPLAY("File(s) bigger than LZ4's max input size; testing %u MB only...\n", (U32)(benchedSize >> 20));
712 DISPLAY("Not enough memory; testing %u MB only...\n", (U32)(benchedSize >> 20));