Lines Matching defs:StorageSize
2303 const unsigned StorageSize =
2304 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize;
2306 assert(static_cast<unsigned>(Offset + Info.Size) <= StorageSize);
2307 unsigned HighBits = StorageSize - Offset - Info.Size;
2315 if (static_cast<unsigned>(Offset) + Info.Size < StorageSize)
2317 Val, llvm::APInt::getLowBitsSet(StorageSize, Info.Size), "bf.clear");
2549 const unsigned StorageSize =
2550 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize;
2554 if (StorageSize != Info.Size) {
2555 assert(StorageSize > Info.Size && "Invalid bitfield size.");
2562 SrcVal, llvm::APInt::getLowBitsSet(StorageSize, Info.Size),
2570 Val, ~llvm::APInt::getBitsSet(StorageSize, Offset, Offset + Info.Size),
2596 assert(Info.Size <= StorageSize);
2597 unsigned HighBits = StorageSize - Info.Size;
4936 UseVolatile ? Info.VolatileStorageSize : Info.StorageSize;