Home
last modified time | relevance | path

Searched refs:MAX_FILE_LIMIT (Results 1 – 3 of 3) sorted by relevance

/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/script/
H A Dlib.rs161 const MAX_FILE_LIMIT: libc::rlim_t = 4096; in perform_platform_specific_initialization() const
169 if rlim.rlim_cur >= MAX_FILE_LIMIT { in perform_platform_specific_initialization()
175 libc::RLIM_INFINITY => MAX_FILE_LIMIT, in perform_platform_specific_initialization()
177 if rlim.rlim_max < MAX_FILE_LIMIT { in perform_platform_specific_initialization()
180 MAX_FILE_LIMIT in perform_platform_specific_initialization()
/dports/benchmarks/stress-ng/stress-ng-0.13.09/
H A Dstress-ng.h1496 #define MAX_FILE_LIMIT ((1ULL << ((sizeof(off_t) * 8) - 1)) - 1) macro
1530 #define MAX_COPY_FILE_BYTES (MAX_FILE_LIMIT)
1551 #define MAX_HDD_BYTES (MAX_FILE_LIMIT)
1559 #define MAX_FALLOCATE_BYTES (MAX_FILE_LIMIT)
1563 #define MAX_FIEMAP_SIZE (MAX_FILE_LIMIT)
1595 #define MAX_IOMIX_BYTES (MAX_FILE_LIMIT)
1668 #define MAX_MSYNC_BYTES (MAX_FILE_LIMIT)
1688 #define MAX_READAHEAD_BYTES (MAX_FILE_LIMIT)
1692 #define MAX_REVIO_BYTES (MAX_FILE_LIMIT)
1704 #define MAX_SEEK_SIZE (MAX_FILE_LIMIT)
[all …]
/dports/benchmarks/stress-ng/stress-ng-0.13.09/debian/
H A Dchangelog3846 * Fix the MAX_FILE_LIMIT shift, use 1ULL instead of 1UL