Lines Matching defs:dictBuf
154 const char* dictBuf;
189 LZ4_loadDict(pThis->LZ4_dictStream, pThis->dictBuf, pThis->dictSize);
199 LZ4_loadDictHC(pThis->LZ4_dictStreamHC, pThis->dictBuf, pThis->dictSize);
279 const char* dictBuf, int dictSize)
282 pParams->dictBuf = dictBuf;
359 const char* dictBuf, int dictSize)
380 LZ4_buildCompressionParameters(&compP, cLevel, dictBuf, dictSize);
519 dictBuf, dictSize);
632 const char* dictBuf, int dictSize)
651 dictBuf, dictSize);
693 const char* dictBuf, int dictSize)
726 dictBuf, dictSize);
736 const char* dictBuf, int dictSize)
750 BMK_benchCLevel(srcBuffer, benchedSize, name, cLevel, cLevelLast, &benchedSize, 1, dictBuf, dictSize);
760 const char* dictBuf, int dictSize)
768 BMK_benchFileTable(fileNamesTable+fileNb, 1, cLevel, cLevelLast, dictBuf, dictSize);
779 char* dictBuf = NULL;
817 dictBuf = (char*)malloc(dictSize);
818 if (!dictBuf) END_PROCESS(25, "Allocation error : not enough memory");
820 if (fread(dictBuf, 1, dictSize, dictFile) != dictSize)
827 BMK_syntheticTest(cLevel, cLevelLast, compressibility, dictBuf, (int)dictSize);
830 BMK_benchFilesSeparately(fileNamesTable, nbFiles, cLevel, cLevelLast, dictBuf, (int)dictSize);
832 BMK_benchFileTable(fileNamesTable, nbFiles, cLevel, cLevelLast, dictBuf, (int)dictSize);
835 free(dictBuf);