13 references to CreateNativeIntegerTypeSymbol
Microsoft.CodeAnalysis.CSharp (13)
Compilation\BuiltInOperators.cs (10)
272case UnaryOperatorKind.NInt: opType = _compilation.CreateNativeIntegerTypeSymbol(signed: true); break; 273case UnaryOperatorKind.NUInt: opType = _compilation.CreateNativeIntegerTypeSymbol(signed: false); break; 752case BinaryOperatorKind.NInt: return _compilation.CreateNativeIntegerTypeSymbol(signed: true); 753case BinaryOperatorKind.NUInt: return _compilation.CreateNativeIntegerTypeSymbol(signed: false); 784case BinaryOperatorKind.NInt: return _compilation.CreateNativeIntegerTypeSymbol(signed: true); 785case BinaryOperatorKind.NUInt: return _compilation.CreateNativeIntegerTypeSymbol(signed: false); 816case BinaryOperatorKind.NInt: return _compilation.CreateNativeIntegerTypeSymbol(signed: true); 817case BinaryOperatorKind.NUInt: return _compilation.CreateNativeIntegerTypeSymbol(signed: false); 843BinaryOperatorKind.NInt => _compilation.CreateNativeIntegerTypeSymbol(signed: true), 844BinaryOperatorKind.NUInt => _compilation.CreateNativeIntegerTypeSymbol(signed: false),
Compilation\CSharpCompilation.cs (1)
4103return CreateNativeIntegerTypeSymbol(signed).GetPublicSymbol();
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (2)
1106return (compilation.CreateNativeIntegerTypeSymbol(signed: true), constantOne); 1109return (compilation.CreateNativeIntegerTypeSymbol(signed: false), constantOne);