13 references to LocalConstant
System.Reflection.Metadata (13)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
187case TableIndex.LocalConstant: SetTableCapacity(_localConstantTable, rowCount); break; 267case TableIndex.LocalConstant : return _localConstantTable.Count; 340rowCounts[(int)TableIndex.LocalConstant] = _localConstantTable.Count; 1848if (metadataSizes.IsPresent(TableIndex.LocalConstant))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
100TableIndex.LocalConstant => reader.LocalConstantTable.RowSize, 181TableIndex.LocalConstant => reader.LocalConstantTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (3)
205LocalConstantReferenceIsSmall = IsReferenceSmall(0, TableIndex.LocalConstant); 234TableIndex.LocalConstant, 322size += GetTableSize(TableIndex.LocalConstant, stringReferenceSize + blobReferenceSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
68LocalConstant = 1UL << TableIndex.LocalConstant, 238internal const uint LocalConstant = (uint)TableIndex.LocalConstant;
System\Reflection\Metadata\MetadataReader.cs (2)
761this.LocalScopeTable = new LocalScopeTableReader(rowCounts[(int)TableIndex.LocalScope], IsDeclaredSorted(TableMask.LocalScope), methodRefSizeCombined, GetReferenceSize(rowCounts, TableIndex.ImportScope), GetReferenceSize(rowCounts, TableIndex.LocalVariable), GetReferenceSize(rowCounts, TableIndex.LocalConstant), metadataTablesMemoryBlock, totalRequiredSize); 767this.LocalConstantTable = new LocalConstantTableReader(rowCounts[(int)TableIndex.LocalConstant], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);