Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp858 detail::StatVFS m_svfs = {}; in __space() local
859 if (detail::statvfs(p.c_str(), &m_svfs) == -1) { in __space()
866 out = other * m_svfs.f_frsize; in __space()
867 if (other == 0 || out / other != m_svfs.f_frsize) in __space()
870 do_mult(si.capacity, m_svfs.f_blocks); in __space()
871 do_mult(si.free, m_svfs.f_bfree); in __space()
872 do_mult(si.available, m_svfs.f_bavail); in __space()