20 references to Size
System.Private.CoreLib (20)
src\libraries\System.Private.CoreLib\src\System\BitConverter.cs (4)
288
byte[] bytes = new byte[UInt128.
Size
];
303
if (destination.Length < UInt128.
Size
)
674
if (startIndex > value.Length - UInt128.
Size
)
690
if (value.Length < UInt128.
Size
)
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (16)
838
if ((source.Length >
Size
) && (source[..^
Size
].ContainsAnyExcept((byte)0x00)))
849
if (source.Length >=
Size
)
851
sourceRef = ref Unsafe.Add(ref sourceRef, source.Length -
Size
);
895
if ((source.Length >
Size
) && (source[
Size
..].ContainsAnyExcept((byte)0x00)))
906
if (source.Length >=
Size
)
940
return (
Size
* 8) - LeadingZeroCountAsInt32(this);
944
int IBinaryInteger<UInt128>.GetByteCount() =>
Size
;
951
bytesWritten =
Size
;
964
bytesWritten =
Size
;
1142
uint* pLeft = stackalloc uint[
Size
/ sizeof(uint)];
1150
Span<uint> left = new Span<uint>(pLeft, (
Size
/ sizeof(uint)) - (LeadingZeroCountAsInt32(quotient) / 32));
1154
uint* pRight = stackalloc uint[
Size
/ sizeof(uint)];
1162
Span<uint> right = new Span<uint>(pRight, (
Size
/ sizeof(uint)) - (LeadingZeroCountAsInt32(divisor) / 32));
1164
Span<uint> rawBits = stackalloc uint[
Size
/ sizeof(uint)];