Home | History | Annotate | Download | only in Sema

Lines Matching defs:Packed

12418   bool Packed = Enum->getAttr<PackedAttr>() ? true : false;
12419 // -fshort-enums is the equivalent to specifying the packed attribute on all
12422 Packed = true;
12438 // If it's packed, check also if it fits a char or a short.
12439 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
12442 } else if (Packed && NumNegativeBits <= ShortWidth &&
12466 // If it's packed, check also if it fits a char or a short.
12467 if (Packed && NumPositiveBits <= CharWidth) {
12471 } else if (Packed && NumPositiveBits <= ShortWidth) {