Home
last modified time | relevance | path

Searched refs:BestWidth (Results 1 – 1 of 1) sorted by relevance

/external/clang/lib/Sema/
DSemaDecl.cpp14835 unsigned BestWidth; in ActOnEnumBody() local
14861 BestWidth = Context.getIntWidth(BestType); in ActOnEnumBody()
14869 BestWidth = CharWidth; in ActOnEnumBody()
14873 BestWidth = ShortWidth; in ActOnEnumBody()
14876 BestWidth = IntWidth; in ActOnEnumBody()
14878 BestWidth = Context.getTargetInfo().getLongWidth(); in ActOnEnumBody()
14880 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) { in ActOnEnumBody()
14883 BestWidth = Context.getTargetInfo().getLongLongWidth(); in ActOnEnumBody()
14885 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) in ActOnEnumBody()
14890 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType); in ActOnEnumBody()
[all …]