Lines Matching defs:getSizeInBits
805 uint64_t getSizeInBits() const { return Size; }
1387 llvm::alignTo(getSizeInBits(), Context.getTargetInfo().getCharAlign()));
1520 setSize(std::max(getSizeInBits(), getDataSizeInBits()));
1837 setSize(std::max(getSizeInBits(), getDataSizeInBits()));
2102 setSize(std::max(getSizeInBits(), getDataSizeInBits()));
2104 setSize(std::max(getSizeInBits(),
2134 if (Context.getLangOpts().CPlusPlus && getSizeInBits() == 0) {
2148 setSize(std::max(getSizeInBits(), (uint64_t)Context.toBits(PaddedFieldSize)));
2152 uint64_t UnpaddedSize = getSizeInBits() - UnfilledBitsInLastUnit;
2154 llvm::alignTo(getSizeInBits(), Context.toBits(UnpackedAlignment));
2157 getSizeInBits(),
2181 if (getSizeInBits() > UnpaddedSize) {
2182 unsigned PadSize = getSizeInBits() - UnpaddedSize;
2203 UnpackedSizeInBits == getSizeInBits() && !HasPackedField &&