2 implementations of ContentSize
ILCompiler.ReadyToRun (2)
parent\parent\Common\Compiler\ObjectWriter\Wasm\WasmByteArrayDataSegment.cs (1)
37public int ContentSize => checked(_contents.Length + _paddingBytesCount);
parent\parent\Common\Compiler\ObjectWriter\Wasm\WebcilPayloadDataSegment.cs (1)
57public int ContentSize => checked(RawContentSize + _paddingBytesCount);
3 references to ContentSize
ILCompiler.ReadyToRun (3)
parent\parent\Common\Compiler\ObjectWriter\Wasm\WasmDataSection.cs (3)
118int previousSegmentEnd = fileOffset + previousSegment.HeaderSize + previousSegment.ContentSize; 123fileOffset = fileOffset + previousSegment.HeaderSize + previousSegment.ContentSize; 140memoryOffset += activeSegment.ContentSize;