HomeSort by: relevance | last modified time | path
    Searched defs:contentSize (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/zstd/dist/programs/
fileio_types.h 69 int contentSize;
zstdcli.c 853 contentSize=1,
982 if (!strcmp(argument, "--content-size")) { contentSize = 1; continue; }
983 if (!strcmp(argument, "--no-content-size")) { contentSize = 0; continue; }
1551 FIO_setContentSize(prefs, contentSize);
1596 (void)contentSize; (void)suffix; (void)adapt; (void)rsyncable;
  /src/external/bsd/zstd/dist/tests/
decodecorpus.c 194 size_t contentSize; /* 0 means unknown (unless contentSize == windowSize == 0) */
195 unsigned windowSize; /* contentSize >= windowSize means single segment */
261 int contentSize; /* force the content size to be present */
302 fh.contentSize = highBit ? highBit + (RAND(seed) % highBit) : 0;
305 contentSizeFlag = opts.contentSize | (RAND(seed) & 1);
307 if (contentSizeFlag && (fh.contentSize == 0 || !(RAND(seed) & 7))) {
309 fh.windowSize = (U32) fh.contentSize;
316 int minFcsCode = (fh.contentSize >= 256) +
317 (fh.contentSize >= 65536 + 256)
    [all...]
fuzzer.c 2444 size_t const contentSize = 9 KB;
2466 RDG_genBuffer(CNBuffer, flatdictSize + contentSize, compressibility, 0., seed);
2468 (unsigned long long)XXH64(contentStart, contentSize, 0),
2473 contentStart, contentSize, l);
2485 contentStart, contentSize,
2506 contentStart, contentSize);
2525 wdict_cSize = ZSTD_compress2(ctxOrig, compressedBuffer, compressedBufferSize, contentStart, contentSize);
2764 DISPLAYLEVEL(3, "test%3i : ZSTD_compress_usingCDict_advanced, no contentSize, no dictID : ", testNb++);
2778 DISPLAYLEVEL(3, "test%3i : try retrieving contentSize from frame : ", testNb++);
2779 { U64 const contentSize = ZSTD_getFrameContentSize(compressedBuffer, cSize)
    [all...]

Completed in 21 milliseconds