3 implementations of BufferLength
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1801
static int IDecimalIeee754ParseAndFormatInfo<Decimal128, UInt128>.
BufferLength
=> Number.Decimal128NumberBufferLength;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
1746
static int IDecimalIeee754ParseAndFormatInfo<Decimal32, uint>.
BufferLength
=> Number.Decimal32NumberBufferLength;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1739
static int IDecimalIeee754ParseAndFormatInfo<Decimal64, ulong>.
BufferLength
=> Number.Decimal64NumberBufferLength;
4 references to BufferLength
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (3)
385
byte* pDigits = stackalloc byte[TDecimal.
BufferLength
];
386
NumberBuffer number = new NumberBuffer(NumberBufferKind.DecimalIeee754, pDigits, TDecimal.
BufferLength
);
599
Debug.Assert(significand.Length < TDecimal.
BufferLength
);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (1)
998
NumberBuffer number = new NumberBuffer(NumberBufferKind.DecimalIeee754, stackalloc byte[TDecimal.
BufferLength
]);