5 references to WriteSLEB128
ILCompiler.Compiler (5)
Compiler\ObjectWriter\Dwarf\DwarfFde.cs (1)
92cfiCodeOffset += DwarfHelper.WriteSLEB128(cfiCode.AsSpan(cfiCodeOffset), absOffset);
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\Relocation.cs (1)
716DwarfHelper.WriteSLEB128(new Span<byte>((byte*)location, WASM_PADDED_RELOC_SIZE_32), value);
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\Dwarf\DwarfHelper.cs (2)
82writer.Advance(WriteSLEB128(buffer, value)); 98int actualSize = WriteSLEB128(bytes, value);
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\WasmInstructions.cs (1)
445pos += DwarfHelper.WriteSLEB128(buffer.Slice(pos), ConstValue);