Searched refs:is_M_zero (Results 1 – 4 of 4) sorted by relevance
22 const bool is_M_zero = std::integral_constant<bool, M == 0>::value; // avoid compiler warnings in test_to_ullong() local23 …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()
23 const bool is_M_zero = std::integral_constant<bool, M == 0>::value; // avoid compiler warnings in test_to_ulong() local24 …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()