Home
last modified time | relevance | path

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

/external/llvm-project/libcxx/test/std/utilities/template.bitset/bitset.members/
Dto_ullong.pass.cpp42 const bool canFit = N < sizeof(unsigned long long) * CHAR_BIT; in test_to_ullong() local
43 …const unsigned long long mask = canFit ? (1ULL << (canFit ? N : 0)) - 1 : (unsigned long long)(-1)… in test_to_ullong()
Dto_ulong.pass.cpp44 const bool canFit = N < sizeof(unsigned long) * CHAR_BIT; in test_to_ulong() local
45 …const unsigned long mask = canFit ? (1UL << (canFit ? N : 0)) - 1 : (unsigned long)(-1); // avoid … in test_to_ulong()
/external/libcxx/test/std/utilities/template.bitset/bitset.members/
Dto_ullong.pass.cpp41 const bool canFit = N < sizeof(unsigned long long) * CHAR_BIT; in test_to_ullong() local
42 …const unsigned long long mask = canFit ? (1ULL << (canFit ? N : 0)) - 1 : (unsigned long long)(-1)… in test_to_ullong()
Dto_ulong.pass.cpp43 const bool canFit = N < sizeof(unsigned long) * CHAR_BIT; in test_to_ulong() local
44 …const unsigned long mask = canFit ? (1UL << (canFit ? N : 0)) - 1 : (unsigned long)(-1); // avoid … in test_to_ulong()