23 references to GetBits
mscorlib (2)
system\decimal.cs (2)
315SetBits( GetBits(this) ); 325SetBits( GetBits(this) );
System (1)
compmod\system\componentmodel\DecimalConverter.cs (1)
72object[] args = new object[] { Decimal.GetBits((Decimal)value) };
System.Core (1)
Microsoft\Scripting\Compiler\ILGen.cs (1)
972int[] bits = Decimal.GetBits(value);
System.Data (13)
fx\src\data\System\Data\Odbc\OdbcParameter.cs (1)
506byte s = (byte)((Decimal.GetBits((Decimal)value)[3] & 0x00ff0000) >> 0x10);
fx\src\data\System\Data\OleDb\ColumnBinding.cs (1)
799int[] tmp = Decimal.GetBits(value);
fx\src\data\System\Data\ProviderBase\DbBuffer.cs (1)
666int[] tmp = Decimal.GetBits(value);
fx\src\Data\System\Data\ProviderBase\DbParameterHelper.cs (1)
244return (byte)((Decimal.GetBits((Decimal)value)[3] & 0x00ff0000) >> 0x10);
fx\src\data\System\Data\SqlClient\TdsParser.cs (8)
5944stateObj.WriteByte((byte)((Decimal.GetBits((Decimal)value)[3] & 0x00ff0000) >> 0x10)); // propbytes: scale 6106stateObj.WriteByte((byte)((Decimal.GetBits((Decimal)value)[3] & 0x00ff0000) >> 0x10)); // propbytes: scale 6160int[] bits = Decimal.GetBits(value.Value); 6187int[] bits = Decimal.GetBits(m.Value); 6226int[] bits = Decimal.GetBits(m.Value); 6392int oldScale = (Decimal.GetBits(value)[3] & 0x00ff0000) >> 0x10; 6447int[] decimalBits = Decimal.GetBits(value); 6496stateObj._decimalBits = Decimal.GetBits(value);
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
503int[] bits = Decimal.GetBits(value);
System.Data.Entity (1)
System\Data\EntityClient\DbParameterHelper.cs (1)
230return (byte)((Decimal.GetBits((Decimal)value)[3] & 0x00ff0000) >> 0x10);
System.Data.Linq (1)
SqlClient\SqlTypeSystemProvider.cs (1)
1391int scale = (Decimal.GetBits(d)[3] & 0x00FF0000) >> 16;
System.Data.SqlXml (1)
System\Xml\Xsl\IlGen\GenerateHelper.cs (1)
916int[] bits = Decimal.GetBits(dec);
System.Numerics (1)
System\Numerics\BigInteger.cs (1)
503int[] bits = Decimal.GetBits(Decimal.Truncate(value));
System.Web (1)
Util\altserialization.cs (1)
71int[] bits = Decimal.GetBits((Decimal)value);
System.Xml (1)
System\Xml\Serialization\CodeGenerator.cs (1)
1094int[] bits = Decimal.GetBits((decimal)o);