Home | History | Annotate | Download | only in programs

Lines Matching refs:memLimit

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 */
1134 useMMap |= dictSize > prefs->memLimit;
2133 DISPLAY(" --memory=%u", prefs->memLimit ? prefs->memLimit : 128 MB);
2335 useMMap |= dictSize > prefs->memLimit;
2343 CHECK( ZSTD_DCtx_setMaxWindowSize(ress.dctx, prefs->memLimit) );
2416 assert(prefs->memLimit > 0);
2418 srcFileName, windowSize, prefs->memLimit);