Home
last modified time | relevance | path

Searched refs:statbuf (Results 226 – 250 of 6507) sorted by relevance

12345678910>>...261

/dports/math/eigen3/eigen-3.3.9/bench/spbench/
H A Dspbenchsolver.cpp43 std::ofstream statbuf; in main() local
50 statbuf.open(statFile.c_str(), std::ios::out); in main()
51 if(statbuf.good()){ in main()
53 printStatheader(statbuf); in main()
54 statbuf.close(); in main()
78 statbuf.open(statFile.c_str(), std::ios::app); in main()
79 statbuf << "</BENCH> \n"; in main()
81 statbuf.close(); in main()
/dports/math/stanmath/math-4.2.0/lib/eigen_3.3.9/bench/spbench/
H A Dspbenchsolver.cpp43 std::ofstream statbuf; in main() local
50 statbuf.open(statFile.c_str(), std::ios::out); in main()
51 if(statbuf.good()){ in main()
53 printStatheader(statbuf); in main()
54 statbuf.close(); in main()
78 statbuf.open(statFile.c_str(), std::ios::app); in main()
79 statbuf << "</BENCH> \n"; in main()
81 statbuf.close(); in main()
/dports/math/libmesh/libmesh-1.6.2/contrib/eigen/3.2.9/bench/spbench/
H A Dspbenchsolver.cpp43 std::ofstream statbuf; in main() local
50 statbuf.open(statFile.c_str(), std::ios::out); in main()
51 if(statbuf.good()){ in main()
53 printStatheader(statbuf); in main()
54 statbuf.close(); in main()
78 statbuf.open(statFile.c_str(), std::ios::app); in main()
79 statbuf << "</BENCH> \n"; in main()
81 statbuf.close(); in main()
/dports/math/libsemigroups/libsemigroups-1.3.7/extern/eigen-3.3.7/bench/spbench/
H A Dspbenchsolver.cpp43 std::ofstream statbuf; in main() local
50 statbuf.open(statFile.c_str(), std::ios::out); in main()
51 if(statbuf.good()){ in main()
53 printStatheader(statbuf); in main()
54 statbuf.close(); in main()
78 statbuf.open(statFile.c_str(), std::ios::app); in main()
79 statbuf << "</BENCH> \n"; in main()
81 statbuf.close(); in main()
/dports/misc/opennn/opennn-5.0.5/eigen/bench/spbench/
H A Dspbenchsolver.cpp43 std::ofstream statbuf; in main() local
50 statbuf.open(statFile.c_str(), std::ios::out); in main()
51 if(statbuf.good()){ in main()
53 printStatheader(statbuf); in main()
54 statbuf.close(); in main()
78 statbuf.open(statFile.c_str(), std::ios::app); in main()
79 statbuf << "</BENCH> \n"; in main()
81 statbuf.close(); in main()
/dports/devel/taskflow/taskflow-3.2.0/3rd-party/eigen-3.3.7/bench/spbench/
H A Dspbenchsolver.cpp43 std::ofstream statbuf; in main() local
50 statbuf.open(statFile.c_str(), std::ios::out); in main()
51 if(statbuf.good()){ in main()
53 printStatheader(statbuf); in main()
54 statbuf.close(); in main()
78 statbuf.open(statFile.c_str(), std::ios::app); in main()
79 statbuf << "</BENCH> \n"; in main()
81 statbuf.close(); in main()
/dports/lang/ficl/ficl-4.1.0/ficlplatform/
H A Dunix.c43 struct stat statbuf; in ficlFileStatus() local
44 if (stat(filename, &statbuf) == 0) in ficlFileStatus()
46 *status = statbuf.st_mode; in ficlFileStatus()
56 struct stat statbuf; in ficlFileSize() local
60 statbuf.st_size = -1; in ficlFileSize()
61 if (fstat(fileno(ff->f), &statbuf) != 0) in ficlFileSize()
64 return statbuf.st_size; in ficlFileSize()
/dports/misc/gnuls/coreutils-8.30/src/
H A Dstat.c584 human_access (struct stat const *statbuf) in human_access() argument
587 filemodestring (statbuf, modebuf); in human_access()
1066 if (S_ISLNK (statbuf->st_mode)) in print_stat()
1108 pw_ent = getpwuid (statbuf->st_uid); in print_stat()
1158 out_epoch_sec (pformat, prefix_len, statbuf, get_stat_atime (statbuf)); in print_stat()
1164 out_epoch_sec (pformat, prefix_len, statbuf, get_stat_mtime (statbuf)); in print_stat()
1170 out_epoch_sec (pformat, prefix_len, statbuf, get_stat_ctime (statbuf)); in print_stat()
1372 struct stat statbuf; in do_stat() local
1376 if (fstat (fd, &statbuf) != 0) in do_stat()
1386 ? stat (filename, &statbuf) in do_stat()
[all …]
/dports/devel/sccache/sccache-0.2.15/cargo-crates/zstd-sys-1.4.19+zstd.1.4.8/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/emulators/ppsspp/ppsspp-1.12.3/ext/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in parse_args()
163 r = _stat64(infilename, &statbuf); in parse_args()
166 struct stat statbuf; in parse_args()
167 r = stat(infilename, &statbuf); in parse_args()
170 return (size_t)statbuf.st_size; in parse_args()
178 struct _stat64 statbuf;
179 r = _stat64(infilename, &statbuf);
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1;
182 struct stat statbuf;
183 r = stat(infilename, &statbuf);
[all …]
/dports/archivers/p5-Compress-Zstd/Compress-Zstd-0.20/ext/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/archivers/zstd/zstd-1.5.0/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/databases/percona57-server/percona-server-5.7.36-39/storage/rocksdb/third_party/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/sysutils/vector/vector-0.10.0/cargo-crates/zstd-sys-1.4.15+zstd.1.4.4/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/databases/percona57-client/percona-server-5.7.36-39/storage/rocksdb/third_party/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/ext/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in parse_args()
163 r = _stat64(infilename, &statbuf); in parse_args()
166 struct stat statbuf; in parse_args()
167 r = stat(infilename, &statbuf); in parse_args()
170 return (size_t)statbuf.st_size; in parse_args()
178 struct _stat64 statbuf;
179 r = _stat64(infilename, &statbuf);
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1;
182 struct stat statbuf;
183 r = stat(infilename, &statbuf);
[all …]
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/zstd-sys-1.5.0+zstd.1.4.9/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/storage/rocksdb/third_party/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/textproc/ripgrep-all/ripgrep-all-0.9.6/cargo-crates/zstd-sys-1.4.15+zstd.1.4.4/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/textproc/sonic/sonic-1.3.0/cargo-crates/librocksdb-sys-6.7.4/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/emulators/citra/citra-ac98458e0/externals/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/emulators/citra-qt5/citra-ac98458e0/externals/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/ext/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/sysutils/onefetch/onefetch-2.10.2/cargo-crates/zstd-sys-1.4.18+zstd.1.4.7/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/zstd-sys-1.5.0+zstd.1.4.9/zstd/tests/
H A DroundTripCrash.c162 struct _stat64 statbuf; in getFileSize() local
163 r = _stat64(infilename, &statbuf); in getFileSize()
166 struct stat statbuf; in getFileSize() local
167 r = stat(infilename, &statbuf); in getFileSize()
170 return (size_t)statbuf.st_size; in getFileSize()
178 struct _stat64 statbuf; in isDirectory() local
179 r = _stat64(infilename, &statbuf); in isDirectory()
180 if (!r && (statbuf.st_mode & _S_IFDIR)) return 1; in isDirectory()
182 struct stat statbuf; in isDirectory() local
183 r = stat(infilename, &statbuf); in isDirectory()
[all …]

12345678910>>...261