7 references to BestFitMappingEnable
Microsoft.CodeAnalysis (2)
Symbols\PlatformInvokeInformation.cs (2)
134case MethodImportAttributes.BestFitMappingEnable: 237result |= MethodImportAttributes.BestFitMappingEnable;
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (3)
Attributes\AttributeTests_WellKnownAttributes.cs (3)
2713MethodImportAttributes.BestFitMappingEnable | 2740MethodImportAttributes.BestFitMappingEnable | 2890new { attr = MakeDllImport(bestFitMapping: true), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.BestFitMappingEnable}, // M23
System.Reflection.Emit (1)
System\Reflection\Emit\PseudoCustomAttributesData.cs (1)
73importAttributes |= MethodImportAttributes.BestFitMappingEnable;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodDecoder.cs (1)
148BestFitMapping = (a & MethodImportAttributes.BestFitMappingMask) == MethodImportAttributes.BestFitMappingEnable,