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