Home | History | Annotate | Download | only in Sema

Lines Matching refs:Packed

10223   bool Packed = Enum->getAttr<PackedAttr>() ? true : false;
10224 // -fshort-enums is the equivalent to specifying the packed attribute on all
10227 Packed = true;
10243 // If it's packed, check also if it fits a char or a short.
10244 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
10247 } else if (Packed && NumNegativeBits <= ShortWidth &&
10271 // If it's packed, check also if it fits a char or a short.
10272 if (Packed && NumPositiveBits <= CharWidth) {
10276 } else if (Packed && NumPositiveBits <= ShortWidth) {