30 references to GetBits
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Serialization\CodeGenerator.cs (1)
1175int[] bits = Decimal.GetBits((decimal)o);
GenerateDocumentationAndConfigFiles (2)
src\roslyn\src\Compilers\Core\Portable\InternalUtilities\DecimalUtilities.cs (2)
11return unchecked((byte)(decimal.GetBits(value)[3] >> 16)); 16int[] bits = decimal.GetBits(value);
Microsoft.CodeAnalysis (4)
ConstantValue.cs (1)
329int[] decimalBits = System.Decimal.GetBits(value);
CryptographicHashProvider.cs (1)
275int[] bits = decimal.GetBits(constant.DecimalValue);
InternalUtilities\DecimalUtilities.cs (2)
11return unchecked((byte)(decimal.GetBits(value)[3] >> 16)); 16int[] bits = decimal.GetBits(value);
Microsoft.CodeAnalysis.Analyzers (2)
src\roslyn\src\Compilers\Core\Portable\InternalUtilities\DecimalUtilities.cs (2)
11return unchecked((byte)(decimal.GetBits(value)[3] >> 16)); 16int[] bits = decimal.GetBits(value);
Microsoft.CodeAnalysis.AnalyzerUtilities (2)
src\roslyn\src\Compilers\Core\Portable\InternalUtilities\DecimalUtilities.cs (2)
11return unchecked((byte)(decimal.GetBits(value)[3] >> 16)); 16int[] bits = decimal.GetBits(value);
Microsoft.CodeAnalysis.CodeStyle (2)
src\roslyn\src\Compilers\Core\Portable\InternalUtilities\DecimalUtilities.cs (2)
11return unchecked((byte)(decimal.GetBits(value)[3] >> 16)); 16int[] bits = decimal.GetBits(value);
Microsoft.CodeAnalysis.NetAnalyzers (1)
Microsoft.NetCore.Analyzers\Performance\UseSpanClearInsteadOfFill.cs (1)
117return decimal.GetBits(d).All(b => b == 0);
Microsoft.CodeAnalysis.ResxSourceGenerator (2)
src\roslyn\src\Compilers\Core\Portable\InternalUtilities\DecimalUtilities.cs (2)
11return unchecked((byte)(decimal.GetBits(value)[3] >> 16)); 16int[] bits = decimal.GetBits(value);
Microsoft.CodeAnalysis.Workspaces (2)
src\roslyn\src\Compilers\Core\Portable\InternalUtilities\DecimalUtilities.cs (2)
11return unchecked((byte)(decimal.GetBits(value)[3] >> 16)); 16int[] bits = decimal.GetBits(value);
Mono.Cecil (1)
Mono.Cecil\AssemblyWriter.cs (1)
2386 var bits = decimal.GetBits ((decimal) constant.Value);
Roslyn.Diagnostics.Analyzers (2)
src\roslyn\src\Compilers\Core\Portable\InternalUtilities\DecimalUtilities.cs (2)
11return unchecked((byte)(decimal.GetBits(value)[3] >> 16)); 16int[] bits = decimal.GetBits(value);
System.ComponentModel.TypeConverter (1)
System\ComponentModel\DecimalConverter.cs (1)
50return new InstanceDescriptor(ctor, new object[] { decimal.GetBits(decimalValue) });
System.Data.Odbc (3)
Common\System\Data\ProviderBase\DbBuffer.cs (1)
765int[] tmp = decimal.GetBits(value);
System\Data\Odbc\OdbcParameter.cs (1)
573byte s = (byte)((decimal.GetBits((decimal)value)[3] & 0x00ff0000) >> 0x10);
System\Data\Odbc\OdbcParameterHelper.cs (1)
231return (byte)((decimal.GetBits((decimal)value)[3] & 0x00ff0000) >> 0x10);
System.Data.OleDb (3)
ColumnBinding.cs (1)
891int[] tmp = decimal.GetBits(value);
DbParameterHelper.cs (1)
235return (byte)((decimal.GetBits((decimal)value)[3] & 0x00ff0000) >> 0x10);
System\Data\ProviderBase\DbBuffer.cs (1)
718int[] tmp = decimal.GetBits(value);
System.Private.Xml (2)
System\Xml\Serialization\CodeGenerator.cs (1)
822int[] bits = decimal.GetBits((decimal)o);
System\Xml\Xsl\IlGen\GenerateHelper.cs (1)
931int[] bits = decimal.GetBits(dec);