Searched refs:canFit (Results 1 – 4 of 4) sorted by relevance
42 const bool canFit = N < sizeof(unsigned long long) * CHAR_BIT; in test_to_ullong() local43 …const unsigned long long mask = canFit ? (1ULL << (canFit ? N : 0)) - 1 : (unsigned long long)(-1)… in test_to_ullong()
44 const bool canFit = N < sizeof(unsigned long) * CHAR_BIT; in test_to_ulong() local45 …const unsigned long mask = canFit ? (1UL << (canFit ? N : 0)) - 1 : (unsigned long)(-1); // avoid … in test_to_ulong()
41 const bool canFit = N < sizeof(unsigned long long) * CHAR_BIT; in test_to_ullong() local42 …const unsigned long long mask = canFit ? (1ULL << (canFit ? N : 0)) - 1 : (unsigned long long)(-1)… in test_to_ullong()
43 const bool canFit = N < sizeof(unsigned long) * CHAR_BIT; in test_to_ulong() local44 …const unsigned long mask = canFit ? (1UL << (canFit ? N : 0)) - 1 : (unsigned long)(-1); // avoid … in test_to_ulong()