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

  /src/external/bsd/zstd/dist/programs/
dibio.h 37 ZDICT_fastCover_params_t* fastCoverParams, int optimize, unsigned memLimit);
fileio_types.h 64 unsigned memLimit;
dibio.c 315 ZDICT_fastCover_params_t* fastCoverParams, int optimize, unsigned memLimit)
347 if (memLimit != 0) {
349 (unsigned)(memLimit / (1 MB)));
350 loadedSize = (size_t)MIN(loadedSize, memLimit);
zstdcli.c 884 unsigned memLimit = 0;
915 (void)memLimit;
1073 if (longCommandWArg(&argument, "--memlimit")) { NEXT_UINT32(memLimit); continue; }
1074 if (longCommandWArg(&argument, "--memory")) { NEXT_UINT32(memLimit); continue; }
1075 if (longCommandWArg(&argument, "--memlimit-decompress")) { NEXT_UINT32(memLimit); continue; }
1231 memLimit = readU32FromChar(&argument);
1467 operationResult = DiB_trainFromFiles(outFileName, maxDictSize, filenames->fileNames, (int)filenames->tableSize, blockSize, NULL, &coverParams, NULL, optimize, memLimit);
1472 operationResult = DiB_trainFromFiles(outFileName, maxDictSize, filenames->fileNames, (int)filenames->tableSize, blockSize, NULL, NULL, &fastCoverParams, optimize, memLimit);
    [all...]
fileio.h 81 void FIO_setMemLimit(FIO_prefs_t* const prefs, unsigned memLimit);
fileio.c 289 ret->memLimit = 0;
367 void FIO_setMemLimit(FIO_prefs_t* const prefs, unsigned memLimit) { prefs->memLimit = memLimit; }
724 size_t const dictSizeMax = prefs->patchFromMode ? prefs->memLimit : DICTSIZE_MAX;
771 size_t const dictSizeMax = prefs->patchFromMode ? prefs->memLimit : DICTSIZE_MAX;
814 size_t const dictSizeMax = prefs->patchFromMode ? prefs->memLimit : DICTSIZE_MAX;
967 unsigned long long maxSize = MAX(prefs->memLimit, MAX(dictSize, maxSrcFileSize));
1129 /* need to update memLimit before calling createDictBuffer
1130 * because of memLimit check inside it *
    [all...]

Completed in 33 milliseconds