Home
last modified time | relevance | path

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

/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.space/
Dspace.pass.cpp93 auto do_mult = [&](std::uintmax_t val) { in TEST_CASE() local
100 const std::uintmax_t expect_capacity = do_mult(expect.f_blocks); in TEST_CASE()
101 const std::uintmax_t expect_free = do_mult(expect.f_bfree); in TEST_CASE()
102 const std::uintmax_t expect_avail = do_mult(expect.f_bavail); in TEST_CASE()
/external/libcxx/src/filesystem/
Doperations.cpp1174 auto do_mult = [&](uintmax_t& out, uintmax_t other) { in __space() local
1179 do_mult(si.capacity, m_svfs.f_blocks); in __space()
1180 do_mult(si.free, m_svfs.f_bfree); in __space()
1181 do_mult(si.available, m_svfs.f_bavail); in __space()