HomeSort by: relevance | last modified time | path
    Searched refs:maxCompressedSize (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/zstd/dist/programs/
benchzstd.c 420 size_t maxCompressedSize,
544 RDG_genBuffer(compressedBuffer, maxCompressedSize, 0.10, 0.50, 1);
826 const size_t maxCompressedSize = dstCapacity
831 dstBuffer ? NULL : malloc(maxCompressedSize);
855 maxCompressedSize,
  /src/external/bsd/zstd/dist/zlibWrapper/examples/
zwrapbench.c 160 size_t const maxCompressedSize = ZSTD_compressBound(srcSize) + (maxNbBlocks * 1024); /* add some room for safety */
161 void* const compressedBuffer = malloc(maxCompressedSize);
197 RDG_genBuffer(compressedBuffer, maxCompressedSize, 0.10, 0.50, 1);
227 if (!cCompleted) memset(compressedBuffer, 0xE5, maxCompressedSize); /* warm up and erase result buffer */
  /src/external/bsd/zstd/dist/tests/
fuzzer.c 3748 size_t maxCompressedSize = 46; /* block 1, 2: compressed, block 3: RLE, zstd 1.4.4 */
3755 if (ZSTD_isError(cSize) || cSize > maxCompressedSize) {
3756 DISPLAYLEVEL(4, "error: cSize %u > %u expected ! \n", (unsigned)cSize, (unsigned)maxCompressedSize);

Completed in 26 milliseconds