Home | History | Annotate | Download | only in AST

Lines Matching refs:TypeSize

675   void LayoutWideBitField(uint64_t FieldSize, uint64_t TypeSize,
1759 uint64_t TypeSize = FieldInfo.first;
1762 if (TypeSize > FieldAlign &&
1767 FieldAlign = TypeSize;
1779 if (TypeSizeLastFD != TypeSize) {
1816 RemainingInAlignment = TypeSize - FieldSize;
1825 uint64_t TypeSize = FieldInfo.first;
1826 RemainingInAlignment = TypeSize - FieldSize;
1851 uint64_t TypeSize,
1922 uint64_t TypeSize = FieldInfo.first;
1926 if (IsMsStruct && (TypeSize > FieldAlign) &&
1930 FieldAlign = TypeSize;
1960 if (FieldSize > TypeSize) {
1961 LayoutWideBitField(FieldSize, TypeSize, FieldPacked, D);
1988 (FieldOffset & (FieldAlign-1)) + FieldSize > TypeSize))
1993 (UnpackedFieldOffset & (UnpackedFieldAlign-1)) + FieldSize > TypeSize))
2017 // FIXME: I think FieldSize should be TypeSize here.
2104 CharUnits TypeSize = Context.getTypeSizeInChars(BTy);
2105 if (TypeSize > FieldAlign)
2106 FieldAlign = TypeSize;