HomeSort by relevance Sort by last modified time
    Searched refs:statFile (Results 1 - 5 of 5) sorted by null

  /external/eigen/bench/spbench/
spbenchsolver.cpp 44 string statFile ;
47 bool statFileExists = get_options(argc, args, "-o", &statFile);
50 statbuf.open(statFile.c_str(), std::ios::out);
71 Browse_Matrices<double>(matrix_dir, statFileExists, statFile,maxiters, tol);
74 Browse_Matrices<std::complex<double> >(matrix_dir, statFileExists, statFile, maxiters, tol);
78 statbuf.open(statFile.c_str(), std::ios::app);
80 cout << "\n Output written in " << statFile << " ...\n";
spbenchsolver.h 279 void call_directsolver(Solver& solver, const int solver_id, const typename Solver::MatrixType& A, const Matrix<Scalar, Dynamic, 1>& b, const Matrix<Scalar, Dynamic, 1>& refX, std::string& statFile)
281 std::ofstream statbuf(statFile.c_str(), std::ios::app);
289 void call_itersolver(Solver &solver, const int solver_id, const typename Solver::MatrixType& A, const Matrix<Scalar, Dynamic, 1>& b, const Matrix<Scalar, Dynamic, 1>& refX, std::string& statFile)
294 std::ofstream statbuf(statFile.c_str(), std::ios::app);
305 void SelectSolvers(const SparseMatrix<Scalar>&A, unsigned int sym, Matrix<Scalar, Dynamic, 1>& b, const Matrix<Scalar, Dynamic, 1>& refX, std::string& statFile)
316 call_directsolver(solver, EIGEN_UMFPACK, A, b, refX,statFile);
324 call_directsolver(solver, EIGEN_SUPERLU, A, b, refX,statFile);
333 call_directsolver(solver, EIGEN_PASTIX, A, b, refX,statFile) ;
342 call_directsolver(solver, EIGEN_PARDISO, A, b, refX,statFile);
349 call_directsolver(solver, EIGEN_SPARSELU_COLAMD, A, b, refX, statFile);
    [all...]
  /hardware/ti/omap4-aah/security/smc_pa_ctrl/
smc_pa_ctrl_linux.c 77 struct stat statFile;
81 if (stat(pFileName, &statFile) != 0)
87 nBytesToAllocate = statFile.st_size;
109 nBytesRead = fread(pBuffer, 1, statFile.st_size, pFile);
111 if (nBytesRead != statFile.st_size)
  /hardware/ti/omap4xxx/security/smc_pa_ctrl/
smc_pa_ctrl_linux.c 77 struct stat statFile;
81 if (stat(pFileName, &statFile) != 0)
87 nBytesToAllocate = statFile.st_size;
109 nBytesRead = fread(pBuffer, 1, statFile.st_size, pFile);
111 if (nBytesRead != statFile.st_size)
  /frameworks/base/core/java/com/android/internal/os/
ProcessCpuTracker.java 185 final String statFile;
225 statFile = new File(procDir, "stat").toString();
240 statFile = new File(taskDir, "stat").toString();
246 uid = FileUtils.getUid(statFile.toString());
387 if (!Process.readProcFile(st.statFile.toString(),
455 String path = st.statFile.toString();
550 final String statFile = "/proc/" + pid + "/stat";
552 if (Process.readProcFile(statFile, PROCESS_STATS_FORMAT,

Completed in 3670 milliseconds