Lines Matching refs:fileNamesTable
750 const char* const * fileNamesTable, unsigned nbFiles, in BMK_loadFiles() argument
756 U64 fileSize = UTIL_getFileSize(fileNamesTable[n]); /* last file may be shortened */ in BMK_loadFiles()
757 if (UTIL_isDirectory(fileNamesTable[n])) { in BMK_loadFiles()
758 DISPLAYLEVEL(2, "Ignoring %s directory... \n", fileNamesTable[n]); in BMK_loadFiles()
763 DISPLAYLEVEL(2, "Cannot evaluate size of %s, ignoring ... \n", fileNamesTable[n]); in BMK_loadFiles()
767 { FILE* const f = fopen(fileNamesTable[n], "rb"); in BMK_loadFiles()
768 if (f==NULL) RETURN_ERROR_INT(10, "impossible to open file %s", fileNamesTable[n]); in BMK_loadFiles()
769 OUTPUTLEVEL(2, "Loading %s... \r", fileNamesTable[n]); in BMK_loadFiles()
772 … if (readSize != (size_t)fileSize) RETURN_ERROR_INT(11, "could not read %s", fileNamesTable[n]); in BMK_loadFiles()
785 const char* const * fileNamesTable, unsigned nbFiles, in BMK_benchFilesAdvanced() argument
796 U64 const totalSizeToLoad = UTIL_getTotalFileSize(fileNamesTable, nbFiles); in BMK_benchFilesAdvanced()
857 fileSizes, fileNamesTable, nbFiles, in BMK_benchFilesAdvanced()
867 { const char* const displayName = (nbFiles > 1) ? mfName : fileNamesTable[0]; in BMK_benchFilesAdvanced()
885 const char* const * fileNamesTable, unsigned nbFiles, in BMK_benchFiles() argument
891 …return BMK_benchFilesAdvanced(fileNamesTable, nbFiles, dictFileName, cLevel, compressionParams, di… in BMK_benchFiles()