18 references to RVA
AssemblyStripper (18)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Binary\ImageInitializer.cs (2)
122 it.ImportAddressTable = new RVA (0x2000); 130 hnt.RVA = new RVA (0x402000);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Binary\ImageWriter.cs (6)
125 sect.PointerToRawData = new RVA (fileOffset); 126 sect.VirtualAddress = new RVA (sectOffset); 176 RVA importTable = new RVA (img.TextSection.VirtualAddress + m_mdWriter.ImportTablePosition); 180 img.ImportTable.ImportLookupTable = new RVA ((uint) importTable + 0x28); 183 new RVA ((uint) img.ImportTable.ImportLookupTable + 0x14); 184 img.ImportTable.Name = new RVA ((uint) img.ImportLookupTable.HintNameRVA + 0xe);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Binary\PEOptionalHeader.cs (2)
188 IAT = new DataDirectory (new RVA (0x2000), 8); 190 CLIHeader = new DataDirectory (new RVA (0x2008), 0x48);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Binary\RVA.cs (4)
33 public static readonly RVA Zero = new RVA (0); 97 return new RVA (rva.m_rva + x); 102 return new RVA (rva.m_rva - x); 107 return val == 0 ? Zero : new RVA (val);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Metadata\MetadataRowReader.cs (2)
215 row.RVA = new RVA (m_binaryReader.ReadUInt32 ()); 269 row.RVA = new RVA (m_binaryReader.ReadUInt32 ());
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Metadata\MetadataWriter.cs (2)
75 RVA m_cursor = new RVA (0x2050); 169 m_cursor += new RVA ((uint) length);