Lines Matching refs:BestWidth
19896 unsigned BestWidth; in ActOnEnumBody() local
19924 BestWidth = Context.getIntWidth(BestType); in ActOnEnumBody()
19932 BestWidth = CharWidth; in ActOnEnumBody()
19936 BestWidth = ShortWidth; in ActOnEnumBody()
19939 BestWidth = IntWidth; in ActOnEnumBody()
19941 BestWidth = Context.getTargetInfo().getLongWidth(); in ActOnEnumBody()
19943 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) { in ActOnEnumBody()
19946 BestWidth = Context.getTargetInfo().getLongLongWidth(); in ActOnEnumBody()
19948 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) in ActOnEnumBody()
19953 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType); in ActOnEnumBody()
19961 BestWidth = CharWidth; in ActOnEnumBody()
19965 BestWidth = ShortWidth; in ActOnEnumBody()
19968 BestWidth = IntWidth; in ActOnEnumBody()
19970 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) in ActOnEnumBody()
19973 (BestWidth = Context.getTargetInfo().getLongWidth())) { in ActOnEnumBody()
19976 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) in ActOnEnumBody()
19979 BestWidth = Context.getTargetInfo().getLongLongWidth(); in ActOnEnumBody()
19980 if (NumPositiveBits > BestWidth) { in ActOnEnumBody()
19989 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) in ActOnEnumBody()
20030 NewWidth = BestWidth; in ActOnEnumBody()