18 references to GetBits
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Serialization\CodeGenerator.cs (1)
1175int[] bits = Decimal.GetBits((decimal)o);
Microsoft.CodeAnalysis (4)
ConstantValue.cs (1)
329int[] decimalBits = System.Decimal.GetBits(value);
CryptographicHashProvider.cs (1)
257int[] bits = decimal.GetBits(constant.DecimalValue);
InternalUtilities\DecimalUtilities.cs (2)
11return unchecked((byte)(decimal.GetBits(value)[3] >> 16)); 16int[] bits = decimal.GetBits(value);
Microsoft.CodeAnalysis.CodeStyle (2)
src\Compilers\Core\Portable\InternalUtilities\DecimalUtilities.cs (2)
11return unchecked((byte)(decimal.GetBits(value)[3] >> 16)); 16int[] bits = decimal.GetBits(value);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
LexicalAndXml\LexicalTests.cs (1)
3804return string.Join("", decimal.GetBits(d).Select(word => string.Format("{0:x8}", word)));
Microsoft.CodeAnalysis.Workspaces (2)
src\Compilers\Core\Portable\InternalUtilities\DecimalUtilities.cs (2)
11return unchecked((byte)(decimal.GetBits(value)[3] >> 16)); 16int[] bits = decimal.GetBits(value);
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (2)
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.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);