Lines Matching defs:StorageSize
2266 const unsigned StorageSize =
2267 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize;
2269 assert(static_cast<unsigned>(Offset + Info.Size) <= StorageSize);
2270 unsigned HighBits = StorageSize - Offset - Info.Size;
2278 if (static_cast<unsigned>(Offset) + Info.Size < StorageSize)
2280 Val, llvm::APInt::getLowBitsSet(StorageSize, Info.Size), "bf.clear");
2505 const unsigned StorageSize =
2506 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize;
2510 if (StorageSize != Info.Size) {
2511 assert(StorageSize > Info.Size && "Invalid bitfield size.");
2518 SrcVal, llvm::APInt::getLowBitsSet(StorageSize, Info.Size),
2526 Val, ~llvm::APInt::getBitsSet(StorageSize, Offset, Offset + Info.Size),
2552 assert(Info.Size <= StorageSize);
2553 unsigned HighBits = StorageSize - Info.Size;
4841 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize;