Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/template.bitset/bitset.members/
Dto_ullong.pass.cpp22 const bool is_M_zero = std::integral_constant<bool, M == 0>::value; // avoid compiler warnings in test_to_ullong() local
23 …const std::size_t X = is_M_zero ? sizeof(unsigned long long) * CHAR_BIT - 1 : sizeof(unsigned long… in test_to_ullong()
24 const unsigned long long max = is_M_zero ? 0 : (unsigned long long)(-1) >> X; in test_to_ullong()
Dto_ulong.pass.cpp23 const bool is_M_zero = std::integral_constant<bool, M == 0>::value; // avoid compiler warnings in test_to_ulong() local
24 …const std::size_t X = is_M_zero ? sizeof(unsigned long) * CHAR_BIT - 1 : sizeof(unsigned long) * C… in test_to_ulong()
25 …const std::size_t max = is_M_zero ? 0 : std::size_t(std::numeric_limits<unsigned long>::max()) >> … in test_to_ulong()