Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaDecl.cpp10842 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()
[all …]