15 references to Size
System.Private.CoreLib (15)
src\runtime\src\libraries\System.Private.CoreLib\src\System\BitConverter.cs (4)
289byte[] bytes = new byte[UInt128.Size]; 304if (destination.Length < UInt128.Size) 703if (startIndex > value.Length - UInt128.Size) 719if (value.Length < UInt128.Size)
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (11)
1119if ((source.Length > Size) && (source[..^Size].ContainsAnyExcept((byte)0x00))) 1128if (source.Length >= Size) 1131result = BinaryPrimitives.ReadUInt128BigEndian(source.Slice(source.Length - Size)); 1167if ((source.Length > Size) && (source[Size..].ContainsAnyExcept((byte)0x00))) 1176if (source.Length >= Size) 1205return (Size * 8) - LeadingZeroCountAsInt32(this); 1209int IBinaryInteger<UInt128>.GetByteCount() => Size; 1216bytesWritten = Size; 1229bytesWritten = Size;