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