Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DLiteralSupport.cpp550 MicrosoftInteger = 0; in NumericLiteralParser()
660 if (isLong || isLongLong || MicrosoftInteger) in NumericLiteralParser()
668 MicrosoftInteger = 8; in NumericLiteralParser()
673 MicrosoftInteger = 16; in NumericLiteralParser()
679 MicrosoftInteger = 32; in NumericLiteralParser()
685 MicrosoftInteger = 64; in NumericLiteralParser()
692 if (MicrosoftInteger) { in NumericLiteralParser()
723 MicrosoftInteger = 0; in NumericLiteralParser()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/
H A DLiteralSupport.h70 uint8_t MicrosoftInteger; // Microsoft suffix extension i8, i16, i32, or i64. variable
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp3501 if (Literal.MicrosoftInteger) { in ActOnNumericConstant()
3502 if (Literal.MicrosoftInteger == 8 && !Literal.isUnsigned) { in ActOnNumericConstant()
3506 Width = Literal.MicrosoftInteger; in ActOnNumericConstant()