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