Searched refs:BitsPerUnit (Results 1 – 1 of 1) sorted by relevance
23 Data[Index / BitsPerUnit] |= (uintptr_t{1} << (Index % BitsPerUnit)); in set()27 return Data[Index / BitsPerUnit] & (uintptr_t{1} << (Index % BitsPerUnit)); in test()32 static constexpr size_t BitsPerUnit = BitsPerByte * sizeof(uintptr_t); member33 uintptr_t Data[(NumberOfBits + BitsPerUnit - 1) / BitsPerUnit] = {0};