1 instantiation of RowCounts
System.Reflection.Metadata (1)
System\Reflection\Metadata\Ecma335\MetadataAggregator.cs (1)
301generation = sizes.BinarySearch(new RowCounts { AggregateInserts = rowId });
9 references to RowCounts
System.Reflection.Metadata (9)
System\Reflection\Metadata\Ecma335\MetadataAggregator.cs (9)
16private readonly ImmutableArray<ImmutableArray<RowCounts>> _rowCounts; 19internal struct RowCounts : IComparable<RowCounts> 24public int CompareTo(RowCounts other) 105internal MetadataAggregator(RowCounts[][] rowCounts, int[][] heapSizes) 166private static ImmutableArray<ImmutableArray<RowCounts>> CalculateRowCounts( 193internal static RowCounts[][] GetBaseRowCounts(IReadOnlyList<int> baseRowCounts, int generations) 195var rowCounts = new RowCounts[MetadataTokens.TableCount][]; 199rowCounts[t] = new RowCounts[generations]; 207internal static void CalculateDeltaRowCountsForGeneration(RowCounts[][] rowCounts, int generation, ref EnCMapTableReader encMapTable)