Lines Matching refs:BestWidth
10842 unsigned BestWidth; in ActOnEnumBody() local
10870 BestWidth = CharWidth; in ActOnEnumBody()
10878 BestWidth = CharWidth; in ActOnEnumBody()
10882 BestWidth = ShortWidth; in ActOnEnumBody()
10885 BestWidth = IntWidth; in ActOnEnumBody()
10887 BestWidth = Context.getTargetInfo().getLongWidth(); in ActOnEnumBody()
10889 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) { in ActOnEnumBody()
10892 BestWidth = Context.getTargetInfo().getLongLongWidth(); in ActOnEnumBody()
10894 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) in ActOnEnumBody()
10899 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType); in ActOnEnumBody()
10907 BestWidth = CharWidth; in ActOnEnumBody()
10911 BestWidth = ShortWidth; in ActOnEnumBody()
10914 BestWidth = IntWidth; in ActOnEnumBody()
10916 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) in ActOnEnumBody()
10919 (BestWidth = Context.getTargetInfo().getLongWidth())) { in ActOnEnumBody()
10922 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) in ActOnEnumBody()
10925 BestWidth = Context.getTargetInfo().getLongLongWidth(); in ActOnEnumBody()
10926 assert(NumPositiveBits <= BestWidth && in ActOnEnumBody()
10930 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) in ActOnEnumBody()
10971 NewWidth = BestWidth; in ActOnEnumBody()