18 references to I386
Microsoft.CodeAnalysis (3)
Compilation\Compilation.cs (2)
2296
machine = Machine.
I386
;
2333
if (machine == Machine.
I386
)
MetadataReader\PEModule.cs (1)
319
return Machine.
I386
;
Microsoft.CodeAnalysis.CSharp (6)
Emitter\Model\PEModuleBuilder.cs (2)
193
!(refMachine == Machine.
I386
&& !assembly.Bit32Required))
197
if (!(machine == Machine.
I386
&& !SourceModule.Bit32Required) &&
Symbols\MissingModuleSymbol.cs (1)
53
return Machine.
I386
;
Symbols\Source\SourceAssemblySymbol.cs (2)
992
bool isPlatformAgnostic = (assemblyMachine == System.Reflection.PortableExecutable.Machine.
I386
&& !this.Bit32Required);
1007
if (moduleMachine == System.Reflection.PortableExecutable.Machine.
I386
&& !m.Bit32Required)
Symbols\Source\SourceModuleSymbol.cs (1)
101
return Machine.
I386
;
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (1)
Emit\EmitMetadataTests.cs (1)
2353
Assert.Equal(Machine.
I386
, coffHeader.Machine);
Microsoft.CodeAnalysis.VisualBasic (5)
Emit\PEModuleBuilder.vb (1)
164
Not (refMachine = Machine.
I386
AndAlso Not assembly.Bit32Required) Then
Symbols\MissingModuleSymbol.vb (1)
46
Return System.Reflection.PortableExecutable.Machine.
I386
Symbols\Source\SourceAssemblySymbol.vb (2)
1365
Dim isPlatformAgnostic As Boolean = (assemblyMachine = PortableExecutable.Machine.
I386
AndAlso Not Me.Bit32Required)
1377
If moduleMachine = PortableExecutable.Machine.
I386
AndAlso Not m.Bit32Required Then
Symbols\Source\SourceModuleSymbol.vb (1)
116
Return System.Reflection.PortableExecutable.Machine.
I386
System.Reflection.Metadata (3)
System\Reflection\PortableExecutable\ManagedPEBuilder.cs (1)
104
if (Header.Machine == Machine.
I386
|| Header.Machine == 0)
System\Reflection\PortableExecutable\ManagedTextSection.cs (1)
86
internal bool RequiresStartupStub => Machine == Machine.
I386
|| Machine == 0;
System\Reflection\PortableExecutable\PEBuilder.cs (1)
195
builder.WriteUInt16((ushort)(Header.Machine == 0 ? Machine.
I386
: Header.Machine));