1 write to FlattenedLength
System.Formats.Nrbf (1)
System\Formats\Nrbf\ArrayInfo.cs (1)
28FlattenedLength = totalElementsCount;
9 references to FlattenedLength
System.Formats.Nrbf (9)
System\Formats\Nrbf\ArrayInfo.cs (2)
43Debug.Assert(FlattenedLength <= MaxArrayLength); 44return (int)FlattenedLength;
System\Formats\Nrbf\ArrayRecord.cs (2)
21ValuesToRead = arrayInfo.FlattenedLength; 34public virtual long FlattenedLength => ArrayInfo.FlattenedLength;
System\Formats\Nrbf\BinaryArrayRecord.cs (2)
56: ArrayInfo.FlattenedLength; 242result = checked(result + nestedArrayRecord.ArrayInfo.FlattenedLength);
System\Formats\Nrbf\RectangularArrayRecord.cs (3)
198Debug.Assert(arrayInfo.FlattenedLength >= 0 && arrayInfo.FlattenedLength <= long.MaxValue / sizeOfSingleValue); 200long size = arrayInfo.FlattenedLength * sizeOfSingleValue;