1 instantiation of RowCounts
System.Reflection.Metadata (1)
System\Reflection\Metadata\Ecma335\MetadataAggregator.cs (1)
302generation = sizes.BinarySearch(new RowCounts { AggregateInserts = rowId });
9 references to RowCounts
System.Reflection.Metadata (9)
System\Reflection\Metadata\Ecma335\MetadataAggregator.cs (9)
17private readonly ImmutableArray<ImmutableArray<RowCounts>> _rowCounts; 20internal struct RowCounts : IComparable<RowCounts> 25public int CompareTo(RowCounts other) 106internal MetadataAggregator(RowCounts[][] rowCounts, int[][] heapSizes) 167private static ImmutableArray<ImmutableArray<RowCounts>> CalculateRowCounts( 194internal static RowCounts[][] GetBaseRowCounts(IReadOnlyList<int> baseRowCounts, int generations) 196var rowCounts = new RowCounts[MetadataTokens.TableCount][]; 200rowCounts[t] = new RowCounts[generations]; 208internal static void CalculateDeltaRowCountsForGeneration(RowCounts[][] rowCounts, int generation, ref EnCMapTableReader encMapTable)