Home
last modified time | relevance | path

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

/external/llvm-project/libc/utils/CPP/
DBitset.h23 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); member
33 uintptr_t Data[(NumberOfBits + BitsPerUnit - 1) / BitsPerUnit] = {0};