Lines Matching refs:fileNamesTable

552                           const char* const * const fileNamesTable, unsigned nbFiles)  in BMK_loadFiles()  argument
558 U64 fileSize = UTIL_getFileSize(fileNamesTable[n]); in BMK_loadFiles()
559 if (UTIL_isDirectory(fileNamesTable[n])) { in BMK_loadFiles()
560 DISPLAYLEVEL(2, "Ignoring %s directory... \n", fileNamesTable[n]); in BMK_loadFiles()
565 DISPLAYLEVEL(2, "Cannot evaluate size of %s, ignoring ... \n", fileNamesTable[n]); in BMK_loadFiles()
569 f = fopen(fileNamesTable[n], "rb"); in BMK_loadFiles()
570 if (f==NULL) EXM_THROW(10, "impossible to open file %s", fileNamesTable[n]); in BMK_loadFiles()
571 DISPLAYUPDATE(2, "Loading %s... \r", fileNamesTable[n]); in BMK_loadFiles()
574 if (readSize != (size_t)fileSize) EXM_THROW(11, "could not read %s", fileNamesTable[n]); in BMK_loadFiles()
584 static void BMK_benchFileTable(const char* const * const fileNamesTable, unsigned const nbFiles, in BMK_benchFileTable() argument
594 U64 const totalSizeToLoad = UTIL_getTotalFileSize(fileNamesTable, nbFiles); in BMK_benchFileTable()
620 BMK_loadFiles(srcBuffer, benchedSize, fileSizes, fileNamesTable, nbFiles); in BMK_benchFileTable()
629 fileNamesTable[fileNb], cLevel, cLevelLast, in BMK_benchFileTable()
637 { const char* const displayName = (nbFiles > 1) ? mfName : fileNamesTable[0]; in BMK_benchFileTable()
673 int BMK_benchFiles(const char** fileNamesTable, unsigned nbFiles, in BMK_benchFiles() argument
689 … BMK_benchFileTable(fileNamesTable, nbFiles, dictFileName, cLevel, cLevelLast, compressionParams); in BMK_benchFiles()