2 overrides of EmitByte
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRun\SignatureBuilder.cs (2)
589public override void EmitByte(byte data) 634public override void EmitByte(byte data)
16 references to EmitByte
ILCompiler.ReadyToRun (16)
Compiler\DependencyAnalysis\ReadyToRun\SignatureBuilder.cs (16)
27EmitByte(b); 35EmitByte((byte)data); 41EmitByte((byte)((data >> 8) | 0x80)); 42EmitByte((byte)(data & 0xFF)); 48EmitByte((byte)((data >> 24) | 0xC0)); 49EmitByte((byte)((data >> 16) & 0xff)); 50EmitByte((byte)((data >> 8) & 0xff)); 51EmitByte((byte)(data & 0xff)); 146EmitByte((byte)udata); 154EmitByte((byte)((udata >> 8) | 0x80)); 155EmitByte((byte)(udata & 0xff)); 163EmitByte((byte)((udata >> 24) | 0xC0)); 164EmitByte((byte)((udata >> 16) & 0xff)); 165EmitByte((byte)((udata >> 8) & 0xff)); 166EmitByte((byte)(udata & 0xff)); 180EmitByte((byte)elementType);