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